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