25 lines
705 B
XML
25 lines
705 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<Configurations>Debug</Configurations>
|
|
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="nunit" Version="3.12.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
|
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PkmnLibSharp\PkmnLibSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|