mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
47 lines
2.4 KiB
XML
47 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Label="Nuget">
|
|
<Title>osu!</Title>
|
|
<PackageId>ppy.osu.Game</PackageId>
|
|
<Version>0.0.0</Version>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<IsPackable>true</IsPackable>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="Icon">
|
|
<None Include="..\assets\lazer-nuget.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>icon.png</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
|
<PackageReference Include="DiffPlex" Version="1.7.0" />
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.34" />
|
|
<PackageReference Include="Humanizer" Version="2.11.10" />
|
|
<PackageReference Include="MessagePack" Version="2.2.85" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.7" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="5.0.7" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="5.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.NETCore.Targets" Version="3.1.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="ppy.LocalisationAnalyser" Version="2021.716.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Realm" Version="10.3.0" />
|
|
<PackageReference Include="ppy.osu.Framework" Version="2021.714.0" />
|
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2021.706.0" />
|
|
<PackageReference Include="Sentry" Version="3.6.0" />
|
|
<PackageReference Include="SharpCompress" Version="0.28.3" />
|
|
<PackageReference Include="NUnit" Version="3.13.2" />
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
|
</ItemGroup>
|
|
</Project>
|