2023-05-31 19:16:16 +03:00
<Project Sdk= "Microsoft.NET.Sdk" >
2017-12-01 18:50:28 +09:00
<PropertyGroup Label= "Project" >
2022-12-16 17:16:13 +09:00
<TargetFramework > net6.0</TargetFramework>
2017-12-01 18:50:28 +09:00
<OutputType > Library</OutputType>
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
2023-05-17 14:49:47 +09:00
<LangVersion > 10</LangVersion>
2017-12-01 18:50:28 +09:00
</PropertyGroup>
2019-09-04 15:56:18 +09: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 15:56:18 +09: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 18:50:28 +09:00
<ItemGroup Label= "Package References" >
2023-02-11 13:52:24 +09:00
<PackageReference Include= "AutoMapper" Version= "12.0.1" />
2022-03-09 19:09:50 +09:00
<PackageReference Include= "DiffPlex" Version= "1.7.1" />
2023-09-16 14:31:33 +09:00
<PackageReference Include= "HtmlAgilityPack" Version= "1.11.53" />
2022-02-15 13:22:14 +09:00
<PackageReference Include= "Humanizer" Version= "2.14.1" />
2023-09-16 14:31:33 +09:00
<PackageReference Include= "MessagePack" Version= "2.5.124" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Client" Version= "7.0.11" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version= "7.0.11" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version= "7.0.11" />
<PackageReference Include= "Microsoft.Data.Sqlite.Core" Version= "7.0.11" />
2023-02-11 13:52:24 +09:00
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "7.0.0" />
2022-05-30 17:42:27 +09:00
<PackageReference Include= "Microsoft.Toolkit.HighPerformance" Version= "7.1.2" />
2023-05-21 20:38:27 +02:00
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.3" />
2023-07-12 16:30:26 +09:00
<PackageReference Include= "ppy.LocalisationAnalyser" Version= "2023.712.0" >
2021-05-22 02:32:55 +09:00
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-09-17 01:27:43 +09:00
<PackageReference Include= "Realm" Version= "11.5.0" />
2023-09-22 01:26:38 +09:00
<PackageReference Include= "ppy.osu.Framework" Version= "2023.922.0" />
2023-10-03 17:11:52 +09:00
<PackageReference Include= "ppy.osu.Game.Resources" Version= "2023.1003.0" />
2023-09-16 14:31:33 +09:00
<PackageReference Include= "Sentry" Version= "3.39.1" />
<PackageReference Include= "SharpCompress" Version= "0.33.0" />
2022-05-11 19:51:22 +09:00
<PackageReference Include= "NUnit" Version= "3.13.3" />
2023-09-16 14:31:33 +09:00
<PackageReference Include= "SQLitePCLRaw.bundle_e_sqlite3" Version= "2.1.6" />
2020-11-20 10:47:57 +03:00
<PackageReference Include= "System.ComponentModel.Annotations" Version= "5.0.0" />
2022-08-17 16:42:34 +09:00
<PackageReference Include= "TagLibSharp" Version= "2.3.0" />
2022-12-27 14:55:51 +03: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 18:50:28 +09:00
</ItemGroup>
2018-11-30 14:30:50 +09:00
</Project>