Files
MPF/MPF.Library/MPF.Library.csproj

49 lines
2.2 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-04-18 11:03:21 -07:00
<TargetFrameworks>net48;net6.0</TargetFrameworks>
<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>
<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>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
2020-09-11 21:31:46 -07:00
<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>
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>
</ItemGroup>
<ItemGroup>
2020-11-03 21:49:59 -08:00
<Content Include="$(PkgBurnOutSharp)\content\**" PackagePath="contentFiles\any\any;content" CopyToOutputDirectory="Always" PackageCopyToOutput="true" />
</ItemGroup>
</Project>