mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 13:57:29 +08:00
96d07e20ed
Tests have started to output too much log content, causing viewing CI failures to be painfully impossible. Roll back for now. Fix may be related to https://github.com/nunit/nunit3-vs-adapter/issues/941, although we don't use filter.
21 lines
591 B
XML
21 lines
591 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
|
|
<PackageReference Include="nunit" Version="3.13.2" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\osu.Game.Tests\osu.Game.Tests.csproj" />
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|