1
0
codeforces-template/Codeforces.Test/Codeforces.Test.csproj

29 lines
994 B
XML
Raw Normal View History

2023-08-09 09:12:09 +03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-12-07 21:32:41 +03:00
<TargetFramework>net8.0</TargetFramework>
2023-08-09 09:12:09 +03:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Codeforces.Console\Codeforces.Console.csproj" />
</ItemGroup>
</Project>