Files
mrgameeng/tests/MrGameEng.Core.Tests/MrGameEng.Core.Tests.csproj
T
Leonid Pershin d6f19b9119
CI / build-test (push) Successful in 1m6s
Migrate test projects from xunit 2.9.3 to xunit.v3 3.2.2
Test projects become executables (OutputType=Exe) as required by v3.
Satisfy the new xUnit1051 analyzer by passing TestContext cancellation
tokens in the generator compilation test.
2026-06-11 05:50:09 +03:00

20 lines
503 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="xunit.v3" />
<PackageReference Include="xunit.runner.visualstudio" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\MrGameEng.Core\MrGameEng.Core.csproj" />
</ItemGroup>
</Project>