diff --git a/src/FluentAssemblyScanner/AppDomainExtensions.cs b/src/FluentAssemblyScanner/AppDomainExtensions.cs index 2ff1386..63a41bc 100644 --- a/src/FluentAssemblyScanner/AppDomainExtensions.cs +++ b/src/FluentAssemblyScanner/AppDomainExtensions.cs @@ -4,7 +4,7 @@ namespace FluentAssemblyScanner { - public static class AppDomainExtensions + internal static class AppDomainExtensions { [NotNull] public static string GetActualDomainPath([NotNull] this AppDomain @this) diff --git a/src/FluentAssemblyScanner/Properties/AssemblyInfo.cs b/src/FluentAssemblyScanner/Properties/AssemblyInfo.cs index 2a983d6..fc49aa2 100644 --- a/src/FluentAssemblyScanner/Properties/AssemblyInfo.cs +++ b/src/FluentAssemblyScanner/Properties/AssemblyInfo.cs @@ -1,4 +1,5 @@ using System.Reflection; +using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following @@ -19,3 +20,4 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("0f21fef4-cffc-47f9-add5-d9bea0ec3cbb")] +[assembly:InternalsVisibleTo("FluentAssemblyScanner.Tests")] diff --git a/src/FluentAssemblyScanner/project.json b/src/FluentAssemblyScanner/project.json index 178f57c..d37ea75 100644 --- a/src/FluentAssemblyScanner/project.json +++ b/src/FluentAssemblyScanner/project.json @@ -1,5 +1,5 @@ { - "version" : "1.0.6-*", + "version" : "1.0.7-*", "dependencies" : {}, "frameworks" : { diff --git a/test/FluentAssemblyScanner.Tests/project.json b/test/FluentAssemblyScanner.Tests/project.json index 4cbec58..add759c 100644 --- a/test/FluentAssemblyScanner.Tests/project.json +++ b/test/FluentAssemblyScanner.Tests/project.json @@ -5,7 +5,7 @@ "dependencies": { "dotnet-test-xunit": "2.2.0-preview2-build1029", - "FluentAssemblyScanner": "1.0.6-*", + "FluentAssemblyScanner": "1.0.7-*", "FluentAssemblyScanner.Tests.AdditionalAssembly": "1.0.0-*", "FluentAssertions": "4.19.0", "xunit": "2.2.0-rc2-build3523"