2018-05-28 17:43:53 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<PropertyGroup Label="Project">
|
2024-02-01 23:50:26 +08:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2018-03-26 14:12:13 +08:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-08-16 18:53:31 +08:00
|
|
|
|
<Description>A free-to-win rhythm game. Rhythm is just a *click* away!</Description>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<AssemblyName>osu!</AssemblyName>
|
2021-07-04 11:39:50 +08:00
|
|
|
|
<Title>osu!</Title>
|
2021-07-19 10:38:28 +08:00
|
|
|
|
<Product>osu!(lazer)</Product>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<ApplicationIcon>lazer.ico</ApplicationIcon>
|
2018-05-02 16:33:48 +08:00
|
|
|
|
<Version>0.0.0</Version>
|
|
|
|
|
<FileVersion>0.0.0</FileVersion>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
</PropertyGroup>
|
2018-03-26 18:42:33 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<StartupObject>osu.Desktop.Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<ItemGroup Label="Project References">
|
2018-11-06 13:49:09 +08:00
|
|
|
|
<ProjectReference Include="..\osu.Game.Tournament\osu.Game.Tournament.csproj" />
|
2018-03-28 14:19:56 +08:00
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<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">
|
2024-01-21 09:57:23 +08:00
|
|
|
|
<PackageReference Include="System.IO.Packaging" Version="8.0.0" />
|
2023-09-16 13:31:33 +08:00
|
|
|
|
<PackageReference Include="DiscordRichPresence" Version="1.2.1.24" />
|
2024-09-01 05:14:53 +08:00
|
|
|
|
<PackageReference Include="Velopack" Version="0.0.598-g933b2ab" />
|
2017-12-01 17:50:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
|
<EmbeddedResource Include="lazer.ico" />
|
|
|
|
|
</ItemGroup>
|
2024-02-08 05:42:42 +08:00
|
|
|
|
<ItemGroup Label="Windows Icons">
|
2024-02-05 21:03:16 +08:00
|
|
|
|
<Content Include="*.ico" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
|
|
|
</ItemGroup>
|
2018-08-01 01:58:39 +08:00
|
|
|
|
</Project>
|