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>
|
2023-04-24 21:31:39 -04:00
|
|
|
|
<RuntimeIdentifiers>win7-x64;win8-x64;win81-x64;win10-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
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>
|
2023-03-12 15:48:24 -04:00
|
|
|
|
<Copyright>Copyright (c)2019-2023</Copyright>
|
2020-11-10 17:43:21 -08:00
|
|
|
|
<RepositoryUrl>https://github.com/SabreTools/MPF</RepositoryUrl>
|
2023-08-15 13:07:33 -04:00
|
|
|
|
<Version>2.6.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
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-10-08 11:06:22 -07:00
|
|
|
|
<ItemGroup>
|
2023-07-14 12:07:44 -04:00
|
|
|
|
<PackageReference Include="BurnOutSharp" PrivateAssets="build; analyzers" ExcludeAssets="contentFiles" Version="2.8.0" GeneratePathProperty="true">
|
2020-11-03 21:49:59 -08:00
|
|
|
|
<IncludeAssets>runtime; compile; build; native; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-07-14 12:07:44 -04:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2023-09-05 00:08:09 -04:00
|
|
|
|
<PackageReference Include="SabreTools.RedumpLib" Version="1.1.1" />
|
2021-04-02 21:21:50 -07:00
|
|
|
|
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
|
2022-10-17 21:04:58 -07:00
|
|
|
|
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
|
2022-03-27 20:57:42 -07: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-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>
|