mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 01:02:55 +08:00
a16c0641b2
This reverts commitf3faad74d5
, reversing changes made to712e7bc7bf
. 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.
40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Label="Nuget">
|
|
<Title>osu!</Title>
|
|
<PackageId>ppy.osu.Game</PackageId>
|
|
<Version>0.0.0</Version>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<IsPackable>true</IsPackable>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="Icon">
|
|
<None Include="..\assets\lazer-nuget.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>icon.png</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="DiffPlex" Version="1.6.3" />
|
|
<PackageReference Include="Humanizer" Version="2.8.26" />
|
|
<PackageReference Include="MessagePack" Version="2.2.85" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="5.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.NETCore.Targets" Version="3.1.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="ppy.osu.Framework" Version="2021.317.0" />
|
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2021.211.1" />
|
|
<PackageReference Include="Sentry" Version="3.0.7" />
|
|
<PackageReference Include="SharpCompress" Version="0.28.1" />
|
|
<PackageReference Include="NUnit" Version="3.13.1" />
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
|
</ItemGroup>
|
|
</Project>
|