2023-05-31 16:16:16 +00:00
<Project Sdk= "Microsoft.NET.Sdk" >
2017-12-01 09:50:28 +00:00
<PropertyGroup Label= "Project" >
2024-02-01 15:50:26 +00:00
<TargetFramework > net8.0</TargetFramework>
2017-12-01 09:50:28 +00:00
<OutputType > Library</OutputType>
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
</PropertyGroup>
2019-09-04 06:56:18 +00:00
<PropertyGroup Label= "Nuget" >
<Title > osu!</Title>
<PackageId > ppy.osu.Game</PackageId>
2019-11-24 12:39:11 +00:00
<Version > 0.0.0</Version>
2019-10-30 15:37:58 +00:00
<PackageIcon > icon.png</PackageIcon>
2019-11-26 08:40:48 +00:00
<IsPackable > true</IsPackable>
2019-09-04 06:56:18 +00:00
</PropertyGroup>
2019-10-30 15:37:58 +00:00
<ItemGroup Label= "Icon" >
<None Include= "..\assets\lazer-nuget.png" >
<Pack > True</Pack>
<PackagePath > icon.png</PackagePath>
</None>
</ItemGroup>
2017-12-01 09:50:28 +00:00
<ItemGroup Label= "Package References" >
2024-10-18 06:23:59 +00:00
<PackageReference Include= "AutoMapper" Version= "13.0.1" />
2024-03-06 04:17:00 +00:00
<PackageReference Include= "DiffPlex" Version= "1.7.2" />
2024-10-18 06:23:59 +00:00
<PackageReference Include= "HtmlAgilityPack" Version= "1.11.67" />
2022-02-15 04:22:14 +00:00
<PackageReference Include= "Humanizer" Version= "2.14.1" />
2024-10-18 06:23:59 +00:00
<PackageReference Include= "MessagePack" Version= "2.5.187" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Client" Version= "8.0.10" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version= "8.0.10" />
<PackageReference Include= "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version= "8.0.10" />
<PackageReference Include= "Microsoft.Data.Sqlite.Core" Version= "8.0.10" />
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "8.0.0" />
2022-05-30 08:42:27 +00:00
<PackageReference Include= "Microsoft.Toolkit.HighPerformance" Version= "7.1.2" />
2023-05-21 18:38:27 +00:00
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.3" />
2024-08-02 05:48:49 +00:00
<PackageReference Include= "ppy.LocalisationAnalyser" Version= "2024.802.0" >
2021-05-21 17:32:55 +00:00
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-09-16 16:27:43 +00:00
<PackageReference Include= "Realm" Version= "11.5.0" />
2024-10-09 03:36:51 +00:00
<PackageReference Include= "ppy.osu.Framework" Version= "2024.1009.0" />
2024-10-07 16:51:56 +00:00
<PackageReference Include= "ppy.osu.Game.Resources" Version= "2024.1003.0" />
2024-10-18 06:23:59 +00:00
<PackageReference Include= "Sentry" Version= "4.12.1" />
2023-10-26 08:42:28 +00:00
<!-- Held back due to 0.34.0 failing AOT compilation on ZstdSharp.dll dependency. -->
2024-10-18 06:23:59 +00:00
<PackageReference Include= "SharpCompress" Version= "0.38.0" />
2024-01-21 01:57:23 +00:00
<PackageReference Include= "NUnit" Version= "3.14.0" />
2024-10-18 06:23:59 +00:00
<PackageReference Include= "SQLitePCLRaw.bundle_e_sqlite3" Version= "2.1.10" />
2020-11-20 07:47:57 +00:00
<PackageReference Include= "System.ComponentModel.Annotations" Version= "5.0.0" />
2022-08-17 07:42:34 +00:00
<PackageReference Include= "TagLibSharp" Version= "2.3.0" />
2022-12-27 11:55:51 +00: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 09:50:28 +00:00
</ItemGroup>
2018-11-30 05:30:50 +00:00
</Project>