├── .gitignore ├── .nuget └── nuget.exe ├── BuildNuget.bat ├── ICSharpCode.SharpZLib.Portable.sln ├── ICSharpCode.SharpZLib.cmbx ├── ICSharpCode.SharpZLib.sln ├── ICSharpCode.SharpZLib2005.sln ├── ICSharpCode.SharpZLib2008.sln ├── ICSharpCode.SharpZipLib.key ├── README.md ├── SharpZipAll.sln ├── SharpZipAll2005.sln ├── SharpZipAll2008.sln ├── SharpZipLib.Portable.nuspec ├── SharpZipLib.shfb ├── SharpZlib.build ├── doc ├── COPYING.txt ├── Changes.txt ├── ReadMe.rtf └── specification │ ├── appnote.txt │ ├── rfc-deflate.txt │ ├── rfc-gzip.txt │ ├── rfc-zlib.txt │ ├── rfc1950.txt │ ├── rfc1951.txt │ └── rfc1952.txt ├── installGAC.bat ├── mkDistribution.bat ├── samples ├── DIME │ ├── DimeDataSetService │ │ ├── AssemblyInfo.cs │ │ ├── DimeDataSetService.csproj │ │ ├── DimeDataSetService.csproj.webinfo │ │ ├── DimeDataSetService.sln │ │ ├── DimeDataSetService.suo │ │ ├── DimeDataSetService.vsdisco │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Global.asax.resx │ │ ├── Service1.asmx │ │ ├── Service1.asmx.cs │ │ ├── Service1.asmx.resx │ │ └── Web.config │ ├── DimeDataSetServiceConsumer │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── DimeDataSetServiceConsumer.csproj │ │ ├── DimeDataSetServiceConsumer.csproj.user │ │ ├── DimeDataSetServiceConsumer.sln │ │ ├── DimeDataSetServiceConsumer.suo │ │ ├── Main.cs │ │ ├── Main.resx │ │ └── Web References │ │ │ └── localhost │ │ │ ├── Reference.cs │ │ │ ├── Reference.map │ │ │ ├── Service1.disco │ │ │ └── Service1.wsdl │ └── readme.txt ├── HttpCompressionModule │ ├── HttpCompressionModule.sln │ ├── example │ │ ├── Default.aspx │ │ ├── DefaultController.cs │ │ ├── Example.csproj │ │ ├── ExistingImage.ashx │ │ ├── Image.ashx │ │ ├── blowery.gif │ │ └── web.config │ ├── httpcompressionmodule.pdf │ ├── license.txt │ ├── readme.txt │ └── src │ │ ├── AssemblyInfo.cs │ │ ├── ConfigSectionHandler.cs │ │ ├── DeflateFilter.cs │ │ ├── GZipFilter.cs │ │ ├── HttpCompressingFilter.cs │ │ ├── HttpCompressionModule.cs │ │ ├── HttpCompressionModule.csproj │ │ ├── HttpCompressionModuleSettings.cs │ │ ├── HttpOutputFilter.cs │ │ └── doc │ │ └── HttpCompressionModule.xml ├── cs │ ├── CreateZipFile │ │ ├── AssemblyInfo.cs │ │ ├── CreateZipFile.cmbx │ │ ├── CreateZipFile.csproj │ │ ├── CreateZipFile.prjx │ │ ├── CreateZipFile.sln │ │ ├── Main.cs │ │ └── readme.txt │ ├── FastZip │ │ ├── AssemblyInfo.cs │ │ ├── FastZip.cmbx │ │ ├── FastZip.csproj │ │ ├── FastZip.prjx │ │ ├── FastZip.sln │ │ └── Main.cs │ ├── minibzip2 │ │ ├── AssemblyInfo.cs │ │ ├── Main.cs │ │ ├── minibzip2.cmbx │ │ ├── minibzip2.csproj │ │ ├── minibzip2.prjx │ │ ├── minibzip2.sln │ │ └── readme.txt │ ├── minigzip │ │ ├── AssemblyInfo.cs │ │ ├── Main.cs │ │ ├── minigzip.cmbx │ │ ├── minigzip.csproj │ │ ├── minigzip.prjx │ │ ├── minigzip.sln │ │ └── readme.txt │ ├── samples.build │ ├── sz │ │ ├── AssemblyInfo.cs │ │ ├── sz.cmbx │ │ ├── sz.cs │ │ ├── sz.csproj │ │ ├── sz.prjx │ │ └── sz.sln │ ├── tar │ │ ├── AssemblyInfo.cs │ │ ├── Main.cs │ │ ├── Tar.csproj │ │ ├── tar.cmbx │ │ └── tar.prjx │ ├── unzipfile │ │ ├── UnZipFile.cs │ │ ├── readme.txt │ │ ├── unzipfile.cmbx │ │ └── unzipfile.prjx │ ├── viewzipfile │ │ ├── ViewZipFile.cs │ │ ├── readme.txt │ │ ├── viewzipfile.cmbx │ │ └── viewzipfile.prjx │ ├── zf │ │ ├── AssemblyInfo.cs │ │ ├── zf.cmbx │ │ ├── zf.cs │ │ ├── zf.csproj │ │ ├── zf.prjx │ │ └── zf.sln │ └── zipfiletest │ │ ├── ZipFileTest.cs │ │ ├── readme.txt │ │ ├── zipfiletest.cmbx │ │ ├── zipfiletest.csproj │ │ ├── zipfiletest.prjx │ │ └── zipfiletest.sln └── vb │ ├── CreateZipFile │ ├── AssemblyInfo.vb │ ├── CreateZipFile.MainForm.resources │ ├── CreateZipFile.cmbx │ ├── CreateZipFile.prjx │ ├── CreateZipFile.sln │ ├── CreateZipFile.vbproj │ ├── MainForm.resources │ ├── MainForm.resx │ └── MainForm.vb │ ├── minibzip2 │ ├── AssemblyInfo.vb │ ├── Main.resx │ ├── Main.vb │ ├── MainForm.resources │ ├── minibzip2.cmbx │ ├── minibzip2.prjx │ ├── minibzip2.sln │ ├── minibzip2.suo │ ├── minibzip2.vbproj │ └── minibzip2.vbproj.user │ ├── samples.build │ ├── viewzipfile │ ├── AssemblyInfo.vb │ ├── Main.resx │ ├── Main.vb │ ├── MainForm.resources │ ├── viewzipfile.cmbx │ ├── viewzipfile.prjx │ ├── viewzipfile.sln │ ├── viewzipfile.suo │ ├── viewzipfile.vbproj │ └── viewzipfile.vbproj.user │ └── zipfiletest │ ├── AssemblyInfo.vb │ ├── Main.resx │ ├── Main.vb │ ├── zipfiletest.cmbx │ ├── zipfiletest.prjx │ ├── zipfiletest.sln │ ├── zipfiletest.suo │ ├── zipfiletest.vbproj │ └── zipfiletest.vbproj.user ├── sharpziplib.pc ├── src ├── AssemblyInfo.cs ├── BZip2 │ ├── BZip2.cs │ ├── BZip2Constants.cs │ ├── BZip2Exception.cs │ ├── BZip2InputStream.cs │ └── BZip2OutputStream.cs ├── Checksums │ ├── Adler32.cs │ ├── CRC32.cs │ ├── IChecksum.cs │ └── StrangeCRC.cs ├── Core │ ├── FileSystemScanner.cs │ ├── INameTransform.cs │ ├── IScanFilter.cs │ ├── NameFilter.cs │ ├── PathFilter.cs │ ├── StreamUtils.cs │ └── WindowsPathUtils.cs ├── Encryption │ ├── PkzipClassic.cs │ ├── ZipAESStream.cs │ └── ZipAESTransform.cs ├── GZip │ ├── GZIPConstants.cs │ ├── GZipException.cs │ ├── GzipInputStream.cs │ └── GzipOutputStream.cs ├── ICSharpCode.SharpZLib.csproj ├── ICSharpCode.SharpZLib.prjx ├── ICSharpCode.SharpZLib2013.csproj ├── ICSharpCode.SharpZib.Portable.csproj ├── Lzw │ ├── LzwConstants.cs │ ├── LzwException.cs │ └── LzwInputStream.cs ├── Main.cs ├── PortableProxies.cs ├── SharpZipBaseException.cs ├── Tar │ ├── InvalidHeaderException.cs │ ├── TarArchive.cs │ ├── TarBuffer.cs │ ├── TarEntry.cs │ ├── TarException.cs │ ├── TarHeader.cs │ ├── TarInputStream.cs │ └── TarOutputStream.cs ├── VirtualFileSystem │ ├── DefaultFileSystem.cs │ ├── IDirectoryInfo.cs │ ├── IFileInfo.cs │ ├── IVfsElement.cs │ ├── IVirtualFileSystem.cs │ ├── VfsExtensions.cs │ ├── VfsStream.cs │ ├── VirtualFileSystem.cs │ └── [Enums].cs └── Zip │ ├── Compression │ ├── Deflater.cs │ ├── DeflaterConstants.cs │ ├── DeflaterEngine.cs │ ├── DeflaterHuffman.cs │ ├── DeflaterPending.cs │ ├── Inflater.cs │ ├── InflaterDynHeader.cs │ ├── InflaterHuffmanTree.cs │ ├── PendingBuffer.cs │ └── Streams │ │ ├── DeflaterOutputStream.cs │ │ ├── InflaterInputStream.cs │ │ ├── OutputWindow.cs │ │ └── StreamManipulator.cs │ ├── FastZip.cs │ ├── IEntryFactory.cs │ ├── WindowsNameTransform.cs │ ├── ZipConstants.cs │ ├── ZipEntry.cs │ ├── ZipEntryFactory.cs │ ├── ZipException.cs │ ├── ZipExtraData.cs │ ├── ZipFile.cs │ ├── ZipHelperStream.cs │ ├── ZipInputStream.cs │ ├── ZipNameTransform.cs │ └── ZipOutputStream.cs ├── tests ├── AssemblyInfo.cs ├── BZip2 │ └── Bzip2Tests.cs ├── Base │ └── InflaterDeflaterTests.cs ├── Core │ └── Core.cs ├── GZip │ └── GZipTests.cs ├── Lzw │ └── LzwTests.cs ├── SharpZipLibTests.cmbx ├── SharpZipLibTests.csproj ├── SharpZipLibTests.prjx ├── SharpZipLibTests.sln ├── SharpZipLibTests2013.Portable.csproj ├── SharpZipLibTests2013.csproj ├── Tar │ └── TarTests.cs ├── TestSupport │ ├── RingBuffer.cs │ ├── Streams.cs │ ├── Utils.cs │ └── ZipTesting.cs ├── Zip │ └── ZipTests.cs ├── packages.config └── tests.build └── uninstallGAC.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/.nuget/nuget.exe -------------------------------------------------------------------------------- /BuildNuget.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/BuildNuget.bat -------------------------------------------------------------------------------- /ICSharpCode.SharpZLib.Portable.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/ICSharpCode.SharpZLib.Portable.sln -------------------------------------------------------------------------------- /ICSharpCode.SharpZLib.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/ICSharpCode.SharpZLib.cmbx -------------------------------------------------------------------------------- /ICSharpCode.SharpZLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/ICSharpCode.SharpZLib.sln -------------------------------------------------------------------------------- /ICSharpCode.SharpZLib2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/ICSharpCode.SharpZLib2005.sln -------------------------------------------------------------------------------- /ICSharpCode.SharpZLib2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/ICSharpCode.SharpZLib2008.sln -------------------------------------------------------------------------------- /ICSharpCode.SharpZipLib.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/ICSharpCode.SharpZipLib.key -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/README.md -------------------------------------------------------------------------------- /SharpZipAll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/SharpZipAll.sln -------------------------------------------------------------------------------- /SharpZipAll2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/SharpZipAll2005.sln -------------------------------------------------------------------------------- /SharpZipAll2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/SharpZipAll2008.sln -------------------------------------------------------------------------------- /SharpZipLib.Portable.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/SharpZipLib.Portable.nuspec -------------------------------------------------------------------------------- /SharpZipLib.shfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/SharpZipLib.shfb -------------------------------------------------------------------------------- /SharpZlib.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/SharpZlib.build -------------------------------------------------------------------------------- /doc/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/COPYING.txt -------------------------------------------------------------------------------- /doc/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/Changes.txt -------------------------------------------------------------------------------- /doc/ReadMe.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/ReadMe.rtf -------------------------------------------------------------------------------- /doc/specification/appnote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/specification/appnote.txt -------------------------------------------------------------------------------- /doc/specification/rfc-deflate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/specification/rfc-deflate.txt -------------------------------------------------------------------------------- /doc/specification/rfc-gzip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/specification/rfc-gzip.txt -------------------------------------------------------------------------------- /doc/specification/rfc-zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/specification/rfc-zlib.txt -------------------------------------------------------------------------------- /doc/specification/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/specification/rfc1950.txt -------------------------------------------------------------------------------- /doc/specification/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/specification/rfc1951.txt -------------------------------------------------------------------------------- /doc/specification/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/doc/specification/rfc1952.txt -------------------------------------------------------------------------------- /installGAC.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/installGAC.bat -------------------------------------------------------------------------------- /mkDistribution.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/mkDistribution.bat -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/DimeDataSetService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/DimeDataSetService.csproj -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/DimeDataSetService.csproj.webinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/DimeDataSetService.csproj.webinfo -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/DimeDataSetService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/DimeDataSetService.sln -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/DimeDataSetService.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/DimeDataSetService.suo -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/DimeDataSetService.vsdisco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/DimeDataSetService.vsdisco -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/Global.asax -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/Global.asax.cs -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/Global.asax.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/Global.asax.resx -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/Service1.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/Service1.asmx -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/Service1.asmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/Service1.asmx.cs -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/Service1.asmx.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/Service1.asmx.resx -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetService/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetService/Web.config -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/App.ico -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.csproj -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.csproj.user -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.sln -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/DimeDataSetServiceConsumer.suo -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/Main.cs -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/Main.resx -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Reference.cs -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Reference.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Reference.map -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Service1.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Service1.disco -------------------------------------------------------------------------------- /samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Service1.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/DimeDataSetServiceConsumer/Web References/localhost/Service1.wsdl -------------------------------------------------------------------------------- /samples/DIME/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/DIME/readme.txt -------------------------------------------------------------------------------- /samples/HttpCompressionModule/HttpCompressionModule.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/HttpCompressionModule.sln -------------------------------------------------------------------------------- /samples/HttpCompressionModule/example/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/example/Default.aspx -------------------------------------------------------------------------------- /samples/HttpCompressionModule/example/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/example/DefaultController.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/example/Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/example/Example.csproj -------------------------------------------------------------------------------- /samples/HttpCompressionModule/example/ExistingImage.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/example/ExistingImage.ashx -------------------------------------------------------------------------------- /samples/HttpCompressionModule/example/Image.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/example/Image.ashx -------------------------------------------------------------------------------- /samples/HttpCompressionModule/example/blowery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/example/blowery.gif -------------------------------------------------------------------------------- /samples/HttpCompressionModule/example/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/example/web.config -------------------------------------------------------------------------------- /samples/HttpCompressionModule/httpcompressionmodule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/httpcompressionmodule.pdf -------------------------------------------------------------------------------- /samples/HttpCompressionModule/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/license.txt -------------------------------------------------------------------------------- /samples/HttpCompressionModule/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/readme.txt -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/ConfigSectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/ConfigSectionHandler.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/DeflateFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/DeflateFilter.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/GZipFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/GZipFilter.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/HttpCompressingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/HttpCompressingFilter.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/HttpCompressionModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/HttpCompressionModule.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/HttpCompressionModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/HttpCompressionModule.csproj -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/HttpCompressionModuleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/HttpCompressionModuleSettings.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/HttpOutputFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/HttpOutputFilter.cs -------------------------------------------------------------------------------- /samples/HttpCompressionModule/src/doc/HttpCompressionModule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/HttpCompressionModule/src/doc/HttpCompressionModule.xml -------------------------------------------------------------------------------- /samples/cs/CreateZipFile/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/CreateZipFile/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/cs/CreateZipFile/CreateZipFile.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/CreateZipFile/CreateZipFile.cmbx -------------------------------------------------------------------------------- /samples/cs/CreateZipFile/CreateZipFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/CreateZipFile/CreateZipFile.csproj -------------------------------------------------------------------------------- /samples/cs/CreateZipFile/CreateZipFile.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/CreateZipFile/CreateZipFile.prjx -------------------------------------------------------------------------------- /samples/cs/CreateZipFile/CreateZipFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/CreateZipFile/CreateZipFile.sln -------------------------------------------------------------------------------- /samples/cs/CreateZipFile/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/CreateZipFile/Main.cs -------------------------------------------------------------------------------- /samples/cs/CreateZipFile/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/CreateZipFile/readme.txt -------------------------------------------------------------------------------- /samples/cs/FastZip/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/FastZip/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/cs/FastZip/FastZip.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/FastZip/FastZip.cmbx -------------------------------------------------------------------------------- /samples/cs/FastZip/FastZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/FastZip/FastZip.csproj -------------------------------------------------------------------------------- /samples/cs/FastZip/FastZip.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/FastZip/FastZip.prjx -------------------------------------------------------------------------------- /samples/cs/FastZip/FastZip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/FastZip/FastZip.sln -------------------------------------------------------------------------------- /samples/cs/FastZip/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/FastZip/Main.cs -------------------------------------------------------------------------------- /samples/cs/minibzip2/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minibzip2/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/cs/minibzip2/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minibzip2/Main.cs -------------------------------------------------------------------------------- /samples/cs/minibzip2/minibzip2.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minibzip2/minibzip2.cmbx -------------------------------------------------------------------------------- /samples/cs/minibzip2/minibzip2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minibzip2/minibzip2.csproj -------------------------------------------------------------------------------- /samples/cs/minibzip2/minibzip2.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minibzip2/minibzip2.prjx -------------------------------------------------------------------------------- /samples/cs/minibzip2/minibzip2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minibzip2/minibzip2.sln -------------------------------------------------------------------------------- /samples/cs/minibzip2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minibzip2/readme.txt -------------------------------------------------------------------------------- /samples/cs/minigzip/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minigzip/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/cs/minigzip/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minigzip/Main.cs -------------------------------------------------------------------------------- /samples/cs/minigzip/minigzip.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minigzip/minigzip.cmbx -------------------------------------------------------------------------------- /samples/cs/minigzip/minigzip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minigzip/minigzip.csproj -------------------------------------------------------------------------------- /samples/cs/minigzip/minigzip.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minigzip/minigzip.prjx -------------------------------------------------------------------------------- /samples/cs/minigzip/minigzip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minigzip/minigzip.sln -------------------------------------------------------------------------------- /samples/cs/minigzip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/minigzip/readme.txt -------------------------------------------------------------------------------- /samples/cs/samples.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/samples.build -------------------------------------------------------------------------------- /samples/cs/sz/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/sz/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/cs/sz/sz.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/sz/sz.cmbx -------------------------------------------------------------------------------- /samples/cs/sz/sz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/sz/sz.cs -------------------------------------------------------------------------------- /samples/cs/sz/sz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/sz/sz.csproj -------------------------------------------------------------------------------- /samples/cs/sz/sz.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/sz/sz.prjx -------------------------------------------------------------------------------- /samples/cs/sz/sz.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/sz/sz.sln -------------------------------------------------------------------------------- /samples/cs/tar/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/tar/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/cs/tar/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/tar/Main.cs -------------------------------------------------------------------------------- /samples/cs/tar/Tar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/tar/Tar.csproj -------------------------------------------------------------------------------- /samples/cs/tar/tar.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/tar/tar.cmbx -------------------------------------------------------------------------------- /samples/cs/tar/tar.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/tar/tar.prjx -------------------------------------------------------------------------------- /samples/cs/unzipfile/UnZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/unzipfile/UnZipFile.cs -------------------------------------------------------------------------------- /samples/cs/unzipfile/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/unzipfile/readme.txt -------------------------------------------------------------------------------- /samples/cs/unzipfile/unzipfile.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/unzipfile/unzipfile.cmbx -------------------------------------------------------------------------------- /samples/cs/unzipfile/unzipfile.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/unzipfile/unzipfile.prjx -------------------------------------------------------------------------------- /samples/cs/viewzipfile/ViewZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/viewzipfile/ViewZipFile.cs -------------------------------------------------------------------------------- /samples/cs/viewzipfile/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/viewzipfile/readme.txt -------------------------------------------------------------------------------- /samples/cs/viewzipfile/viewzipfile.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/viewzipfile/viewzipfile.cmbx -------------------------------------------------------------------------------- /samples/cs/viewzipfile/viewzipfile.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/viewzipfile/viewzipfile.prjx -------------------------------------------------------------------------------- /samples/cs/zf/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zf/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/cs/zf/zf.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zf/zf.cmbx -------------------------------------------------------------------------------- /samples/cs/zf/zf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zf/zf.cs -------------------------------------------------------------------------------- /samples/cs/zf/zf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zf/zf.csproj -------------------------------------------------------------------------------- /samples/cs/zf/zf.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zf/zf.prjx -------------------------------------------------------------------------------- /samples/cs/zf/zf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zf/zf.sln -------------------------------------------------------------------------------- /samples/cs/zipfiletest/ZipFileTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zipfiletest/ZipFileTest.cs -------------------------------------------------------------------------------- /samples/cs/zipfiletest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zipfiletest/readme.txt -------------------------------------------------------------------------------- /samples/cs/zipfiletest/zipfiletest.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zipfiletest/zipfiletest.cmbx -------------------------------------------------------------------------------- /samples/cs/zipfiletest/zipfiletest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zipfiletest/zipfiletest.csproj -------------------------------------------------------------------------------- /samples/cs/zipfiletest/zipfiletest.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zipfiletest/zipfiletest.prjx -------------------------------------------------------------------------------- /samples/cs/zipfiletest/zipfiletest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/cs/zipfiletest/zipfiletest.sln -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/AssemblyInfo.vb -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/CreateZipFile.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/CreateZipFile.MainForm.resources -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/CreateZipFile.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/CreateZipFile.cmbx -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/CreateZipFile.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/CreateZipFile.prjx -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/CreateZipFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/CreateZipFile.sln -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/CreateZipFile.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/CreateZipFile.vbproj -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/MainForm.resources -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/MainForm.resx -------------------------------------------------------------------------------- /samples/vb/CreateZipFile/MainForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/CreateZipFile/MainForm.vb -------------------------------------------------------------------------------- /samples/vb/minibzip2/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/AssemblyInfo.vb -------------------------------------------------------------------------------- /samples/vb/minibzip2/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/Main.resx -------------------------------------------------------------------------------- /samples/vb/minibzip2/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/Main.vb -------------------------------------------------------------------------------- /samples/vb/minibzip2/MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/MainForm.resources -------------------------------------------------------------------------------- /samples/vb/minibzip2/minibzip2.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/minibzip2.cmbx -------------------------------------------------------------------------------- /samples/vb/minibzip2/minibzip2.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/minibzip2.prjx -------------------------------------------------------------------------------- /samples/vb/minibzip2/minibzip2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/minibzip2.sln -------------------------------------------------------------------------------- /samples/vb/minibzip2/minibzip2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/minibzip2.suo -------------------------------------------------------------------------------- /samples/vb/minibzip2/minibzip2.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/minibzip2.vbproj -------------------------------------------------------------------------------- /samples/vb/minibzip2/minibzip2.vbproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/minibzip2/minibzip2.vbproj.user -------------------------------------------------------------------------------- /samples/vb/samples.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/samples.build -------------------------------------------------------------------------------- /samples/vb/viewzipfile/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/AssemblyInfo.vb -------------------------------------------------------------------------------- /samples/vb/viewzipfile/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/Main.resx -------------------------------------------------------------------------------- /samples/vb/viewzipfile/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/Main.vb -------------------------------------------------------------------------------- /samples/vb/viewzipfile/MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/MainForm.resources -------------------------------------------------------------------------------- /samples/vb/viewzipfile/viewzipfile.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/viewzipfile.cmbx -------------------------------------------------------------------------------- /samples/vb/viewzipfile/viewzipfile.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/viewzipfile.prjx -------------------------------------------------------------------------------- /samples/vb/viewzipfile/viewzipfile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/viewzipfile.sln -------------------------------------------------------------------------------- /samples/vb/viewzipfile/viewzipfile.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/viewzipfile.suo -------------------------------------------------------------------------------- /samples/vb/viewzipfile/viewzipfile.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/viewzipfile.vbproj -------------------------------------------------------------------------------- /samples/vb/viewzipfile/viewzipfile.vbproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/viewzipfile/viewzipfile.vbproj.user -------------------------------------------------------------------------------- /samples/vb/zipfiletest/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/AssemblyInfo.vb -------------------------------------------------------------------------------- /samples/vb/zipfiletest/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/Main.resx -------------------------------------------------------------------------------- /samples/vb/zipfiletest/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/Main.vb -------------------------------------------------------------------------------- /samples/vb/zipfiletest/zipfiletest.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/zipfiletest.cmbx -------------------------------------------------------------------------------- /samples/vb/zipfiletest/zipfiletest.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/zipfiletest.prjx -------------------------------------------------------------------------------- /samples/vb/zipfiletest/zipfiletest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/zipfiletest.sln -------------------------------------------------------------------------------- /samples/vb/zipfiletest/zipfiletest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/zipfiletest.suo -------------------------------------------------------------------------------- /samples/vb/zipfiletest/zipfiletest.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/zipfiletest.vbproj -------------------------------------------------------------------------------- /samples/vb/zipfiletest/zipfiletest.vbproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/samples/vb/zipfiletest/zipfiletest.vbproj.user -------------------------------------------------------------------------------- /sharpziplib.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/sharpziplib.pc -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BZip2/BZip2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/BZip2/BZip2.cs -------------------------------------------------------------------------------- /src/BZip2/BZip2Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/BZip2/BZip2Constants.cs -------------------------------------------------------------------------------- /src/BZip2/BZip2Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/BZip2/BZip2Exception.cs -------------------------------------------------------------------------------- /src/BZip2/BZip2InputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/BZip2/BZip2InputStream.cs -------------------------------------------------------------------------------- /src/BZip2/BZip2OutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/BZip2/BZip2OutputStream.cs -------------------------------------------------------------------------------- /src/Checksums/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Checksums/Adler32.cs -------------------------------------------------------------------------------- /src/Checksums/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Checksums/CRC32.cs -------------------------------------------------------------------------------- /src/Checksums/IChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Checksums/IChecksum.cs -------------------------------------------------------------------------------- /src/Checksums/StrangeCRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Checksums/StrangeCRC.cs -------------------------------------------------------------------------------- /src/Core/FileSystemScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Core/FileSystemScanner.cs -------------------------------------------------------------------------------- /src/Core/INameTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Core/INameTransform.cs -------------------------------------------------------------------------------- /src/Core/IScanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Core/IScanFilter.cs -------------------------------------------------------------------------------- /src/Core/NameFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Core/NameFilter.cs -------------------------------------------------------------------------------- /src/Core/PathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Core/PathFilter.cs -------------------------------------------------------------------------------- /src/Core/StreamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Core/StreamUtils.cs -------------------------------------------------------------------------------- /src/Core/WindowsPathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Core/WindowsPathUtils.cs -------------------------------------------------------------------------------- /src/Encryption/PkzipClassic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Encryption/PkzipClassic.cs -------------------------------------------------------------------------------- /src/Encryption/ZipAESStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Encryption/ZipAESStream.cs -------------------------------------------------------------------------------- /src/Encryption/ZipAESTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Encryption/ZipAESTransform.cs -------------------------------------------------------------------------------- /src/GZip/GZIPConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/GZip/GZIPConstants.cs -------------------------------------------------------------------------------- /src/GZip/GZipException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/GZip/GZipException.cs -------------------------------------------------------------------------------- /src/GZip/GzipInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/GZip/GzipInputStream.cs -------------------------------------------------------------------------------- /src/GZip/GzipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/GZip/GzipOutputStream.cs -------------------------------------------------------------------------------- /src/ICSharpCode.SharpZLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/ICSharpCode.SharpZLib.csproj -------------------------------------------------------------------------------- /src/ICSharpCode.SharpZLib.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/ICSharpCode.SharpZLib.prjx -------------------------------------------------------------------------------- /src/ICSharpCode.SharpZLib2013.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/ICSharpCode.SharpZLib2013.csproj -------------------------------------------------------------------------------- /src/ICSharpCode.SharpZib.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/ICSharpCode.SharpZib.Portable.csproj -------------------------------------------------------------------------------- /src/Lzw/LzwConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Lzw/LzwConstants.cs -------------------------------------------------------------------------------- /src/Lzw/LzwException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Lzw/LzwException.cs -------------------------------------------------------------------------------- /src/Lzw/LzwInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Lzw/LzwInputStream.cs -------------------------------------------------------------------------------- /src/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Main.cs -------------------------------------------------------------------------------- /src/PortableProxies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/PortableProxies.cs -------------------------------------------------------------------------------- /src/SharpZipBaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/SharpZipBaseException.cs -------------------------------------------------------------------------------- /src/Tar/InvalidHeaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/InvalidHeaderException.cs -------------------------------------------------------------------------------- /src/Tar/TarArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/TarArchive.cs -------------------------------------------------------------------------------- /src/Tar/TarBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/TarBuffer.cs -------------------------------------------------------------------------------- /src/Tar/TarEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/TarEntry.cs -------------------------------------------------------------------------------- /src/Tar/TarException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/TarException.cs -------------------------------------------------------------------------------- /src/Tar/TarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/TarHeader.cs -------------------------------------------------------------------------------- /src/Tar/TarInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/TarInputStream.cs -------------------------------------------------------------------------------- /src/Tar/TarOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Tar/TarOutputStream.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/DefaultFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/DefaultFileSystem.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/IDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/IDirectoryInfo.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/IFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/IFileInfo.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/IVfsElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/IVfsElement.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/IVirtualFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/IVirtualFileSystem.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/VfsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/VfsExtensions.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/VfsStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/VfsStream.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/VirtualFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/VirtualFileSystem.cs -------------------------------------------------------------------------------- /src/VirtualFileSystem/[Enums].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/VirtualFileSystem/[Enums].cs -------------------------------------------------------------------------------- /src/Zip/Compression/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/Deflater.cs -------------------------------------------------------------------------------- /src/Zip/Compression/DeflaterConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/DeflaterConstants.cs -------------------------------------------------------------------------------- /src/Zip/Compression/DeflaterEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/DeflaterEngine.cs -------------------------------------------------------------------------------- /src/Zip/Compression/DeflaterHuffman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/DeflaterHuffman.cs -------------------------------------------------------------------------------- /src/Zip/Compression/DeflaterPending.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/DeflaterPending.cs -------------------------------------------------------------------------------- /src/Zip/Compression/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/Inflater.cs -------------------------------------------------------------------------------- /src/Zip/Compression/InflaterDynHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/InflaterDynHeader.cs -------------------------------------------------------------------------------- /src/Zip/Compression/InflaterHuffmanTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/InflaterHuffmanTree.cs -------------------------------------------------------------------------------- /src/Zip/Compression/PendingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/PendingBuffer.cs -------------------------------------------------------------------------------- /src/Zip/Compression/Streams/DeflaterOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/Streams/DeflaterOutputStream.cs -------------------------------------------------------------------------------- /src/Zip/Compression/Streams/InflaterInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/Streams/InflaterInputStream.cs -------------------------------------------------------------------------------- /src/Zip/Compression/Streams/OutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/Streams/OutputWindow.cs -------------------------------------------------------------------------------- /src/Zip/Compression/Streams/StreamManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/Compression/Streams/StreamManipulator.cs -------------------------------------------------------------------------------- /src/Zip/FastZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/FastZip.cs -------------------------------------------------------------------------------- /src/Zip/IEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/IEntryFactory.cs -------------------------------------------------------------------------------- /src/Zip/WindowsNameTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/WindowsNameTransform.cs -------------------------------------------------------------------------------- /src/Zip/ZipConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipConstants.cs -------------------------------------------------------------------------------- /src/Zip/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipEntry.cs -------------------------------------------------------------------------------- /src/Zip/ZipEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipEntryFactory.cs -------------------------------------------------------------------------------- /src/Zip/ZipException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipException.cs -------------------------------------------------------------------------------- /src/Zip/ZipExtraData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipExtraData.cs -------------------------------------------------------------------------------- /src/Zip/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipFile.cs -------------------------------------------------------------------------------- /src/Zip/ZipHelperStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipHelperStream.cs -------------------------------------------------------------------------------- /src/Zip/ZipInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipInputStream.cs -------------------------------------------------------------------------------- /src/Zip/ZipNameTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipNameTransform.cs -------------------------------------------------------------------------------- /src/Zip/ZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/src/Zip/ZipOutputStream.cs -------------------------------------------------------------------------------- /tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/BZip2/Bzip2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/BZip2/Bzip2Tests.cs -------------------------------------------------------------------------------- /tests/Base/InflaterDeflaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/Base/InflaterDeflaterTests.cs -------------------------------------------------------------------------------- /tests/Core/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/Core/Core.cs -------------------------------------------------------------------------------- /tests/GZip/GZipTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/GZip/GZipTests.cs -------------------------------------------------------------------------------- /tests/Lzw/LzwTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/Lzw/LzwTests.cs -------------------------------------------------------------------------------- /tests/SharpZipLibTests.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/SharpZipLibTests.cmbx -------------------------------------------------------------------------------- /tests/SharpZipLibTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/SharpZipLibTests.csproj -------------------------------------------------------------------------------- /tests/SharpZipLibTests.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/SharpZipLibTests.prjx -------------------------------------------------------------------------------- /tests/SharpZipLibTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/SharpZipLibTests.sln -------------------------------------------------------------------------------- /tests/SharpZipLibTests2013.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/SharpZipLibTests2013.Portable.csproj -------------------------------------------------------------------------------- /tests/SharpZipLibTests2013.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/SharpZipLibTests2013.csproj -------------------------------------------------------------------------------- /tests/Tar/TarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/Tar/TarTests.cs -------------------------------------------------------------------------------- /tests/TestSupport/RingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/TestSupport/RingBuffer.cs -------------------------------------------------------------------------------- /tests/TestSupport/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/TestSupport/Streams.cs -------------------------------------------------------------------------------- /tests/TestSupport/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/TestSupport/Utils.cs -------------------------------------------------------------------------------- /tests/TestSupport/ZipTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/TestSupport/ZipTesting.cs -------------------------------------------------------------------------------- /tests/Zip/ZipTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/Zip/ZipTests.cs -------------------------------------------------------------------------------- /tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/packages.config -------------------------------------------------------------------------------- /tests/tests.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/tests/tests.build -------------------------------------------------------------------------------- /uninstallGAC.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygrenier/SharpZipLib.Portable/HEAD/uninstallGAC.bat --------------------------------------------------------------------------------