2019-10-01 11:36:01 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<PropertyGroup>
|
2023-11-14 23:53:15 -05:00
|
|
|
|
<!-- Assembly Properties -->
|
2023-11-22 23:38:59 -05:00
|
|
|
|
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
|
2023-11-30 03:19:39 -05:00
|
|
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64</RuntimeIdentifiers>
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-11-15 16:29:47 -05:00
|
|
|
|
<CheckEolTargetFramework>false</CheckEolTargetFramework>
|
2023-11-14 23:53:15 -05:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2023-11-06 21:00:07 -05:00
|
|
|
|
<Nullable>enable</Nullable>
|
2023-11-14 23:53:15 -05:00
|
|
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2023-12-01 12:49:43 -05:00
|
|
|
|
<VersionPrefix>3.0.2</VersionPrefix>
|
2023-11-14 23:53:15 -05:00
|
|
|
|
|
|
|
|
|
|
<!-- Package Properties -->
|
2020-11-10 17:43:21 -08:00
|
|
|
|
<Title>MPF Check</Title>
|
2020-09-11 21:31:46 -07:00
|
|
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
2023-11-14 23:53:15 -05:00
|
|
|
|
<Description>Validator for various dumping programs</Description>
|
|
|
|
|
|
<Copyright>Copyright (c) Matt Nadareski 2019-2023</Copyright>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
|
|
|
|
|
|
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
|
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
2021-04-13 09:30:26 -07:00
|
|
|
|
</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-11-22 13:46:39 -05:00
|
|
|
|
<PackageReference Include="BinaryObjectScanner" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="3.0.2" GeneratePathProperty="true">
|
2020-11-03 21:49:59 -08:00
|
|
|
|
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-11-22 23:28:24 -05:00
|
|
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.3.1" />
|
2020-10-01 09:44:49 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-14 16:32:32 -05:00
|
|
|
|
<Content Include="$(PkgBinaryObjectScanner)\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>
|