mirror of
https://github.com/ppy/osu.git
synced 2025-03-06 10:47:45 +08:00
This reverts commit f3faad74d587bbbd104395f5072723203c9d54aa, reversing changes made to 712e7bc7bfaa94dd8c7248d9e800e7bc916476c0. Several issues arose after migrating to 5.0, including, but possibly not limited to, performance regressions in song select, as well as failures when attempting to save beatmaps after metadata changes in the editor.
39 lines
1.9 KiB
XML
39 lines
1.9 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!lazer</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="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>
|