mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
32e888d871
* Check nicknames/OTs against characters in font * Update translations * Do not show warning for Gen4 and earlier * Use Gen5/7 font for Gen 3-4/1-2 transfers * Minor style pref * Remove font legality checks * Add missing/update Switch fonts
58 lines
2 KiB
XML
58 lines
2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<PackageId>PKHeX</PackageId>
|
|
<AssemblyName>PKHeX</AssemblyName>
|
|
<Description>Pokémon Save Editor</Description>
|
|
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
|
|
<StartupObject>PKHeX.WinForms.Program</StartupObject>
|
|
<RootNamespace>PKHeX.WinForms</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<DebugType>portable</DebugType>
|
|
<EmbedAllSources>true</EmbedAllSources>
|
|
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<SelfContained>false</SelfContained>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PKHeX.Core\PKHeX.Core.csproj" />
|
|
<ProjectReference Include="..\PKHeX.Drawing.Misc\PKHeX.Drawing.Misc.csproj" />
|
|
<ProjectReference Include="..\PKHeX.Drawing.PokeSprite\PKHeX.Drawing.PokeSprite.csproj" />
|
|
<ProjectReference Include="..\PKHeX.Drawing\PKHeX.Drawing.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Subforms\Save Editors\SAV_Inventory.resx">
|
|
<DependentUpon>SAV_Inventory.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|