2017-12-01 18:50:28 +09:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup Label="Project">
|
2019-11-13 18:28:56 +08:00
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2017-12-01 18:50:28 +09:00
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</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">
|
2020-12-02 00:56:06 +00:00
|
|
|
|
<PackageReference Include="Dapper" Version="2.0.78" />
|
2020-06-01 09:05:46 +00:00
|
|
|
|
<PackageReference Include="DiffPlex" Version="1.6.3" />
|
2020-06-08 09:45:31 +00:00
|
|
|
|
<PackageReference Include="Humanizer" Version="2.8.26" />
|
2021-01-01 17:54:11 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="3.1.10" />
|
2021-01-26 16:25:49 +09:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="3.1.11" />
|
2021-01-01 17:53:29 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="3.1.10" />
|
2019-08-04 00:34:51 +03:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
|
2019-11-11 09:26:56 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2021-01-27 23:00:14 +09:00
|
|
|
|
<PackageReference Include="ppy.osu.Framework" Version="2021.127.0" />
|
2020-12-02 15:28:39 +09:00
|
|
|
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2020.1202.0" />
|
2020-12-02 00:56:09 +00:00
|
|
|
|
<PackageReference Include="Sentry" Version="2.1.8" />
|
2020-07-28 04:25:01 +00:00
|
|
|
|
<PackageReference Include="SharpCompress" Version="0.26.0" />
|
2019-05-17 21:40:46 +03:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.12.0" />
|
2020-11-20 10:47:57 +03:00
|
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
2017-12-01 18:50:28 +09:00
|
|
|
|
</ItemGroup>
|
2018-11-30 14:30:50 +09:00
|
|
|
|
</Project>
|