Files
MPF/MPF.Check/MPF.Check.csproj

34 lines
1.2 KiB
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-11-14 16:37:41 -05:00
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
2023-09-26 23:26:48 -04:00
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
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>
<Copyright>Copyright (c)2019-2023</Copyright>
2023-11-14 16:39:19 -05:00
<VersionPrefix>3.0.0</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
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-14 16:32:32 -05:00
<PackageReference Include="BinaryObjectScanner" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="3.0.0" GeneratePathProperty="true">
2020-11-03 21:49:59 -08:00
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-11-14 16:32:32 -05:00
<PackageReference Include="SabreTools.RedumpLib" Version="1.2.0" />
</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>
</Project>