2017-05-19 08:46:27 +01:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
<AssemblyTitle > SharpCompress - Pure C# Decompression/Compression</AssemblyTitle>
<NeutralLanguage > en-US</NeutralLanguage>
2018-03-24 07:42:20 +00:00
<VersionPrefix > 0.20.0</VersionPrefix>
<AssemblyVersion > 0.20.0</AssemblyVersion>
<FileVersion > 0.20.0</FileVersion>
2017-05-19 08:46:27 +01:00
<Authors > Adam Hathcock</Authors>
2017-12-08 12:00:29 +00:00
<TargetFrameworks Condition= "'$(LibraryFrameworks)'==''" > net45;net35;netstandard1.0;netstandard1.3;netstandard2.0</TargetFrameworks>
2017-05-19 08:46:27 +01:00
<TreatWarningsAsErrors > true</TreatWarningsAsErrors>
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
<AssemblyName > SharpCompress</AssemblyName>
<AssemblyOriginatorKeyFile > ../../SharpCompress.snk</AssemblyOriginatorKeyFile>
<SignAssembly > true</SignAssembly>
<PublicSign Condition= " '$(OS)' != 'Windows_NT' " > true</PublicSign>
<PackageId > SharpCompress</PackageId>
2017-06-01 12:36:01 +01:00
<PackageTags > rar;unrar;zip;unzip;bzip2;gzip;tar;7zip;lzip;xz</PackageTags>
2017-05-19 08:46:27 +01:00
<PackageProjectUrl > https://github.com/adamhathcock/sharpcompress</PackageProjectUrl>
<PackageLicenseUrl > https://github.com/adamhathcock/sharpcompress/blob/master/LICENSE.txt</PackageLicenseUrl>
<GenerateAssemblyTitleAttribute > false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyProductAttribute > false</GenerateAssemblyProductAttribute>
2017-06-01 12:36:01 +01:00
<Description > SharpCompress is a compression library for NET Standard 1.0 that can unrar, decompress 7zip, decompress xz, zip/unzip, tar/untar lzip/unlzip, bzip2/unbzip2 and gzip/ungzip with forward-only reading and file random access APIs. Write support for zip/tar/bzip2/gzip is implemented.</Description>
2017-05-19 08:46:27 +01:00
</PropertyGroup>
<PropertyGroup Condition= " '$(TargetFramework)' == 'netstandard1.0' " >
<DefineConstants > $(DefineConstants);NO_FILE;NO_CRYPTO;SILVERLIGHT</DefineConstants>
</PropertyGroup>
2017-12-08 13:58:38 +00:00
<PropertyGroup Condition= " '$(TargetFramework)' == 'netstandard1.3' " >
<DefineConstants > $(DefineConstants);NETCORE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition= " '$(TargetFramework)' == 'netstandard2.0' " >
<DefineConstants > $(DefineConstants);NETCORE</DefineConstants>
</PropertyGroup>
2017-06-09 08:28:35 +01:00
</Project>