mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:07:52 +08:00
d28de89e50
Nunit "by design" will not run tests for NETStandard projects (see: https://github.com/nunit/dotnet-test-nunit/issues/122#issuecomment-329531632).
23 lines
971 B
XML
23 lines
971 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\osu.Game.props" />
|
|
<Import Project="..\OpenTK.props" />
|
|
<PropertyGroup Label="Project">
|
|
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
|
|
<OutputType>Library</OutputType>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Company>ppy Pty Ltd</Company>
|
|
<Version>1.0.0.0</Version>
|
|
<Copyright>ppy Pty Ltd 2007-2017</Copyright>
|
|
<AssemblyTitle>osu.Game.Rulesets.Taiko</AssemblyTitle>
|
|
<Description>bash the drum. to the beat.</Description>
|
|
<Product>osu.Game.Rulesets.Taiko</Product>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="Project References">
|
|
<ProjectReference Include="..\osu-framework\osu.Framework\osu.Framework.csproj" />
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="NUnit" Version="3.8.1" />
|
|
</ItemGroup>
|
|
</Project> |