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

37 lines
1.3 KiB
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
2023-09-26 23:26:48 -04:00
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<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>
<Copyright>Copyright (c)2019-2023</Copyright>
2023-10-31 14:21:46 -04:00
<VersionPrefix>2.7.4</VersionPrefix>
</PropertyGroup>
2023-10-10 23:22:21 -04:00
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
<Nullable>enable</Nullable>
</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-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" />
</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>
</Project>