2023-09-29 10:07:41 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-12-30 14:36:59 +03:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-09-29 10:07:41 +03:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
2024-01-14 15:06:49 +03:00
|
|
|
<IsPublishable>false</IsPublishable>
|
2023-09-29 10:07:41 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-12-30 14:36:59 +03:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
|
|
|
<PackageReference Include="NUnit" Version="4.0.1" />
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.10.0">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2023-09-29 10:07:41 +03:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-26 15:50:41 +03:00
|
|
|
<ProjectReference Include="..\RhSolutions.MLModifiers\RhSolutions.MLModifiers.csproj" />
|
2023-09-29 10:07:41 +03:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|