25 lines
702 B
XML
25 lines
702 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
|
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="nunit" Version="3.13.2" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
|
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PkmnLibSharp\PkmnLibSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|