mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +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="11.0.1" />
|
|
<PackageReference Include="DiffPlex" Version="1.7.1" />
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.42" />
|
|
<PackageReference Include="Humanizer" Version="2.14.1" />
|
|
<PackageReference Include="MessagePack" Version="2.3.85" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="6.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="6.0.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.14" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="5.0.14" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="ppy.LocalisationAnalyser" Version="2022.417.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Realm" Version="10.10.0" />
|
|
<PackageReference Include="ppy.osu.Framework" Version="2022.415.0" />
|
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2022.417.0" />
|
|
<PackageReference Include="Sentry" Version="3.14.1" />
|
|
<PackageReference Include="SharpCompress" Version="0.30.1" />
|
|
<PackageReference Include="NUnit" Version="3.13.2" />
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
|
<PackageReference Include="TagLibSharp" Version="2.2.0" />
|
|
</ItemGroup>
|
|
</Project>
|