mirror of https://github.com/ppy/SDL3-CS.git
24 lines
734 B
XML
24 lines
734 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>SDL.Tests</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateProgramFile>false</GenerateProgramFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0"/>
|
|
<PackageReference Include="NUnit" Version="3.13.3"/>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SDL3-CS\SDL3-CS.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|