|
|
|
|
@ -0,0 +1,33 @@ |
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
|
<TargetFramework>net10.0</TargetFramework> |
|
|
|
|
<LangVersion>latest</LangVersion> |
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings> |
|
|
|
|
<Nullable>enable</Nullable> |
|
|
|
|
<IsPackable>false</IsPackable> |
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4"/> |
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" /> |
|
|
|
|
<PackageReference Include="NUnit" Version="4.4.0" /> |
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="4.11.2"> |
|
|
|
|
<PrivateAssets>all</PrivateAssets> |
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
|
|
|
</PackageReference> |
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="6.0.0-beta.3" /> |
|
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
<Using Include="NUnit.Framework"/> |
|
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
<ProjectReference Include="..\LightweightIocContainer\LightweightIocContainer.csproj" /> |
|
|
|
|
<ProjectReference Include="..\LightweightIocContainer.FactoryGenerator\LightweightIocContainer.FactoryGenerator.csproj" |
|
|
|
|
OutputItemType="Analyzer" |
|
|
|
|
ReferenceOutputAssembly="false"/> |
|
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
|
</Project> |