2019-10-01 11:36:01 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2018-10-08 11:06:22 -07: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>
|
2020-11-10 17:43:21 -08:00
|
|
|
|
<AssemblyName>MPF.Library</AssemblyName>
|
2020-09-11 21:31:46 -07:00
|
|
|
|
<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-02-05 13:45:06 -08:00
|
|
|
|
<Version>2.3</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-10-01 11:36:01 -07:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2018-10-08 11:06:22 -07:00
|
|
|
|
</PropertyGroup>
|
2020-04-13 11:55:21 -07:00
|
|
|
|
|
2021-04-13 09:30:26 -07:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)-{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>false</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-08-18 15:32:45 -07:00
|
|
|
|
<ItemGroup>
|
2021-09-29 11:48:37 -07:00
|
|
|
|
<ProjectReference Include="..\MPF.Core\MPF.Core.csproj" />
|
2021-09-29 14:56:15 -07:00
|
|
|
|
<ProjectReference Include="..\MPF.Modules\MPF.Modules.csproj" />
|
2021-08-18 15:32:45 -07:00
|
|
|
|
<ProjectReference Include="..\RedumpLib\RedumpLib.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-10-08 11:06:22 -07:00
|
|
|
|
<ItemGroup>
|
2022-08-25 10:11:28 -07:00
|
|
|
|
<PackageReference Include="BurnOutSharp" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="2.3.1" GeneratePathProperty="true">
|
2020-11-03 21:49:59 -08:00
|
|
|
|
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2021-04-09 10:31:27 -07:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2021-04-02 21:21:50 -07:00
|
|
|
|
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
|
2022-03-27 20:57:42 -07:00
|
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
|
2022-02-24 10:58:36 -08:00
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.2">
|
2021-06-03 22:19:03 -07:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
</ItemGroup>
|
2020-10-01 09:44:49 -07:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-11-03 21:49:59 -08:00
|
|
|
|
<Content Include="$(PkgBurnOutSharp)\content\**" PackagePath="contentFiles\any\any;content" CopyToOutputDirectory="Always" PackageCopyToOutput="true" />
|
2020-10-01 09:44:49 -07:00
|
|
|
|
</ItemGroup>
|
2019-10-01 11:36:01 -07:00
|
|
|
|
|
|
|
|
|
|
</Project>
|