mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
e0af5f0469
As discussed in https://github.com/ppy/osu/issues/13864, Squirrel will use the product name before the title, allowing us to use this variable to update the icon while not changing the window display title or naming elsewhere.
40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Description>A free-to-win rhythm game. Rhythm is just a *click* away!</Description>
|
|
<AssemblyName>osu!</AssemblyName>
|
|
<Title>osu!</Title>
|
|
<Product>osu!(lazer)</Product>
|
|
<ApplicationIcon>lazer.ico</ApplicationIcon>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<Version>0.0.0</Version>
|
|
<FileVersion>0.0.0</FileVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<StartupObject>osu.Desktop.Program</StartupObject>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="Project References">
|
|
<ProjectReference Include="..\osu.Game.Tournament\osu.Game.Tournament.csproj" />
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Osu\osu.Game.Rulesets.Osu.csproj" />
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Catch\osu.Game.Rulesets.Catch.csproj" />
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Mania\osu.Game.Rulesets.Mania.csproj" />
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Taiko\osu.Game.Rulesets.Taiko.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="Microsoft.NETCore.Targets" Version="5.0.0" />
|
|
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
|
|
<PackageReference Include="System.IO.Packaging" Version="5.0.0" />
|
|
<PackageReference Include="ppy.squirrel.windows" Version="1.9.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
|
|
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="Resources">
|
|
<EmbeddedResource Include="lazer.ico" />
|
|
</ItemGroup>
|
|
</Project>
|