2018-05-28 17:43:53 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<PropertyGroup Label="Project">
|
2022-02-10 14:25:54 +08:00
|
|
|
|
<TargetFramework>net6.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>
|
2019-12-08 02:51:54 +08:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
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">
|
2022-07-11 19:15:29 +08:00
|
|
|
|
<PackageReference Include="Clowd.Squirrel" Version="2.9.42" />
|
2021-04-27 10:37:08 +08:00
|
|
|
|
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
|
2023-02-11 12:52:24 +08:00
|
|
|
|
<PackageReference Include="System.IO.Packaging" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="DiscordRichPresence" Version="1.1.3.18" />
|
2017-12-01 17:50:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
|
<EmbeddedResource Include="lazer.ico" />
|
|
|
|
|
</ItemGroup>
|
2018-08-01 01:58:39 +08:00
|
|
|
|
</Project>
|