2019-10-01 11:36:01 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<PropertyGroup>
|
2022-04-18 11:03:21 -07:00
|
|
|
|
<TargetFrameworks>net48;net6.0</TargetFrameworks>
|
2021-04-26 22:32:05 -07:00
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-11-10 17:43:21 -08:00
|
|
|
|
<Title>MPF Check</Title>
|
|
|
|
|
|
<AssemblyName>MPF.Check</AssemblyName>
|
2020-09-11 21:31:46 -07:00
|
|
|
|
<Description>Validator for various dumping programs</Description>
|
|
|
|
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
2022-04-17 16:29:28 -07:00
|
|
|
|
<Copyright>Copyright (c)2019-2022</Copyright>
|
2020-11-10 17:43:21 -08:00
|
|
|
|
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
|
2022-10-26 13:08:40 -07:00
|
|
|
|
<Version>2.4</Version>
|
2021-04-13 09:30:26 -07:00
|
|
|
|
<AssemblyVersion>$(Version)</AssemblyVersion>
|
|
|
|
|
|
<FileVersion>$(Version)</FileVersion>
|
2020-09-11 21:31:46 -07:00
|
|
|
|
<IncludeSource>true</IncludeSource>
|
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
2019-02-10 14:47:53 -08:00
|
|
|
|
</PropertyGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
2021-04-13 09:30:26 -07:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)-{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>false</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2019-02-10 14:47:53 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="App.config" />
|
|
|
|
|
|
</ItemGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
2020-08-07 21:15:36 -07:00
|
|
|
|
<ItemGroup>
|
2022-10-17 13:41:21 -07:00
|
|
|
|
<PackageReference Include="BurnOutSharp" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="2.3.4" GeneratePathProperty="true">
|
2020-11-03 21:49:59 -08:00
|
|
|
|
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2022-10-17 11:00:51 -07:00
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3">
|
2021-06-03 22:39:50 -07:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
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
|
|
|
|
<ItemGroup>
|
2022-08-25 10:07:15 -07:00
|
|
|
|
<ProjectReference Include="..\MPF.Library\MPF.Library.csproj" />
|
2021-08-18 15:32:45 -07:00
|
|
|
|
<ProjectReference Include="..\RedumpLib\RedumpLib.csproj" />
|
2019-02-10 14:47:53 -08:00
|
|
|
|
</ItemGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
2019-02-10 14:47:53 -08:00
|
|
|
|
</Project>
|