mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-15 03:20:30 +00:00
24 lines
845 B
XML
24 lines
845 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
|
|
<PackageReference Include="nunit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
|
|
<!-- The following two are unused, but resolves warning MSB3277. -->
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
|
|
<PackageReference Include="System.CodeDom" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\osu.Framework.Tests\osu.Framework.Tests.csproj" />
|
|
<ProjectReference Include="..\osu.Framework\osu.Framework.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|