2021-09-29 14:56:15 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-04-18 11:03:21 -07:00
|
|
|
|
<TargetFrameworks>net48;net6.0</TargetFrameworks>
|
2021-09-29 14:56:15 -07:00
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
|
|
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
2022-04-17 16:29:28 -07:00
|
|
|
|
<Copyright>Copyright (c)2019-2022</Copyright>
|
2021-09-29 14:56:15 -07:00
|
|
|
|
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
|
2022-10-26 13:08:40 -07:00
|
|
|
|
<Version>2.4</Version>
|
2021-09-29 14:56:15 -07:00
|
|
|
|
<AssemblyVersion>$(Version)</AssemblyVersion>
|
|
|
|
|
|
<FileVersion>$(Version)</FileVersion>
|
|
|
|
|
|
<IncludeSource>true</IncludeSource>
|
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)-{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>false</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\MPF.Core\MPF.Core.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\MPF.CueSheets\MPF.CueSheets.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RedumpLib\RedumpLib.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-10-17 11:00:51 -07:00
|
|
|
|
<PackageReference Include="System.Memory" Version="4.5.5" />
|
2022-02-22 09:08:29 -08:00
|
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
|
2022-10-17 11:00:51 -07:00
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3">
|
2021-09-29 14:56:15 -07:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|