2019-10-01 18:12:08 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
2017-01-07 23:54:09 -08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2021-12-04 22:29:32 -08:00
|
|
|
|
<TargetFrameworks>net46;net6.0-windows</TargetFrameworks>
|
2019-10-01 18:12:08 -07:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<PackageId>PKHeX</PackageId>
|
|
|
|
|
<Company>Project Pokémon</Company>
|
|
|
|
|
<Authors>Kaphotics</Authors>
|
|
|
|
|
<Product>PKHeX</Product>
|
|
|
|
|
<Description>Pokémon Save Editor</Description>
|
2021-12-04 11:03:33 -08:00
|
|
|
|
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
|
2019-10-01 18:12:08 -07:00
|
|
|
|
<StartupObject>PKHeX.WinForms.Program</StartupObject>
|
|
|
|
|
<AssemblyName>PKHeX</AssemblyName>
|
2022-01-02 00:53:37 -08:00
|
|
|
|
<Version>22.01.01</Version>
|
2022-01-02 15:04:16 -08:00
|
|
|
|
<LangVersion>10</LangVersion>
|
2020-10-18 11:02:39 -07:00
|
|
|
|
<Nullable>enable</Nullable>
|
2017-01-08 08:28:28 -06:00
|
|
|
|
</PropertyGroup>
|
2019-10-01 18:12:08 -07:00
|
|
|
|
|
2019-11-18 22:19:02 -08:00
|
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('net4')) AND '$(Configuration)' == 'Release'">
|
2019-10-01 19:55:12 -07:00
|
|
|
|
<PackageReference Include="Costura.Fody" Version="4.1.0" />
|
2019-11-15 17:34:18 -08:00
|
|
|
|
<PackageReference Include="Fody" Version="6.0.5">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2019-10-01 19:55:12 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-10-01 18:12:08 -07:00
|
|
|
|
<ItemGroup>
|
2021-04-11 18:09:54 -07:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2019-10-01 18:12:08 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-04-11 18:09:54 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PKHeX.Core\PKHeX.Core.csproj" />
|
2021-11-27 15:48:08 -08:00
|
|
|
|
<ProjectReference Include="..\PKHeX.Drawing.Misc\PKHeX.Drawing.Misc.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PKHeX.Drawing.PokeSprite\PKHeX.Drawing.PokeSprite.csproj" />
|
2021-04-11 18:09:54 -07:00
|
|
|
|
<ProjectReference Include="..\PKHeX.Drawing\PKHeX.Drawing.csproj" />
|
2017-01-07 23:54:09 -08:00
|
|
|
|
</ItemGroup>
|
2019-10-01 18:12:08 -07:00
|
|
|
|
|
2017-01-07 23:54:09 -08:00
|
|
|
|
<ItemGroup>
|
2019-10-01 18:12:08 -07: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-07 23:54:09 -08:00
|
|
|
|
</ItemGroup>
|
2019-10-04 21:23:54 -07:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Subforms\Save Editors\SAV_Inventory.resx">
|
|
|
|
|
<DependentUpon>SAV_Inventory.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-05-09 12:57:26 -07:00
|
|
|
|
</Project>
|