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-03-06 09:34:51 -05:00
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
2023-03-07 16:59:14 -05:00
<Title>BinaryObjectScanner.Compression</Title>
<AssemblyName>BinaryObjectScanner.Compression</AssemblyName>
2022-12-28 14:18:50 -08:00
<Authors>Matt Nadareski</Authors>
<Product>BurnOutSharp</Product>
<Copyright>Copyright (c)2022 Matt Nadareski</Copyright>
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
2023-03-06 08:57:43 -05:00
<Version>2.7</Version>
<AssemblyVersion>2.7</AssemblyVersion>
<FileVersion>2.7</FileVersion>
2022-12-28 14:18:50 -08:00
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</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>
<PackageReference Include="SharpCompress" Version="0.32.2" />
<PackageReference Include="SharpZipLib" Version="1.4.1" />
</ItemGroup>
<ItemGroup>
2023-03-07 16:59:14 -05:00
<ProjectReference Include="..\BinaryObjectScanner.Models\BinaryObjectScanner.Models.csproj" />
2023-03-07 12:04:48 -05:00
<ProjectReference Include="..\BinaryObjectScanner.Utilities\BinaryObjectScanner.Utilities.csproj" />
2022-12-28 14:18:50 -08:00
</ItemGroup>
</Project>