Use System.IO.Compression instead of SharpCompress for gzips

This commit is contained in:
adrez99
2022-06-02 22:32:15 +02:00
parent 8af9b84745
commit 72893da4d8
5 changed files with 33 additions and 146 deletions

View File

@@ -1,16 +0,0 @@
#pragma warning disable CS1591
using System.IO;
namespace MediaBrowser.Model.IO
{
/// <summary>
/// Interface IZipClient.
/// </summary>
public interface IZipClient
{
void ExtractAllFromGz(Stream source, string targetPath, bool overwriteExistingFiles);
void ExtractFirstFileFromGz(Stream source, string targetPath, string defaultFileName);
}
}