From cef8dbd7067690f2a255a2453ab2eca7228cb2c1 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 13 Jul 2020 14:50:57 -0600 Subject: [PATCH] Allow some outside assemblies to see internals --- .../PepperDashEssentialsBase/Properties/AssemblyInfo.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Properties/AssemblyInfo.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Properties/AssemblyInfo.cs index c1b3b688..c202443c 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Properties/AssemblyInfo.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Properties/AssemblyInfo.cs @@ -1,4 +1,5 @@ using System.Reflection; +using System.Runtime.CompilerServices; using Crestron.SimplSharp.Reflection; [assembly: System.Reflection.AssemblyTitle("PepperDashEssentialsBase")] @@ -8,4 +9,5 @@ using Crestron.SimplSharp.Reflection; [assembly: System.Reflection.AssemblyVersion("0.0.0.*")] [assembly: System.Reflection.AssemblyInformationalVersion("0.0.0-buildType-buildNumber")] [assembly: Crestron.SimplSharp.Reflection.AssemblyInformationalVersion("0.0.0-buildType-buildNumber")] - +[assembly: InternalsVisibleTo("Essentials Devices Common")] +[assembly: InternalsVisibleTo("PepperDash_Essentials_DM")]