mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-15 05:36:04 +00:00
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
|
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
<OutputType>Exe</OutputType>
|
|
<Title>MPF Check</Title>
|
|
<Description>Validator for various dumping programs</Description>
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
|
<Copyright>Copyright (c)2019-2023</Copyright>
|
|
<VersionPrefix>2.7.3</VersionPrefix>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MPF.Core\MPF.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BurnOutSharp" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="2.9.0" GeneratePathProperty="true">
|
|
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="$(PkgBurnOutSharp)\content\**" PackagePath="contentFiles\any\any;content" CopyToOutputDirectory="Always" PackageCopyToOutput="true" />
|
|
</ItemGroup>
|
|
|
|
</Project> |