mirror of
https://github.com/osukey/osukey.git
synced 2025-06-03 03:47:24 +09:00
While OutputType=Library maybe doubtful, PlatformTarget=AnyCPU should be clearly the default.
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Label="Nuget">
|
|
<Title>osu!</Title>
|
|
<PackageId>ppy.osu.Game</PackageId>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="Humanizer" Version="2.7.9" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2019.1010.0" />
|
|
<PackageReference Include="ppy.osu.Framework" Version="2019.1029.0" />
|
|
<PackageReference Include="SharpCompress" Version="0.24.0" />
|
|
<PackageReference Include="NUnit" Version="3.12.0" />
|
|
<PackageReference Include="SharpRaven" Version="2.4.0" />
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="4.6.0" />
|
|
</ItemGroup>
|
|
</Project>
|