mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-22 15:04:43 +00:00
Mark for 0.31
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
<PropertyGroup>
|
||||
<AssemblyTitle>SharpCompress - Pure C# Decompression/Compression</AssemblyTitle>
|
||||
<NeutralLanguage>en-US</NeutralLanguage>
|
||||
<VersionPrefix>0.30.1</VersionPrefix>
|
||||
<AssemblyVersion>0.30.1</AssemblyVersion>
|
||||
<FileVersion>0.30.1</FileVersion>
|
||||
<VersionPrefix>0.31.0</VersionPrefix>
|
||||
<AssemblyVersion>0.31.0</AssemblyVersion>
|
||||
<FileVersion>0.31.0</FileVersion>
|
||||
<Authors>Adam Hathcock</Authors>
|
||||
<TargetFrameworks>net461;netstandard2.0;netstandard2.1;netcoreapp3.1;net5.0</TargetFrameworks>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
|
||||
@@ -61,7 +61,7 @@ namespace SharpCompress.Test.Streams
|
||||
}
|
||||
}
|
||||
|
||||
public void Compress(Stream input, Stream output, int compressionLevel)
|
||||
private void Compress(Stream input, Stream output, int compressionLevel)
|
||||
{
|
||||
using (var zlibStream = new ZlibStream(new NonDisposingStream(output), CompressionMode.Compress, (CompressionLevel)compressionLevel))
|
||||
{
|
||||
@@ -70,7 +70,7 @@ namespace SharpCompress.Test.Streams
|
||||
}
|
||||
}
|
||||
|
||||
public void Decompress(Stream input, Stream output)
|
||||
private void Decompress(Stream input, Stream output)
|
||||
{
|
||||
using (var zlibStream = new ZlibStream(new NonDisposingStream(input), CompressionMode.Decompress))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user