2017-12-01 17:50:28 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup Label="Project">
|
2019-11-13 18:28:56 +08:00
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</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">
|
2021-03-29 21:17:24 +08:00
|
|
|
|
<PackageReference Include="DiffPlex" Version="1.7.0" />
|
2020-06-08 17:45:31 +08:00
|
|
|
|
<PackageReference Include="Humanizer" Version="2.8.26" />
|
2021-02-04 14:19:57 +08:00
|
|
|
|
<PackageReference Include="MessagePack" Version="2.2.85" />
|
2021-03-29 21:17:24 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="5.0.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="5.0.4" />
|
2021-03-21 18:01:06 +08:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
|
2021-03-08 10:58:52 +08:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
|
2021-03-21 18:01:06 +08:00
|
|
|
|
<PackageReference Include="Microsoft.NETCore.Targets" Version="3.1.0" />
|
2021-03-29 21:17:24 +08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2021-03-29 21:12:49 +08:00
|
|
|
|
<PackageReference Include="ppy.osu.Framework" Version="2021.329.0" />
|
2021-02-11 16:57:50 +08:00
|
|
|
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2021.211.1" />
|
2021-03-29 21:17:24 +08:00
|
|
|
|
<PackageReference Include="Sentry" Version="3.2.0" />
|
2021-03-02 04:05:35 +08:00
|
|
|
|
<PackageReference Include="SharpCompress" Version="0.28.1" />
|
2021-02-15 20:42:35 +08:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.1" />
|
2020-11-20 15:47:57 +08:00
|
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
2017-12-01 17:50:28 +08:00
|
|
|
|
</ItemGroup>
|
2018-11-30 13:30:50 +08:00
|
|
|
|
</Project>
|