2023-06-01 00:16:16 +08:00
<Project Sdk= "Microsoft.NET.Sdk" >
2017-12-01 17:50:28 +08:00
<PropertyGroup Label= "Project" >
2022-12-16 16:16:13 +08:00
<TargetFramework > net6.0</TargetFramework>
2017-12-01 17:50:28 +08:00
<OutputType > Library</OutputType>
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
2023-05-17 13:49:47 +08:00
<LangVersion > 10</LangVersion>
2017-12-01 17:50:28 +08:00
</PropertyGroup>
2019-09-04 14:56:18 +08:00
<PropertyGroup Label= "Nuget" >
<Title > osu!</Title>
<PackageId > ppy.osu.Game</PackageId>
2019-11-24 20:39:11 +08:00
<Version > 0.0.0</Version>
2019-10-30 23:37:58 +08:00
<PackageIcon > icon.png</PackageIcon>
2019-11-26 16:40:48 +08:00
<IsPackable > true</IsPackable>
2019-09-04 14:56:18 +08:00
</PropertyGroup>
2019-10-30 23:37:58 +08:00
<ItemGroup Label= "Icon" >
<None Include= "..\assets\lazer-nuget.png" >
<Pack > True</Pack>
<PackagePath > icon.png</PackagePath>
</None>
</ItemGroup>
2017-12-01 17:50:28 +08:00
<ItemGroup Label= "Package References" >
2023-02-11 12:52:24 +08:00
<PackageReference Include= "AutoMapper" Version= "12.0.1" />
2022-03-09 18:09:50 +08:00
<PackageReference Include= "DiffPlex" Version= "1.7.1" />
2023-10-12 17:58:42 +08:00
<PackageReference Include= "HtmlAgilityPack" Version= "1.11.54" />
2022-02-15 12:22:14 +08:00
<PackageReference Include= "Humanizer" Version= "2.14.1" />
2023-10-12 17:58:42 +08:00
<PackageReference Include= "MessagePack" Version= "2.5.129" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Client" Version= "7.0.12" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version= "7.0.12" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version= "7.0.12" />
<PackageReference Include= "Microsoft.Data.Sqlite.Core" Version= "7.0.12" />
2023-02-11 12:52:24 +08:00
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "7.0.0" />
2022-05-30 16:42:27 +08:00
<PackageReference Include= "Microsoft.Toolkit.HighPerformance" Version= "7.1.2" />
2023-05-22 02:38:27 +08:00
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.3" />
2023-11-17 16:07:21 +08:00
<PackageReference Include= "ppy.LocalisationAnalyser" Version= "2023.1117.0" >
2021-05-22 01:32:55 +08:00
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-09-17 00:27:43 +08:00
<PackageReference Include= "Realm" Version= "11.5.0" />
2023-12-27 21:14:15 +08:00
<PackageReference Include= "ppy.osu.Framework" Version= "2023.1227.1" />
2023-12-25 21:56:40 +08:00
<PackageReference Include= "ppy.osu.Game.Resources" Version= "2023.1225.0" />
2023-10-12 17:58:42 +08:00
<PackageReference Include= "Sentry" Version= "3.40.0" />
2023-10-26 16:42:28 +08:00
<!-- Held back due to 0.34.0 failing AOT compilation on ZstdSharp.dll dependency. -->
<PackageReference Include= "SharpCompress" Version= "0.33.0" />
2022-05-11 18:51:22 +08:00
<PackageReference Include= "NUnit" Version= "3.13.3" />
2023-09-16 13:31:33 +08:00
<PackageReference Include= "SQLitePCLRaw.bundle_e_sqlite3" Version= "2.1.6" />
2020-11-20 15:47:57 +08:00
<PackageReference Include= "System.ComponentModel.Annotations" Version= "5.0.0" />
2022-08-17 15:42:34 +08:00
<PackageReference Include= "TagLibSharp" Version= "2.3.0" />
2022-12-27 19:55:51 +08:00
<!-- Required since Veldrid references a library that depends on Microsoft.DotNet.PlatformAbstractions (2.0.3), which doesn't play nice with Realm. -->
<PackageReference Include= "System.IO.FileSystem.Primitives" Version= "4.3.0" />
<PackageReference Include= "System.Runtime.InteropServices" Version= "4.3.0" />
<PackageReference Include= "System.Runtime.Handles" Version= "4.3.0" />
2017-12-01 17:50:28 +08:00
</ItemGroup>
2018-11-30 13:30:50 +08:00
</Project>