2019-10-01 11:36:01 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2024-07-24 11:45:12 -04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
|
|
|
|
|
|
<CheckEolTargetFramework>false</CheckEolTargetFramework>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
</PropertyGroup>
|
2023-10-11 12:14:42 -04:00
|
|
|
|
|
2024-07-24 11:45:12 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\MPF.ExecutionContexts\MPF.ExecutionContexts.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\MPF.Frontend\MPF.Frontend.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
2024-07-24 11:45:12 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.CodeCoverage" Version="17.10.0-release-24177-07" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0-release-24177-07" />
|
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.4.1" />
|
|
|
|
|
|
<PackageReference Include="xunit" Version="2.8.0" />
|
|
|
|
|
|
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
|
|
|
|
|
|
<PackageReference Include="xunit.analyzers" Version="1.13.0" />
|
|
|
|
|
|
<PackageReference Include="xunit.assert" Version="2.8.0" />
|
|
|
|
|
|
<PackageReference Include="xunit.core" Version="2.8.0" />
|
|
|
|
|
|
<PackageReference Include="xunit.extensibility.core" Version="2.8.0" />
|
|
|
|
|
|
<PackageReference Include="xunit.extensibility.execution" Version="2.8.0" />
|
|
|
|
|
|
<PackageReference Include="xunit.runner.console" Version="2.8.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
2024-07-24 11:45:12 -04:00
|
|
|
|
</Project>
|