2019-10-02 01:12:08 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2021-12-05 06:29:32 +00:00
|
|
|
|
<TargetFrameworks>net46;net6.0-windows</TargetFrameworks>
|
2019-10-02 01:12:08 +00:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2022-06-11 16:51:43 +00:00
|
|
|
|
<NeutralLanguage>en</NeutralLanguage>
|
2019-10-02 01:12:08 +00:00
|
|
|
|
<PackageId>PKHeX</PackageId>
|
|
|
|
|
<Company>Project Pokémon</Company>
|
|
|
|
|
<Authors>Kaphotics</Authors>
|
|
|
|
|
<Product>PKHeX</Product>
|
|
|
|
|
<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>
|
|
|
|
|
<AssemblyName>PKHeX</AssemblyName>
|
2022-06-02 04:27:54 +00:00
|
|
|
|
<Version>22.06.01</Version>
|
2022-01-02 23:04:16 +00:00
|
|
|
|
<LangVersion>10</LangVersion>
|
2020-10-18 18:02:39 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
2017-01-08 14:28:28 +00:00
|
|
|
|
</PropertyGroup>
|
2019-10-02 01:12:08 +00:00
|
|
|
|
|
2019-11-19 06:19:02 +00:00
|
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('net4')) AND '$(Configuration)' == 'Release'">
|
2019-10-02 02:55:12 +00:00
|
|
|
|
<PackageReference Include="Costura.Fody" Version="4.1.0" />
|
2019-11-16 01:34:18 +00:00
|
|
|
|
<PackageReference Include="Fody" Version="6.0.5">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2019-10-02 02:55:12 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-10-02 01:12:08 +00:00
|
|
|
|
<ItemGroup>
|
2021-04-12 01:09:54 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2019-10-02 01:12:08 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
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>
|