mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:47:28 +08:00
bcf8e3a9d4
While OutputType=Library maybe doubtful, PlatformTarget=AnyCPU should be clearly the default.
12 lines
418 B
XML
12 lines
418 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Description>bash the drum. to the beat.</Description>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="Project References">
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|