blob: 0178ef7f982e6a1cab764686ff3a506b206679da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GtkSharp" Version="3.24.24.95" />
<PackageReference Include="PKHeX.Core" Version="24.6.3" />
</ItemGroup>
</Project>
|