mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-21 17:24:30 -05:00
49 lines
1.6 KiB
XML
49 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
<ApplicationHighDpiMode>SystemAware</ApplicationHighDpiMode>
|
|
<ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
|
|
<Description>Animal Crossing - New Horizons Save Editor</Description>
|
|
<StartupObject>NHSE.WinForms.Program</StartupObject>
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NHSE.Core\NHSE.Core.csproj" />
|
|
<ProjectReference Include="..\NHSE.Injection\NHSE.Injection.csproj" />
|
|
<ProjectReference Include="..\NHSE.Sprites\NHSE.Sprites.csproj" />
|
|
<ProjectReference Include="..\NHSE.Villagers\NHSE.Villagers.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>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Properties\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Resources\network\" />
|
|
</ItemGroup>
|
|
|
|
</Project> |