mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
707898d4e2
Not yet hooked into the legality analysis (MethodFinder doesn't know about encounter template info).
28 lines
901 B
XML
28 lines
901 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentAssertions" Version="6.12.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
|
|
<PackageReference Include="xunit" Version="2.5.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\PKHeX.Core\PKHeX.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|