mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
d47bb1d297
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
12 lines
290 B
XML
12 lines
290 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RootNamespace>PKHeX.Drawing</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|