mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-10 17:16:47 -04:00
55 lines
2.2 KiB
XML
55 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
|
|
<PackageReference Include="xunit" Version="2.4.2" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Translator.Core\Translator.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Translator.Cli\Translator.Cli.csproj" />
|
|
<ProjectReference Include="..\..\..\Launcher\WiiCompiled.Setup.Common\WiiCompiled.Setup.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="TestAssets\RetroWfcPayload\binary\payload.RMCPD00.bin" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
The default suite is intentionally binary-free and host-compiler-free. These
|
|
files need either MKWii game data or a working host C++ toolchain, so they are
|
|
excluded until they are moved into a separate asset-backed integration project.
|
|
Every excluded file still compiles against this repository; the ones that did
|
|
not (they referenced a REL base-address constant that does not exist here) were
|
|
deleted rather than left as permanently broken source.
|
|
-->
|
|
<ItemGroup>
|
|
<Compile Remove="MtxIntegrationTests.cs" />
|
|
<Compile Remove="CodeGenInlineCoverageTests.cs" />
|
|
<Compile Remove="CodeGenTests.cs" />
|
|
<Compile Remove="DolFileTests.cs" />
|
|
<Compile Remove="BasicBlockTests.cs" />
|
|
<Compile Remove="PpcDisassemblerTests.cs" />
|
|
<Compile Remove="PpcRuntimeHelperTests.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|