mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-08 05:37:45 +00:00
49 lines
2.2 KiB
XML
49 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net48;net6.0</TargetFrameworks>
|
|
<RuntimeIdentifiers>win7-x64;win8-x64;win81-x64;win10-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
<AssemblyName>MPF.Library</AssemblyName>
|
|
<Authors>Matt Nadareski;ReignStumble;Jakz</Authors>
|
|
<Copyright>Copyright (c)2019-2023</Copyright>
|
|
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
|
|
<Version>2.6.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.Modules\MPF.Modules.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BurnOutSharp" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="2.8.0" GeneratePathProperty="true">
|
|
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.1.1" />
|
|
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
|
|
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="$(PkgBurnOutSharp)\content\**" PackagePath="contentFiles\any\any;content" CopyToOutputDirectory="Always" PackageCopyToOutput="true" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|