2018-05-28 09:43:53 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<PropertyGroup Label="Project">
|
2020-11-20 07:45:19 +00:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2018-03-26 06:12:13 +00:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-08-16 10:53:31 +00:00
|
|
|
|
<Description>A free-to-win rhythm game. Rhythm is just a *click* away!</Description>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<AssemblyName>osu!</AssemblyName>
|
2021-07-04 03:39:50 +00:00
|
|
|
|
<Title>osu!</Title>
|
2021-07-19 02:38:28 +00:00
|
|
|
|
<Product>osu!(lazer)</Product>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<ApplicationIcon>lazer.ico</ApplicationIcon>
|
2019-12-07 18:51:54 +00:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
2018-05-02 08:33:48 +00:00
|
|
|
|
<Version>0.0.0</Version>
|
|
|
|
|
<FileVersion>0.0.0</FileVersion>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
</PropertyGroup>
|
2018-03-26 10:42:33 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<StartupObject>osu.Desktop.Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<ItemGroup Label="Project References">
|
2018-11-06 05:49:09 +00:00
|
|
|
|
<ProjectReference Include="..\osu.Game.Tournament\osu.Game.Tournament.csproj" />
|
2018-03-28 06:19:56 +00:00
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
2017-12-01 09:50:28 +00: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">
|
2021-01-27 17:45:48 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NETCore.Targets" Version="5.0.0" />
|
2021-04-27 02:37:08 +00:00
|
|
|
|
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
|
2020-11-20 07:47:57 +00:00
|
|
|
|
<PackageReference Include="System.IO.Packaging" Version="5.0.0" />
|
2021-01-25 09:47:41 +00:00
|
|
|
|
<PackageReference Include="ppy.squirrel.windows" Version="1.9.0.5" />
|
2021-03-21 10:01:06 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.6" />
|
2020-11-20 07:47:57 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
|
2021-02-01 18:09:07 +00:00
|
|
|
|
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
|
2017-12-01 09:50:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
|
<EmbeddedResource Include="lazer.ico" />
|
|
|
|
|
</ItemGroup>
|
2018-07-31 17:58:39 +00:00
|
|
|
|
</Project>
|