diff options
Diffstat (limited to 'Codeforces.Test/Codeforces.Test.csproj')
-rw-r--r-- | Codeforces.Test/Codeforces.Test.csproj | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Codeforces.Test/Codeforces.Test.csproj b/Codeforces.Test/Codeforces.Test.csproj new file mode 100644 index 0000000..cfcaf99 --- /dev/null +++ b/Codeforces.Test/Codeforces.Test.csproj @@ -0,0 +1,28 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>net6.0</TargetFramework> + <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> |