28 lines
895 B
XML
28 lines
895 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarningsAsErrors>;NU1605;CA2000</WarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.2" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PkmnLibRSharp\PkmnLibRSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|