mirror of
https://github.com/JuniorDark/RustyHearts-Launcher.git
synced 2026-05-07 05:21:44 -04:00
Replaced deprecated DotNetZip with System.IO.Compression. Changed target framework to net 9.0. Removed DotNetZip package reference. Updated Microsoft.Web.WebView2 to 1.0.2903.40. Updated WindowsAPICodePack to 8.0.6.
79 lines
2.7 KiB
XML
79 lines
2.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup Label="Globals">
|
|
<WebView2LoaderPreference>Static</WebView2LoaderPreference>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<StartupObject></StartupObject>
|
|
<ApplicationIcon>Resources\rhicon.ico</ApplicationIcon>
|
|
<Company>JuniorDark</Company>
|
|
<Product>Rusty Hearts Launcher</Product>
|
|
<AssemblyName>Launcher</AssemblyName>
|
|
<Description>Rusty Hearts Launcher</Description>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<AssemblyVersion>1.3.0</AssemblyVersion>
|
|
<FileVersion>1.3.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Resources\rhicon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2903.40" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="WindowsAPICodePack" Version="8.0.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="RHLauncher.i8n\LocalizedStrings.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>LocalizedStrings.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Update="RHLauncher.i8n\LocalizedStrings.ko.resx">
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Update="RHLauncher.i8n\LocalizedStrings.resx">
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>LocalizedStrings.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<Authors>Rusty Hearts Launcher</Authors>
|
|
<PackageId>Rusty Hearts Launcher</PackageId>
|
|
<Title>Rusty Hearts Launcher</Title>
|
|
</PropertyGroup>
|
|
|
|
|
|
</Project>
|