diff --git a/LightweightIocContainer.Validation/LightweightIocContainer.Validation.csproj b/LightweightIocContainer.Validation/LightweightIocContainer.Validation.csproj index 167d168..4b1e4c2 100644 --- a/LightweightIocContainer.Validation/LightweightIocContainer.Validation.csproj +++ b/LightweightIocContainer.Validation/LightweightIocContainer.Validation.csproj @@ -1,46 +1,46 @@ - - net6.0 - SimonG - Copyright(c) 2022 SimonG. All Rights Reserved. - A lightweight IOC Container Validator. - https://github.com/SimonG96/LightweightIocContainer - default - enable - enable - LightweightIocContainer.Validation.xml - 4.0.0 - beta4 - - - - true - https://github.com/SimonG96/LightweightIocContainer - MIT - README.md - true - snupkg - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - - - - - - - - + + net6.0 + SimonG + Copyright(c) 2022 SimonG. All Rights Reserved. + A lightweight IOC Container Validator. + https://github.com/SimonG96/LightweightIocContainer + default + enable + enable + LightweightIocContainer.Validation.xml + 4.0.0 + beta5 + + + + true + https://github.com/SimonG96/LightweightIocContainer + MIT + README.md + true + snupkg + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + + diff --git a/LightweightIocContainer.Validation/Properties/AssemblyInfo.cs b/LightweightIocContainer.Validation/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/LightweightIocContainer.Validation/Properties/AssemblyInfo.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/LightweightIocContainer.sln b/LightweightIocContainer.sln index 4a49118..e4fa8ab 100644 --- a/LightweightIocContainer.sln +++ b/LightweightIocContainer.sln @@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.LightweightIocContaine EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LightweightIocContainer.Validation", "LightweightIocContainer.Validation\LightweightIocContainer.Validation.csproj", "{B3212FDE-BAC1-40AD-ABEE-DBB12A93D275}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.LightweightIocContainer.Validation", "Test.LightweightIocContainer.Validation\Test.LightweightIocContainer.Validation.csproj", "{82818CE7-6219-4A2E-A506-3AE09A00578C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,6 +29,10 @@ Global {B3212FDE-BAC1-40AD-ABEE-DBB12A93D275}.Debug|Any CPU.Build.0 = Debug|Any CPU {B3212FDE-BAC1-40AD-ABEE-DBB12A93D275}.Release|Any CPU.ActiveCfg = Release|Any CPU {B3212FDE-BAC1-40AD-ABEE-DBB12A93D275}.Release|Any CPU.Build.0 = Release|Any CPU + {82818CE7-6219-4A2E-A506-3AE09A00578C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {82818CE7-6219-4A2E-A506-3AE09A00578C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {82818CE7-6219-4A2E-A506-3AE09A00578C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {82818CE7-6219-4A2E-A506-3AE09A00578C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/LightweightIocContainer/LightweightIocContainer.csproj b/LightweightIocContainer/LightweightIocContainer.csproj index 890d820..09a27a2 100644 --- a/LightweightIocContainer/LightweightIocContainer.csproj +++ b/LightweightIocContainer/LightweightIocContainer.csproj @@ -11,7 +11,7 @@ enable LightweightIocContainer.xml 4.0.0 - beta4 + beta5 @@ -23,12 +23,6 @@ snupkg - - - <_Parameter1>LightweightIocContainer.Validation - - - all diff --git a/LightweightIocContainer/Properties/AssemblyInfo.cs b/LightweightIocContainer/Properties/AssemblyInfo.cs index 18bea16..79de6d3 100644 --- a/LightweightIocContainer/Properties/AssemblyInfo.cs +++ b/LightweightIocContainer/Properties/AssemblyInfo.cs @@ -4,4 +4,7 @@ using System.Runtime.CompilerServices; -[assembly:InternalsVisibleTo("Test.LightweightIocContainer")] \ No newline at end of file +[assembly:InternalsVisibleTo("LightweightIocContainer.Validation")] + +[assembly:InternalsVisibleTo("Test.LightweightIocContainer")] +[assembly:InternalsVisibleTo("Test.LightweightIocContainer.Validation")] diff --git a/Test.LightweightIocContainer/IocValidatorTest.cs b/Test.LightweightIocContainer.Validation/IocValidatorTest.cs similarity index 100% rename from Test.LightweightIocContainer/IocValidatorTest.cs rename to Test.LightweightIocContainer.Validation/IocValidatorTest.cs diff --git a/Test.LightweightIocContainer.Validation/Test.LightweightIocContainer.Validation.csproj b/Test.LightweightIocContainer.Validation/Test.LightweightIocContainer.Validation.csproj new file mode 100644 index 0000000..558913c --- /dev/null +++ b/Test.LightweightIocContainer.Validation/Test.LightweightIocContainer.Validation.csproj @@ -0,0 +1,26 @@ + + + + net6.0 + false + SimonG + default + enable + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + diff --git a/Test.LightweightIocContainer/Test.LightweightIocContainer.csproj b/Test.LightweightIocContainer/Test.LightweightIocContainer.csproj index c090a7d..1744352 100644 --- a/Test.LightweightIocContainer/Test.LightweightIocContainer.csproj +++ b/Test.LightweightIocContainer/Test.LightweightIocContainer.csproj @@ -21,7 +21,6 @@ - \ No newline at end of file