mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:00:05 +08:00
bcf8e3a9d4
While OutputType=Library maybe doubtful, PlatformTarget=AnyCPU should be clearly the default.
14 lines
544 B
XML
14 lines
544 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Description>tools for tournaments.</Description>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="Project References">
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.6.0" />
|
|
</ItemGroup>
|
|
</Project> |