2023-01-22 04:02:33 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-10-02 01:12:08 +00:00
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>WinExe</OutputType>
|
2023-01-22 04:02:33 +00:00
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
2019-10-02 01:12:08 +00:00
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2023-01-22 19:43:13 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-10-02 01:12:08 +00:00
|
|
|
<PackageId>PKHeX</PackageId>
|
2023-01-22 19:43:13 +00:00
|
|
|
<AssemblyName>PKHeX</AssemblyName>
|
2019-10-02 01:12:08 +00:00
|
|
|
<Description>Pokémon Save Editor</Description>
|
2021-12-04 19:03:33 +00:00
|
|
|
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
|
2019-10-02 01:12:08 +00:00
|
|
|
<StartupObject>PKHeX.WinForms.Program</StartupObject>
|
2022-10-16 00:09:54 +00:00
|
|
|
<RootNamespace>PKHeX.WinForms</RootNamespace>
|
2017-01-08 14:28:28 +00:00
|
|
|
</PropertyGroup>
|
2019-10-02 01:12:08 +00:00
|
|
|
|
2023-01-22 19:43:13 +00:00
|
|
|
<PropertyGroup>
|
2023-01-22 04:02:33 +00:00
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
<EmbedAllSources>true</EmbedAllSources>
|
2023-01-22 19:43:13 +00:00
|
|
|
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
2023-01-22 04:02:33 +00:00
|
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
2023-01-22 19:43:13 +00:00
|
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
|
|
<SelfContained>false</SelfContained>
|
2023-01-22 04:02:33 +00:00
|
|
|
</PropertyGroup>
|
2019-10-02 01:12:08 +00:00
|
|
|
|
2021-04-12 01:09:54 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\PKHeX.Core\PKHeX.Core.csproj" />
|
2021-11-27 23:48:08 +00:00
|
|
|
<ProjectReference Include="..\PKHeX.Drawing.Misc\PKHeX.Drawing.Misc.csproj" />
|
|
|
|
<ProjectReference Include="..\PKHeX.Drawing.PokeSprite\PKHeX.Drawing.PokeSprite.csproj" />
|
2021-04-12 01:09:54 +00:00
|
|
|
<ProjectReference Include="..\PKHeX.Drawing\PKHeX.Drawing.csproj" />
|
2017-01-08 07:54:09 +00:00
|
|
|
</ItemGroup>
|
2019-10-02 01:12:08 +00:00
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
<ItemGroup>
|
2019-10-02 01:12:08 +00:00
|
|
|
<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>
|
2017-01-08 07:54:09 +00:00
|
|
|
</ItemGroup>
|
2019-10-05 04:23:54 +00:00
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Update="Subforms\Save Editors\SAV_Inventory.resx">
|
|
|
|
<DependentUpon>SAV_Inventory.cs</DependentUpon>
|
|
|
|
</EmbeddedResource>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2021-05-09 19:57:26 +00:00
|
|
|
</Project>
|