2019-10-01 11:36:01 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2018-06-28 19:41:18 -07:00
|
|
|
|
<PropertyGroup>
|
2023-11-14 16:37:41 -05:00
|
|
|
|
<TargetFrameworks>net6.0-windows;net8.0-windows</TargetFrameworks>
|
2023-11-15 16:29:47 -05:00
|
|
|
|
<CheckEolTargetFramework>false</CheckEolTargetFramework>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
2023-10-11 12:14:42 -04:00
|
|
|
|
<Nullable>enable</Nullable>
|
2023-11-15 16:29:47 -05:00
|
|
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2023-10-11 12:14:42 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2018-10-08 11:06:22 -07:00
|
|
|
|
<ItemGroup>
|
2021-09-29 14:56:15 -07:00
|
|
|
|
<ProjectReference Include="..\MPF\MPF.csproj" />
|
2018-06-28 19:41:18 -07:00
|
|
|
|
</ItemGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-14 16:32:32 -05:00
|
|
|
|
<PackageReference Include="Microsoft.CodeCoverage" Version="17.9.0-preview-23531-01" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0-preview-23531-01" />
|
2023-07-14 12:07:44 -04:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2023-11-22 23:28:24 -05:00
|
|
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.3.1" />
|
2023-11-20 12:29:33 -05:00
|
|
|
|
<PackageReference Include="xunit" Version="2.6.2" />
|
2019-10-01 11:36:01 -07:00
|
|
|
|
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
|
2023-11-20 12:29:33 -05:00
|
|
|
|
<PackageReference Include="xunit.analyzers" Version="1.6.0" />
|
|
|
|
|
|
<PackageReference Include="xunit.assert" Version="2.6.2" />
|
|
|
|
|
|
<PackageReference Include="xunit.core" Version="2.6.2" />
|
|
|
|
|
|
<PackageReference Include="xunit.extensibility.core" Version="2.6.2" />
|
|
|
|
|
|
<PackageReference Include="xunit.extensibility.execution" Version="2.6.2" />
|
|
|
|
|
|
<PackageReference Include="xunit.runner.console" Version="2.6.2">
|
2022-02-24 10:58:36 -08:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-11-20 12:29:33 -05:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
|
2020-09-10 22:45:36 -07:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|