mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-15 21:35:44 +00:00
48 lines
1.8 KiB
XML
48 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net48;net6.0</TargetFrameworks>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
|
<Copyright>Copyright (c)2019-2022</Copyright>
|
|
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
|
|
<Version>2.3</Version>
|
|
<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 Condition="'$(TargetFramework)'=='net48'">
|
|
<ProjectReference Include="..\CICMMetadata\CICMMetadataEditor\CICMMetadataEditor\CICMMetadataEditor.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Memory" Version="4.5.4" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'!='net48'">
|
|
<PackageReference Include="Aaru.Devices" Version="5.3.1" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|