2021-04-08 02:41:21 +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-02-25 01:15:56 +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" />
2022-10-07 20:16:11 +08:00
<PackageReference Include= "HtmlAgilityPack" Version= "1.11.46" />
2022-02-15 12:22:14 +08:00
<PackageReference Include= "Humanizer" Version= "2.14.1" />
2023-02-11 12:52:24 +08:00
<PackageReference Include= "MessagePack" Version= "2.4.59" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Client" Version= "7.0.2" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version= "7.0.2" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version= "7.0.2" />
<PackageReference Include= "Microsoft.Data.Sqlite.Core" Version= "7.0.2" />
<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" />
2022-12-08 13:38:06 +08:00
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.2" />
2022-08-18 12:41:22 +08:00
<PackageReference Include= "ppy.LocalisationAnalyser" Version= "2022.809.0" >
2021-05-22 01:32:55 +08:00
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-02-11 12:52:24 +08:00
<PackageReference Include= "Realm" Version= "10.20.0" />
2023-05-10 14:19:43 +08:00
<PackageReference Include= "ppy.osu.Framework" Version= "2023.510.0" />
2023-05-10 14:19:46 +08:00
<PackageReference Include= "ppy.osu.Game.Resources" Version= "2023.510.0" />
2023-02-11 12:52:24 +08:00
<PackageReference Include= "Sentry" Version= "3.28.1" />
2022-08-17 15:42:34 +08:00
<PackageReference Include= "SharpCompress" Version= "0.32.2" />
2022-05-11 18:51:22 +08:00
<PackageReference Include= "NUnit" Version= "3.13.3" />
2023-02-11 12:52:24 +08:00
<PackageReference Include= "SQLitePCLRaw.bundle_e_sqlite3" Version= "2.1.4" />
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>