mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 08:27:49 +08:00
21 lines
592 B
XML
21 lines
592 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
|
|
<PackageReference Include="nunit" Version="3.14.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\osu.Game.Tests\osu.Game.Tests.csproj" />
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|