2019-10-01 11:36:01 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<PropertyGroup>
|
2023-09-25 21:49:49 -04:00
|
|
|
|
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
|
2023-09-26 23:26:48 -04:00
|
|
|
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-11-10 17:43:21 -08:00
|
|
|
|
<Title>MPF Check</Title>
|
2020-09-11 21:31:46 -07:00
|
|
|
|
<Description>Validator for various dumping programs</Description>
|
|
|
|
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
2023-03-12 15:48:24 -04:00
|
|
|
|
<Copyright>Copyright (c)2019-2023</Copyright>
|
2023-11-06 10:14:16 -05:00
|
|
|
|
<VersionPrefix>2.7.5</VersionPrefix>
|
2021-04-13 09:30:26 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2023-10-10 23:22:21 -04:00
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="App.config" />
|
|
|
|
|
|
</ItemGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
2023-09-05 00:08:09 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\MPF.Core\MPF.Core.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-08-07 21:15:36 -07:00
|
|
|
|
<ItemGroup>
|
2023-10-26 00:57:23 -04:00
|
|
|
|
<PackageReference Include="BurnOutSharp" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="2.9.0" GeneratePathProperty="true">
|
2020-11-03 21:49:59 -08:00
|
|
|
|
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-09-05 00:08:09 -04:00
|
|
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.1.1" />
|
2020-10-01 09:44:49 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-11-03 21:49:59 -08:00
|
|
|
|
<Content Include="$(PkgBurnOutSharp)\content\**" PackagePath="contentFiles\any\any;content" CopyToOutputDirectory="Always" PackageCopyToOutput="true" />
|
2020-08-07 21:15:36 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2019-02-10 14:47:53 -08:00
|
|
|
|
</Project>
|