mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
aa968f56aa
Extract color util to separate class as it's not entirely image related.
16 lines
456 B
XML
16 lines
456 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net6.0;net46</TargetFrameworks>
|
|
<LangVersion>10</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PKHeX.Core\PKHeX.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('net6'))">
|
|
<PackageReference Include="System.Drawing.Common" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|