mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-21 17:48:28 -05:00
* Update to .NET 10 * Property fields * API signature updates * Extension method blocks * Completed dark mode support Outside of my control: - vertical tab control (pkm editor) - datetimepicker controls - lgpe event flags (no idea) - some control types having white-borders when they should really be gray Box background is 50% transparency to effectively darken the image. * Custom legality report popup * Event diff dialog, version select dialog * Add quick overwrite popup for export sav * Extension methods * Dark Mode: glow currently editing sprite * Add invalid encounter hint for trade evolutions * Extension properties * Append legality hint on hover card * Slot image loading: clear the screen-reader description if a slot is empty/invalid, rather than retain the previous description. Changing boxes would easily confuse users on this.
62 lines
2.1 KiB
XML
62 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
<ApplicationHighDpiMode>SystemAware</ApplicationHighDpiMode>
|
|
<ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
|
|
<CETCompat>false</CETCompat>
|
|
</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>
|