A game framework written with osu! in mind.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 23 lines 845 B view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup Label="Project"> 4 <TargetFramework>net5.0</TargetFramework> 5 <OutputType>Exe</OutputType> 6 <IsPackable>false</IsPackable> 7 </PropertyGroup> 8 9 <ItemGroup> 10 <PackageReference Include="BenchmarkDotNet" Version="0.13.1" /> 11 <PackageReference Include="nunit" Version="3.13.2" /> 12 <PackageReference Include="NUnit3TestAdapter" Version="4.0.0" /> 13 <!-- The following two are unused, but resolves warning MSB3277. --> 14 <PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" /> 15 <PackageReference Include="System.CodeDom" Version="5.0.0" /> 16 </ItemGroup> 17 18 <ItemGroup> 19 <ProjectReference Include="..\osu.Framework.Tests\osu.Framework.Tests.csproj" /> 20 <ProjectReference Include="..\osu.Framework\osu.Framework.csproj" /> 21 </ItemGroup> 22 23</Project>