Files
BinaryObjectScanner/BinaryObjectScanner.Compression/BinaryObjectScanner.Compression.csproj

44 lines
1.5 KiB
XML
Raw Normal View History

2022-12-28 14:18:50 -08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-09-13 11:21:06 -04:00
<!-- Assembly Properties -->
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
2023-09-13 11:21:06 -04:00
<Version>2.8</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- Package Properties -->
2022-12-28 14:18:50 -08:00
<Authors>Matt Nadareski</Authors>
<Product>BurnOutSharp</Product>
2023-09-13 11:21:06 -04:00
<Copyright>Copyright (c)2022-2023 Matt Nadareski</Copyright>
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
2022-12-28 14:18:50 -08:00
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
2023-09-13 11:21:06 -04:00
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2022-12-28 14:18:50 -08:00
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
2023-03-13 16:31:34 -04:00
<!-- These are needed for dealing with submodules -->
<PropertyGroup>
<DefaultItemExcludes>
$(DefaultItemExcludes);
**\AssemblyInfo.cs;
External\stormlibsharp\lib\**;
External\stormlibsharp\TestConsole\**
</DefaultItemExcludes>
</PropertyGroup>
2022-12-28 14:18:50 -08:00
<ItemGroup>
2023-09-04 23:44:45 -04:00
<ProjectReference Include="..\BinaryObjectScanner.Utilities\BinaryObjectScanner.Utilities.csproj" />
2022-12-28 14:18:50 -08:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="SabreTools.IO" Version="1.1.1" />
2023-09-10 21:56:14 -04:00
<PackageReference Include="SabreTools.Models" Version="1.1.1" />
2023-09-04 23:44:45 -04:00
<PackageReference Include="SharpCompress" Version="0.32.2" />
<PackageReference Include="SharpZipLib" Version="1.4.1" />
2022-12-28 14:18:50 -08:00
</ItemGroup>
</Project>