├── .DS_Store ├── .gitignore ├── .tfs-ignore ├── AppNote.iz.txt ├── AppNote.txt ├── BZip2 CF ├── AssemblyInfo.cs ├── BZip2 CF DLL.csproj ├── BZip2 CF DLL.pidb └── bin │ ├── Debug │ ├── Ionic.BZip2.CF.dll │ └── Ionic.BZip2.CF.dll.mdb │ └── Release │ └── Ionic.BZip2.CF.dll ├── BZip2 SL DLL ├── BZip2 SL DLL.csproj ├── BZip2 SL DLL.pidb └── Properties │ └── AssemblyInfo.cs ├── BZip2 Tests ├── BZip2UnitTest1.cs ├── Bzip2 Tests.csproj ├── Properties │ └── AssemblyInfo.cs └── Resources │ ├── dancing-color.ps.bz2 │ ├── sample1.bz2 │ └── sample2.bz2 ├── BZip2 ├── BZip2 DLL.csproj ├── BZip2 DLL.pidb ├── BZip2Compressor.cs ├── BZip2InputStream.cs ├── BZip2OutputStream.cs ├── BitWriter.cs ├── NOTICE.txt ├── ParallelBZip2OutputStream.cs ├── Properties │ └── AssemblyInfo.cs ├── Rand.cs ├── bin │ ├── Debug │ │ ├── Ionic.BZip2.dll │ │ └── Ionic.BZip2.dll.mdb │ └── Release │ │ ├── Ionic.BZip2.dll │ │ └── Ionic.BZip2.dll.mdb └── obj │ └── Release │ ├── BZip2 DLL.csproj.FilesWrittenAbsolute.txt │ ├── Ionic.BZip2.dll │ └── Ionic.BZip2.dll.mdb ├── BuildHelp.bat ├── BuildProcessTemplates ├── DefaultTemplate.xaml └── UpgradeTemplate.xaml ├── CommonSrc ├── CRC32.cs └── Iso8859Dash1Encoding.cs ├── DotNetZip.sln ├── DotNetZip.userprefs ├── DotNetZip.vsmdi ├── DotNetZip.vssscc ├── DotNetZip1.vsmdi ├── EditCsproj.exe ├── Examples ├── ASP │ └── AspClassic-ReadZip.asp ├── ASPNET │ ├── GenerateZip-Csharp-FileStream.aspx │ ├── GenerateZip-Csharp-MemoryStream.aspx │ ├── GenerateZip-Csharp.aspx │ ├── GenerateZip-VB-FileStream.aspx │ └── GenerateZip-VB.aspx ├── C++ │ ├── CreateWithProgress.cpp │ ├── CreateZipfile.cpp │ ├── build.cmd │ └── clean.cmd ├── CompactFramework │ └── CF-Unzipper │ │ ├── CF-Unzipper.csproj │ │ ├── CF-Unzipper.csproj.vspscc │ │ ├── CF-Unzipper.pidb │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Images │ │ ├── Card.gif │ │ ├── Device.gif │ │ └── Folder.gif │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx ├── PHP │ └── CreateZip-DotNetZip.php ├── SolutionInfo.cs ├── VB │ ├── Quick-Unzip │ │ ├── AssemblyInfo.vb │ │ ├── QuickUnzip.pidb │ │ ├── QuickUnzip.vbproj │ │ ├── QuickUnzip.vbproj.vspscc │ │ └── Qunzip.vb │ ├── WinForms-DotNetZip │ │ ├── WinForms-DotNetZip-VB.sln │ │ ├── WinForms-Unzip │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resources │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Unzip-Form1.Designer.vb │ │ │ ├── Unzip-Form1.resources │ │ │ ├── Unzip-Form1.resx │ │ │ ├── Unzip-Form1.vb │ │ │ ├── WinForms-Unzip.pidb │ │ │ ├── WinForms-Unzip.vbproj │ │ │ ├── bin │ │ │ │ ├── Debug │ │ │ │ │ └── WinForms-Unzip.exe.manifest │ │ │ │ └── Release │ │ │ │ │ └── Ionic.Zip.dll │ │ │ └── obj │ │ │ │ └── Release │ │ │ │ ├── WinForms-Unzip.vbproj.FilesWrittenAbsolute.txt │ │ │ │ ├── WinForms_Unzip.Form1.resources │ │ │ │ └── WinForms_Unzip.Resources.resources │ │ └── WinForms-ZipUp │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── WinForms-ZipUp.vbproj │ │ │ ├── ZipUp-Form1.Designer.vb │ │ │ ├── ZipUp-Form1.resx │ │ │ └── ZipUp-Form1.vb │ └── WinForms-TreeViewZip │ │ ├── ReadMe.txt │ │ ├── WinForms-TreeViewZip.sln │ │ └── WinForms-TreeViewZip │ │ ├── Form1.Designer.vb │ │ ├── Form1.resources │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resources │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── WinForms-TreeViewZip.pidb │ │ ├── WinForms-TreeViewZip.vbproj │ │ ├── WinForms-TreeViewZip.vbproj.vspscc │ │ ├── bin │ │ └── Debug │ │ │ └── WinForms-TreeViewZip.exe.manifest │ │ └── obj │ │ └── Release │ │ ├── WinForms-TreeViewZip.vbproj.FilesWrittenAbsolute.txt │ │ ├── WinForms_TreeViewZip.Form1.resources │ │ └── WinForms_TreeViewZip.Resources.resources └── c# │ ├── CreateZip │ ├── CreateZip.cs │ ├── CreateZip.csproj │ ├── CreateZip.csproj.vspscc │ ├── CreateZip.pidb │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ReadZip │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReadZip.cs │ ├── ReadZip.csproj │ ├── ReadZip.csproj.vspscc │ └── ReadZip.pidb │ ├── WinForms-QuickZip │ ├── AssemblyInfo.cs │ ├── QuickZip.cs │ └── QuickZip.csproj │ ├── ZLIB │ ├── ParallelGZipOutputStream.cs │ ├── QuickCompress.cs │ ├── ZlibDeflateInflate.cs │ ├── ZlibStreamExample.cs │ ├── makefile │ ├── test_dict_deflate_inflate.cs │ ├── test_flush_sync.cs │ └── test_large_deflate_inflate.cs │ ├── ZipDir │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ZipDir.cs │ ├── ZipDir.csproj │ ├── ZipDir.csproj.vspscc │ └── ZipDir.pidb │ └── ZipTreeView │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ZipTreeView.csproj │ ├── ZipTreeView.csproj.vspscc │ └── ZipTreeView.pidb ├── Help-VS-Integrated ├── HelpIntegration.sln ├── HelpIntegration │ └── HelpIntegration.vdproj └── HelpIntegrationMergeModule │ ├── CollectionFiles │ ├── FixRegTables.exe │ ├── IntegrationWizard.xml │ ├── _AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK │ ├── _Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC │ ├── _FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK │ ├── _KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK │ ├── _NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK │ └── _TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT │ └── HelpIntegrationMergeModule.vdproj ├── Help ├── Code Examples │ ├── ASPNET-Csharp.htm │ ├── ASPNET-VB.htm │ ├── COM.htm │ ├── Code Examples.htm │ ├── Cpp.htm │ ├── Csharp.htm │ ├── Powershell.htm │ └── VB.htm ├── HelpViewer.shfbproj ├── HtmlHelp1.shfbproj ├── Introduction │ ├── About.htm │ ├── CompactFramework.htm │ ├── GettingStarted.htm │ └── Introduction.htm ├── MSHelp2.shfbproj ├── Tools and Utilities │ ├── BZip2GZip.htm │ ├── CmdLine.htm │ ├── GUI.htm │ ├── Tools and Utilities.htm │ ├── ZipTool1.png │ ├── ZipTool2.png │ └── ZipTool3.png └── Zip Tools │ ├── BZip2GZip.htm │ ├── CmdLine.htm │ ├── GUI.htm │ ├── Zip Tools.htm │ ├── ZipTool1.png │ ├── ZipTool2.png │ └── ZipTool3.png ├── License.BZip2.txt ├── License.Combined.rtf ├── License.rtf ├── License.txt ├── License.zlib.txt ├── LocalTestRun.testrunconfig ├── MakeReleaseZips.bat ├── Readme.txt ├── SetVersion.ps1 ├── Setup Runtime ├── ComRegistration.wxs ├── CustomText.wxl ├── DotNetZip Runtime.wixproj ├── PostProcessMsi.js ├── Product.wxs ├── SideBanner.bmp ├── TopBanner.bmp └── UI.wxs ├── Setup Utils ├── CA.ZipAssociation.js ├── CustomActions.wxs ├── CustomText.wxl ├── DotNetZipUtils.wixproj ├── PostProcessMsi.js ├── Product.wxs ├── SideBanner.bmp ├── TopBanner.bmp └── UI.wxs ├── SolutionInfo.cs ├── Tools ├── BZip2 │ ├── AssemblyInfo.cs │ ├── BZip2.cs │ ├── BZip2.csproj │ ├── BZip2.pidb │ ├── bin │ │ ├── Debug │ │ │ ├── BZip2.exe │ │ │ ├── BZip2.exe.mdb │ │ │ ├── Ionic.BZip2.dll │ │ │ └── Ionic.BZip2.dll.mdb │ │ └── Release │ │ │ ├── BZip2.exe │ │ │ ├── BZip2.exe.mdb │ │ │ ├── Ionic.BZip2.dll │ │ │ └── Ionic.BZip2.dll.mdb │ └── obj │ │ └── Release │ │ ├── BZip2.csproj.FilesWrittenAbsolute.txt │ │ ├── BZip2.exe │ │ └── BZip2.exe.mdb ├── ConvertZipToSfx │ ├── ConvertZipToSfx.cs │ ├── ConvertZipToSfx.csproj │ ├── ConvertZipToSfx.csproj.vspscc │ ├── ConvertZipToSfx.pidb │ └── Properties │ │ └── AssemblyInfo.cs ├── GZip │ ├── AssemblyInfo.cs │ ├── GZip.cs │ ├── GZip.csproj │ ├── GZip.pidb │ ├── bin │ │ ├── Debug │ │ │ ├── GZip.exe │ │ │ ├── GZip.exe.mdb │ │ │ ├── Ionic.Zlib.dll │ │ │ └── Ionic.Zlib.dll.mdb │ │ └── Release │ │ │ ├── Ionic.Zlib.dll │ │ │ └── Ionic.Zlib.dll.mdb │ └── obj │ │ └── Release │ │ └── GZip.csproj.FilesWrittenAbsolute.txt ├── UnZip │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UnZip.cs │ ├── UnZip.csproj │ ├── UnZip.csproj.vspscc │ └── UnZip.pidb ├── WinFormsApp │ ├── About.rtf │ ├── Extensions.cs │ ├── Form.DragDrop.cs │ ├── Form.State.cs │ ├── GetIcon.cmd │ ├── Icon2.res │ ├── ListViewEx.cs │ ├── ListViewEx.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── zippedFile.png │ ├── Win Forms App.csproj │ ├── Win Forms App.csproj.vspscc │ ├── Win Forms App.pidb │ ├── Win Forms Zip Example.csproj.vspscc │ ├── ZipForm.Designer.cs │ ├── ZipForm.cs │ └── ZipForm.resx └── ZipIt │ ├── Properties │ └── AssemblyInfo.cs │ ├── ZipIt.cs │ ├── ZipIt.csproj │ ├── ZipIt.csproj.vspscc │ └── ZipIt.pidb ├── Zip CF ├── Properties │ └── AssemblyInfo.cs ├── Zip CF DLL.csproj ├── Zip CF DLL.pidb └── Zip CF Partial DLL.csproj.vspscc ├── Zip Full DLL ├── Zip Full DLL.csproj └── Zip Full DLL.csproj.vspscc ├── Zip Reduced ├── Properties │ └── AssemblyInfo.cs ├── Zip Reduced.csproj ├── Zip Reduced.csproj.vspscc ├── Zip Reduced.pidb ├── bin │ ├── Debug │ │ ├── Ionic.Zip.Reduced.dll │ │ └── Ionic.Zip.Reduced.dll.mdb │ └── Release │ │ ├── Assembly-CSharp.dll │ │ ├── Ionic.Zip.Reduced.dll │ │ ├── Ionic.Zip.Reduced.dll.s │ │ ├── JsonFx.Json.dll │ │ ├── System.Core.dll │ │ ├── System.dll │ │ ├── UnityEditor.dll │ │ ├── UnityEngine.dll │ │ └── mscorlib.dll └── obj │ └── Release │ ├── Ionic.Zip.Reduced.dll │ └── Zip Reduced.csproj.FilesWrittenAbsolute.txt ├── Zip SL ├── Properties │ └── AssemblyInfo.cs ├── Zip SL.csproj └── Zip SL.pidb ├── Zip Tests ├── BasicTests.cs ├── Compatibility.cs ├── ErrorTests.cs ├── ExtendedTests.cs ├── IonicTestClass.cs ├── LongRunning.cs ├── NonSeekableOutputStream.cs ├── PasswordTests.cs ├── Progress.cs ├── Properties │ └── AssemblyInfo.cs ├── RandomTextGenerator.cs ├── Resources │ ├── AspNetHost.exe │ ├── AspNetHost.pdb │ ├── CreateZip.pl │ ├── GenerateZip-Cs.aspx │ ├── Ionic.CopyData.dll │ ├── Ionic.IO.JunctionPoint.dll │ ├── TestCheckZip.js │ ├── TestCheckZipPassword.js │ ├── TestStrings.txt │ ├── UnitTestProgressMonitor.exe │ ├── VbsCreateZip-DotNetZip.vbs │ ├── VbsCreateZip-ShellApp.vbs │ ├── VbsUnZip-DotNetZip.vbs │ ├── VbsUnzip-ShellApp.vbs │ └── wi8647.tif ├── Selector.cs ├── SelfExtractor.cs ├── SplitArchives.cs ├── Streams.cs ├── TestUtilities.cs ├── UnicodeTests.cs ├── UpdateTests.cs ├── WinZipAesTests.cs ├── Zip Tests.csproj ├── Zip Tests.csproj.vspscc ├── Zip64Tests.cs └── zips │ ├── Book1.xlsx │ ├── Calendar.apk │ ├── Vanishing Oatmeal Cookies.docx │ ├── appnote-iz-latest.zip │ ├── plot.dwf │ ├── wi10330-badzip.zip │ ├── wi11056.dwf │ ├── wi13668-bad-pwd-472713.zip │ ├── wi13892.zip │ └── winzip-sfx.exe ├── Zip ├── ComHelper.cs ├── EncryptionAlgorithm.cs ├── Events.cs ├── Exceptions.cs ├── ExtractExistingFileAction.cs ├── FileSelector.cs ├── Migrated rules for Zip DLL.ruleset ├── OffsetStream.cs ├── PackResources.vbs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── CommandLineSelfExtractorStub.cs │ ├── FolderBrowserDialogEx.cs │ ├── PasswordDialog.Designer.cs │ ├── PasswordDialog.cs │ ├── PasswordDialog.resources │ ├── PasswordDialog.resx │ ├── WinFormsSelfExtractorStub.Designer.cs │ ├── WinFormsSelfExtractorStub.cs │ ├── WinFormsSelfExtractorStub.resources │ ├── WinFormsSelfExtractorStub.resx │ ├── ZipContentsDialog.Designer.cs │ ├── ZipContentsDialog.cs │ ├── ZipContentsDialog.resources │ ├── ZipContentsDialog.resx │ └── zippedFile.ico ├── Shared.cs ├── WinZipAes.cs ├── Zip DLL.csproj ├── Zip DLL.pidb ├── Zip Partial DLL.csproj.vspscc ├── ZipConstants.cs ├── ZipCrypto.cs ├── ZipDirEntry.cs ├── ZipEntry.Extract.cs ├── ZipEntry.Read.cs ├── ZipEntry.Write.cs ├── ZipEntry.cs ├── ZipEntrySource.cs ├── ZipErrorAction.cs ├── ZipFile.AddUpdate.cs ├── ZipFile.Check.cs ├── ZipFile.Events.cs ├── ZipFile.Extract.cs ├── ZipFile.Read.cs ├── ZipFile.Save.cs ├── ZipFile.SaveSelfExtractor.cs ├── ZipFile.Selector.cs ├── ZipFile.cs ├── ZipFile.x-IEnumerable.cs ├── ZipInputStream.cs ├── ZipOutputStream.cs ├── ZipSegmentedStream.cs ├── bin │ └── Debug │ │ ├── Ionic.Zip.dll │ │ └── Ionic.Zip.dll.mdb └── msbuild.flymake.xml ├── ZipSrc.ps1 ├── Zlib CF ├── Properties │ └── AssemblyInfo.cs ├── Zlib CF DLL.csproj ├── Zlib CF DLL.csproj.vspscc ├── Zlib CF DLL.pidb └── bin │ ├── Debug │ ├── Ionic.Zlib.CF.dll │ └── Ionic.Zlib.CF.dll.mdb │ └── Release │ └── Ionic.Zlib.CF.dll ├── Zlib SL DLL ├── Properties │ └── AssemblyInfo.cs ├── Zlib SL DLL.csproj ├── Zlib SL DLL.pidb └── Zlib Silverlight 3 DLL.csproj.vspscc ├── Zlib Tests ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── zlibbed.file ├── Zlib Tests.csproj ├── Zlib Tests.csproj.vspscc └── ZlibUnitTest1.cs ├── Zlib ├── Deflate.cs ├── DeflateStream.cs ├── GZipStream.cs ├── InfTree.cs ├── Inflate.cs ├── LICENSE.jzlib.txt ├── License.zlib.txt ├── LocalTestRun.testrunconfig ├── ParallelDeflateOutputStream.cs ├── Tree.cs ├── Zlib DLL.csproj ├── Zlib DLL.pidb ├── Zlib.cs ├── Zlib.csproj.vspscc ├── ZlibBaseStream.cs ├── ZlibCodec.cs ├── ZlibConstants.cs ├── ZlibStream.cs ├── bin │ ├── Debug │ │ ├── Ionic.Zlib.dll │ │ └── Ionic.Zlib.dll.mdb │ └── Release │ │ ├── Ionic.Zlib.dll │ │ └── Ionic.Zlib.dll.mdb ├── obj │ └── Release │ │ ├── Ionic.Zlib.dll │ │ ├── Ionic.Zlib.dll.mdb │ │ └── Zlib DLL.csproj.FilesWrittenAbsolute.txt ├── properties │ └── AssemblyInfo.cs └── zlib-10.vsmdi └── clean.ps1 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pidb 2 | -------------------------------------------------------------------------------- /.tfs-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/.tfs-ignore -------------------------------------------------------------------------------- /AppNote.iz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/AppNote.iz.txt -------------------------------------------------------------------------------- /AppNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/AppNote.txt -------------------------------------------------------------------------------- /BZip2 CF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 CF/AssemblyInfo.cs -------------------------------------------------------------------------------- /BZip2 CF/BZip2 CF DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 CF/BZip2 CF DLL.csproj -------------------------------------------------------------------------------- /BZip2 CF/BZip2 CF DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 CF/BZip2 CF DLL.pidb -------------------------------------------------------------------------------- /BZip2 CF/bin/Debug/Ionic.BZip2.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 CF/bin/Debug/Ionic.BZip2.CF.dll -------------------------------------------------------------------------------- /BZip2 CF/bin/Debug/Ionic.BZip2.CF.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 CF/bin/Debug/Ionic.BZip2.CF.dll.mdb -------------------------------------------------------------------------------- /BZip2 CF/bin/Release/Ionic.BZip2.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 CF/bin/Release/Ionic.BZip2.CF.dll -------------------------------------------------------------------------------- /BZip2 SL DLL/BZip2 SL DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 SL DLL/BZip2 SL DLL.csproj -------------------------------------------------------------------------------- /BZip2 SL DLL/BZip2 SL DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 SL DLL/BZip2 SL DLL.pidb -------------------------------------------------------------------------------- /BZip2 SL DLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 SL DLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BZip2 Tests/BZip2UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 Tests/BZip2UnitTest1.cs -------------------------------------------------------------------------------- /BZip2 Tests/Bzip2 Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 Tests/Bzip2 Tests.csproj -------------------------------------------------------------------------------- /BZip2 Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BZip2 Tests/Resources/dancing-color.ps.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 Tests/Resources/dancing-color.ps.bz2 -------------------------------------------------------------------------------- /BZip2 Tests/Resources/sample1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 Tests/Resources/sample1.bz2 -------------------------------------------------------------------------------- /BZip2 Tests/Resources/sample2.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2 Tests/Resources/sample2.bz2 -------------------------------------------------------------------------------- /BZip2/BZip2 DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/BZip2 DLL.csproj -------------------------------------------------------------------------------- /BZip2/BZip2 DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/BZip2 DLL.pidb -------------------------------------------------------------------------------- /BZip2/BZip2Compressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/BZip2Compressor.cs -------------------------------------------------------------------------------- /BZip2/BZip2InputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/BZip2InputStream.cs -------------------------------------------------------------------------------- /BZip2/BZip2OutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/BZip2OutputStream.cs -------------------------------------------------------------------------------- /BZip2/BitWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/BitWriter.cs -------------------------------------------------------------------------------- /BZip2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/NOTICE.txt -------------------------------------------------------------------------------- /BZip2/ParallelBZip2OutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/ParallelBZip2OutputStream.cs -------------------------------------------------------------------------------- /BZip2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BZip2/Rand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/Rand.cs -------------------------------------------------------------------------------- /BZip2/bin/Debug/Ionic.BZip2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/bin/Debug/Ionic.BZip2.dll -------------------------------------------------------------------------------- /BZip2/bin/Debug/Ionic.BZip2.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/bin/Debug/Ionic.BZip2.dll.mdb -------------------------------------------------------------------------------- /BZip2/bin/Release/Ionic.BZip2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/bin/Release/Ionic.BZip2.dll -------------------------------------------------------------------------------- /BZip2/bin/Release/Ionic.BZip2.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/bin/Release/Ionic.BZip2.dll.mdb -------------------------------------------------------------------------------- /BZip2/obj/Release/BZip2 DLL.csproj.FilesWrittenAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/obj/Release/BZip2 DLL.csproj.FilesWrittenAbsolute.txt -------------------------------------------------------------------------------- /BZip2/obj/Release/Ionic.BZip2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/obj/Release/Ionic.BZip2.dll -------------------------------------------------------------------------------- /BZip2/obj/Release/Ionic.BZip2.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BZip2/obj/Release/Ionic.BZip2.dll.mdb -------------------------------------------------------------------------------- /BuildHelp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BuildHelp.bat -------------------------------------------------------------------------------- /BuildProcessTemplates/DefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BuildProcessTemplates/DefaultTemplate.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /CommonSrc/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/CommonSrc/CRC32.cs -------------------------------------------------------------------------------- /CommonSrc/Iso8859Dash1Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/CommonSrc/Iso8859Dash1Encoding.cs -------------------------------------------------------------------------------- /DotNetZip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/DotNetZip.sln -------------------------------------------------------------------------------- /DotNetZip.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/DotNetZip.userprefs -------------------------------------------------------------------------------- /DotNetZip.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/DotNetZip.vsmdi -------------------------------------------------------------------------------- /DotNetZip.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/DotNetZip.vssscc -------------------------------------------------------------------------------- /DotNetZip1.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/DotNetZip1.vsmdi -------------------------------------------------------------------------------- /EditCsproj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/EditCsproj.exe -------------------------------------------------------------------------------- /Examples/ASP/AspClassic-ReadZip.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/ASP/AspClassic-ReadZip.asp -------------------------------------------------------------------------------- /Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx -------------------------------------------------------------------------------- /Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx -------------------------------------------------------------------------------- /Examples/ASPNET/GenerateZip-Csharp.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/ASPNET/GenerateZip-Csharp.aspx -------------------------------------------------------------------------------- /Examples/ASPNET/GenerateZip-VB-FileStream.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/ASPNET/GenerateZip-VB-FileStream.aspx -------------------------------------------------------------------------------- /Examples/ASPNET/GenerateZip-VB.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/ASPNET/GenerateZip-VB.aspx -------------------------------------------------------------------------------- /Examples/C++/CreateWithProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/C++/CreateWithProgress.cpp -------------------------------------------------------------------------------- /Examples/C++/CreateZipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/C++/CreateZipfile.cpp -------------------------------------------------------------------------------- /Examples/C++/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/C++/build.cmd -------------------------------------------------------------------------------- /Examples/C++/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/C++/clean.cmd -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/CF-Unzipper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/CF-Unzipper.csproj -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/CF-Unzipper.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/CF-Unzipper.csproj.vspscc -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/CF-Unzipper.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/CF-Unzipper.pidb -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Form1.Designer.cs -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Form1.cs -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Form1.resx -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Images/Card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Images/Card.gif -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Images/Device.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Images/Device.gif -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Images/Folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Images/Folder.gif -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Program.cs -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Examples/CompactFramework/CF-Unzipper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/CompactFramework/CF-Unzipper/Properties/Resources.resx -------------------------------------------------------------------------------- /Examples/PHP/CreateZip-DotNetZip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/PHP/CreateZip-DotNetZip.php -------------------------------------------------------------------------------- /Examples/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/SolutionInfo.cs -------------------------------------------------------------------------------- /Examples/VB/Quick-Unzip/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/Quick-Unzip/AssemblyInfo.vb -------------------------------------------------------------------------------- /Examples/VB/Quick-Unzip/QuickUnzip.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/Quick-Unzip/QuickUnzip.pidb -------------------------------------------------------------------------------- /Examples/VB/Quick-Unzip/QuickUnzip.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/Quick-Unzip/QuickUnzip.vbproj -------------------------------------------------------------------------------- /Examples/VB/Quick-Unzip/QuickUnzip.vbproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/Quick-Unzip/QuickUnzip.vbproj.vspscc -------------------------------------------------------------------------------- /Examples/VB/Quick-Unzip/Qunzip.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/Quick-Unzip/Qunzip.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resources -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resources -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.pidb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/bin/Debug/WinForms-Unzip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/bin/Debug/WinForms-Unzip.exe.manifest -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/bin/Release/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/bin/Release/Ionic.Zip.dll -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/obj/Release/WinForms-Unzip.vbproj.FilesWrittenAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/obj/Release/WinForms-Unzip.vbproj.FilesWrittenAbsolute.txt -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/obj/Release/WinForms_Unzip.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/obj/Release/WinForms_Unzip.Form1.resources -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-Unzip/obj/Release/WinForms_Unzip.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/obj/Release/WinForms_Unzip.Resources.resources -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx -------------------------------------------------------------------------------- /Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/ReadMe.txt -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resources -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resources -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.pidb -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj.vspscc -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/bin/Debug/WinForms-TreeViewZip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/bin/Debug/WinForms-TreeViewZip.exe.manifest -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/obj/Release/WinForms-TreeViewZip.vbproj.FilesWrittenAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/obj/Release/WinForms-TreeViewZip.vbproj.FilesWrittenAbsolute.txt -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/obj/Release/WinForms_TreeViewZip.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/obj/Release/WinForms_TreeViewZip.Form1.resources -------------------------------------------------------------------------------- /Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/obj/Release/WinForms_TreeViewZip.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/obj/Release/WinForms_TreeViewZip.Resources.resources -------------------------------------------------------------------------------- /Examples/c#/CreateZip/CreateZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/CreateZip/CreateZip.cs -------------------------------------------------------------------------------- /Examples/c#/CreateZip/CreateZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/CreateZip/CreateZip.csproj -------------------------------------------------------------------------------- /Examples/c#/CreateZip/CreateZip.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/CreateZip/CreateZip.csproj.vspscc -------------------------------------------------------------------------------- /Examples/c#/CreateZip/CreateZip.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/CreateZip/CreateZip.pidb -------------------------------------------------------------------------------- /Examples/c#/CreateZip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/CreateZip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/c#/ReadZip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ReadZip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/c#/ReadZip/ReadZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ReadZip/ReadZip.cs -------------------------------------------------------------------------------- /Examples/c#/ReadZip/ReadZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ReadZip/ReadZip.csproj -------------------------------------------------------------------------------- /Examples/c#/ReadZip/ReadZip.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ReadZip/ReadZip.csproj.vspscc -------------------------------------------------------------------------------- /Examples/c#/ReadZip/ReadZip.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ReadZip/ReadZip.pidb -------------------------------------------------------------------------------- /Examples/c#/WinForms-QuickZip/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/WinForms-QuickZip/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/c#/WinForms-QuickZip/QuickZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/WinForms-QuickZip/QuickZip.cs -------------------------------------------------------------------------------- /Examples/c#/WinForms-QuickZip/QuickZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/WinForms-QuickZip/QuickZip.csproj -------------------------------------------------------------------------------- /Examples/c#/ZLIB/ParallelGZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/ParallelGZipOutputStream.cs -------------------------------------------------------------------------------- /Examples/c#/ZLIB/QuickCompress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/QuickCompress.cs -------------------------------------------------------------------------------- /Examples/c#/ZLIB/ZlibDeflateInflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/ZlibDeflateInflate.cs -------------------------------------------------------------------------------- /Examples/c#/ZLIB/ZlibStreamExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/ZlibStreamExample.cs -------------------------------------------------------------------------------- /Examples/c#/ZLIB/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/makefile -------------------------------------------------------------------------------- /Examples/c#/ZLIB/test_dict_deflate_inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/test_dict_deflate_inflate.cs -------------------------------------------------------------------------------- /Examples/c#/ZLIB/test_flush_sync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/test_flush_sync.cs -------------------------------------------------------------------------------- /Examples/c#/ZLIB/test_large_deflate_inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZLIB/test_large_deflate_inflate.cs -------------------------------------------------------------------------------- /Examples/c#/ZipDir/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipDir/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/c#/ZipDir/ZipDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipDir/ZipDir.cs -------------------------------------------------------------------------------- /Examples/c#/ZipDir/ZipDir.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipDir/ZipDir.csproj -------------------------------------------------------------------------------- /Examples/c#/ZipDir/ZipDir.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipDir/ZipDir.csproj.vspscc -------------------------------------------------------------------------------- /Examples/c#/ZipDir/ZipDir.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipDir/ZipDir.pidb -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Form1.Designer.cs -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Form1.cs -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Form1.resx -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Program.cs -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Properties/Resources.resx -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/Properties/Settings.settings -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/ZipTreeView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/ZipTreeView.csproj -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/ZipTreeView.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/ZipTreeView.csproj.vspscc -------------------------------------------------------------------------------- /Examples/c#/ZipTreeView/ZipTreeView.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Examples/c#/ZipTreeView/ZipTreeView.pidb -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegration.sln -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT -------------------------------------------------------------------------------- /Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj -------------------------------------------------------------------------------- /Help/Code Examples/ASPNET-Csharp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/ASPNET-Csharp.htm -------------------------------------------------------------------------------- /Help/Code Examples/ASPNET-VB.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/ASPNET-VB.htm -------------------------------------------------------------------------------- /Help/Code Examples/COM.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/COM.htm -------------------------------------------------------------------------------- /Help/Code Examples/Code Examples.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/Code Examples.htm -------------------------------------------------------------------------------- /Help/Code Examples/Cpp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/Cpp.htm -------------------------------------------------------------------------------- /Help/Code Examples/Csharp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/Csharp.htm -------------------------------------------------------------------------------- /Help/Code Examples/Powershell.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/Powershell.htm -------------------------------------------------------------------------------- /Help/Code Examples/VB.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Code Examples/VB.htm -------------------------------------------------------------------------------- /Help/HelpViewer.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/HelpViewer.shfbproj -------------------------------------------------------------------------------- /Help/HtmlHelp1.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/HtmlHelp1.shfbproj -------------------------------------------------------------------------------- /Help/Introduction/About.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Introduction/About.htm -------------------------------------------------------------------------------- /Help/Introduction/CompactFramework.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Introduction/CompactFramework.htm -------------------------------------------------------------------------------- /Help/Introduction/GettingStarted.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Introduction/GettingStarted.htm -------------------------------------------------------------------------------- /Help/Introduction/Introduction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Introduction/Introduction.htm -------------------------------------------------------------------------------- /Help/MSHelp2.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/MSHelp2.shfbproj -------------------------------------------------------------------------------- /Help/Tools and Utilities/BZip2GZip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Tools and Utilities/BZip2GZip.htm -------------------------------------------------------------------------------- /Help/Tools and Utilities/CmdLine.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Tools and Utilities/CmdLine.htm -------------------------------------------------------------------------------- /Help/Tools and Utilities/GUI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Tools and Utilities/GUI.htm -------------------------------------------------------------------------------- /Help/Tools and Utilities/Tools and Utilities.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Tools and Utilities/Tools and Utilities.htm -------------------------------------------------------------------------------- /Help/Tools and Utilities/ZipTool1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Tools and Utilities/ZipTool1.png -------------------------------------------------------------------------------- /Help/Tools and Utilities/ZipTool2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Tools and Utilities/ZipTool2.png -------------------------------------------------------------------------------- /Help/Tools and Utilities/ZipTool3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Tools and Utilities/ZipTool3.png -------------------------------------------------------------------------------- /Help/Zip Tools/BZip2GZip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Zip Tools/BZip2GZip.htm -------------------------------------------------------------------------------- /Help/Zip Tools/CmdLine.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Zip Tools/CmdLine.htm -------------------------------------------------------------------------------- /Help/Zip Tools/GUI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Zip Tools/GUI.htm -------------------------------------------------------------------------------- /Help/Zip Tools/Zip Tools.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Zip Tools/Zip Tools.htm -------------------------------------------------------------------------------- /Help/Zip Tools/ZipTool1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Zip Tools/ZipTool1.png -------------------------------------------------------------------------------- /Help/Zip Tools/ZipTool2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Zip Tools/ZipTool2.png -------------------------------------------------------------------------------- /Help/Zip Tools/ZipTool3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Help/Zip Tools/ZipTool3.png -------------------------------------------------------------------------------- /License.BZip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/License.BZip2.txt -------------------------------------------------------------------------------- /License.Combined.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/License.Combined.rtf -------------------------------------------------------------------------------- /License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/License.rtf -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/License.txt -------------------------------------------------------------------------------- /License.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/License.zlib.txt -------------------------------------------------------------------------------- /LocalTestRun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/LocalTestRun.testrunconfig -------------------------------------------------------------------------------- /MakeReleaseZips.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/MakeReleaseZips.bat -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Readme.txt -------------------------------------------------------------------------------- /SetVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/SetVersion.ps1 -------------------------------------------------------------------------------- /Setup Runtime/ComRegistration.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/ComRegistration.wxs -------------------------------------------------------------------------------- /Setup Runtime/CustomText.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/CustomText.wxl -------------------------------------------------------------------------------- /Setup Runtime/DotNetZip Runtime.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/DotNetZip Runtime.wixproj -------------------------------------------------------------------------------- /Setup Runtime/PostProcessMsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/PostProcessMsi.js -------------------------------------------------------------------------------- /Setup Runtime/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/Product.wxs -------------------------------------------------------------------------------- /Setup Runtime/SideBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/SideBanner.bmp -------------------------------------------------------------------------------- /Setup Runtime/TopBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/TopBanner.bmp -------------------------------------------------------------------------------- /Setup Runtime/UI.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Runtime/UI.wxs -------------------------------------------------------------------------------- /Setup Utils/CA.ZipAssociation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/CA.ZipAssociation.js -------------------------------------------------------------------------------- /Setup Utils/CustomActions.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/CustomActions.wxs -------------------------------------------------------------------------------- /Setup Utils/CustomText.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/CustomText.wxl -------------------------------------------------------------------------------- /Setup Utils/DotNetZipUtils.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/DotNetZipUtils.wixproj -------------------------------------------------------------------------------- /Setup Utils/PostProcessMsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/PostProcessMsi.js -------------------------------------------------------------------------------- /Setup Utils/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/Product.wxs -------------------------------------------------------------------------------- /Setup Utils/SideBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/SideBanner.bmp -------------------------------------------------------------------------------- /Setup Utils/TopBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/TopBanner.bmp -------------------------------------------------------------------------------- /Setup Utils/UI.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Setup Utils/UI.wxs -------------------------------------------------------------------------------- /SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/SolutionInfo.cs -------------------------------------------------------------------------------- /Tools/BZip2/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/BZip2/BZip2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/BZip2.cs -------------------------------------------------------------------------------- /Tools/BZip2/BZip2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/BZip2.csproj -------------------------------------------------------------------------------- /Tools/BZip2/BZip2.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/BZip2.pidb -------------------------------------------------------------------------------- /Tools/BZip2/bin/Debug/BZip2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Debug/BZip2.exe -------------------------------------------------------------------------------- /Tools/BZip2/bin/Debug/BZip2.exe.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Debug/BZip2.exe.mdb -------------------------------------------------------------------------------- /Tools/BZip2/bin/Debug/Ionic.BZip2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Debug/Ionic.BZip2.dll -------------------------------------------------------------------------------- /Tools/BZip2/bin/Debug/Ionic.BZip2.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Debug/Ionic.BZip2.dll.mdb -------------------------------------------------------------------------------- /Tools/BZip2/bin/Release/BZip2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Release/BZip2.exe -------------------------------------------------------------------------------- /Tools/BZip2/bin/Release/BZip2.exe.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Release/BZip2.exe.mdb -------------------------------------------------------------------------------- /Tools/BZip2/bin/Release/Ionic.BZip2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Release/Ionic.BZip2.dll -------------------------------------------------------------------------------- /Tools/BZip2/bin/Release/Ionic.BZip2.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/bin/Release/Ionic.BZip2.dll.mdb -------------------------------------------------------------------------------- /Tools/BZip2/obj/Release/BZip2.csproj.FilesWrittenAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/obj/Release/BZip2.csproj.FilesWrittenAbsolute.txt -------------------------------------------------------------------------------- /Tools/BZip2/obj/Release/BZip2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/obj/Release/BZip2.exe -------------------------------------------------------------------------------- /Tools/BZip2/obj/Release/BZip2.exe.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/BZip2/obj/Release/BZip2.exe.mdb -------------------------------------------------------------------------------- /Tools/ConvertZipToSfx/ConvertZipToSfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ConvertZipToSfx/ConvertZipToSfx.cs -------------------------------------------------------------------------------- /Tools/ConvertZipToSfx/ConvertZipToSfx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj -------------------------------------------------------------------------------- /Tools/ConvertZipToSfx/ConvertZipToSfx.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj.vspscc -------------------------------------------------------------------------------- /Tools/ConvertZipToSfx/ConvertZipToSfx.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ConvertZipToSfx/ConvertZipToSfx.pidb -------------------------------------------------------------------------------- /Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/GZip/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/GZip/GZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/GZip.cs -------------------------------------------------------------------------------- /Tools/GZip/GZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/GZip.csproj -------------------------------------------------------------------------------- /Tools/GZip/GZip.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/GZip.pidb -------------------------------------------------------------------------------- /Tools/GZip/bin/Debug/GZip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/bin/Debug/GZip.exe -------------------------------------------------------------------------------- /Tools/GZip/bin/Debug/GZip.exe.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/bin/Debug/GZip.exe.mdb -------------------------------------------------------------------------------- /Tools/GZip/bin/Debug/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/bin/Debug/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Tools/GZip/bin/Debug/Ionic.Zlib.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/bin/Debug/Ionic.Zlib.dll.mdb -------------------------------------------------------------------------------- /Tools/GZip/bin/Release/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/bin/Release/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Tools/GZip/bin/Release/Ionic.Zlib.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/bin/Release/Ionic.Zlib.dll.mdb -------------------------------------------------------------------------------- /Tools/GZip/obj/Release/GZip.csproj.FilesWrittenAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/GZip/obj/Release/GZip.csproj.FilesWrittenAbsolute.txt -------------------------------------------------------------------------------- /Tools/UnZip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/UnZip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/UnZip/UnZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/UnZip/UnZip.cs -------------------------------------------------------------------------------- /Tools/UnZip/UnZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/UnZip/UnZip.csproj -------------------------------------------------------------------------------- /Tools/UnZip/UnZip.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/UnZip/UnZip.csproj.vspscc -------------------------------------------------------------------------------- /Tools/UnZip/UnZip.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/UnZip/UnZip.pidb -------------------------------------------------------------------------------- /Tools/WinFormsApp/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/About.rtf -------------------------------------------------------------------------------- /Tools/WinFormsApp/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Extensions.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/Form.DragDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Form.DragDrop.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/Form.State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Form.State.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/GetIcon.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/GetIcon.cmd -------------------------------------------------------------------------------- /Tools/WinFormsApp/Icon2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Icon2.res -------------------------------------------------------------------------------- /Tools/WinFormsApp/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/ListViewEx.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/ListViewEx.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/ListViewEx.resx -------------------------------------------------------------------------------- /Tools/WinFormsApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Program.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Properties/Resources.resx -------------------------------------------------------------------------------- /Tools/WinFormsApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Properties/Settings.settings -------------------------------------------------------------------------------- /Tools/WinFormsApp/Resources/zippedFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Resources/zippedFile.png -------------------------------------------------------------------------------- /Tools/WinFormsApp/Win Forms App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Win Forms App.csproj -------------------------------------------------------------------------------- /Tools/WinFormsApp/Win Forms App.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Win Forms App.csproj.vspscc -------------------------------------------------------------------------------- /Tools/WinFormsApp/Win Forms App.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Win Forms App.pidb -------------------------------------------------------------------------------- /Tools/WinFormsApp/Win Forms Zip Example.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/Win Forms Zip Example.csproj.vspscc -------------------------------------------------------------------------------- /Tools/WinFormsApp/ZipForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/ZipForm.Designer.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/ZipForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/ZipForm.cs -------------------------------------------------------------------------------- /Tools/WinFormsApp/ZipForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/WinFormsApp/ZipForm.resx -------------------------------------------------------------------------------- /Tools/ZipIt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ZipIt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/ZipIt/ZipIt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ZipIt/ZipIt.cs -------------------------------------------------------------------------------- /Tools/ZipIt/ZipIt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ZipIt/ZipIt.csproj -------------------------------------------------------------------------------- /Tools/ZipIt/ZipIt.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ZipIt/ZipIt.csproj.vspscc -------------------------------------------------------------------------------- /Tools/ZipIt/ZipIt.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Tools/ZipIt/ZipIt.pidb -------------------------------------------------------------------------------- /Zip CF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip CF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zip CF/Zip CF DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip CF/Zip CF DLL.csproj -------------------------------------------------------------------------------- /Zip CF/Zip CF DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip CF/Zip CF DLL.pidb -------------------------------------------------------------------------------- /Zip CF/Zip CF Partial DLL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip CF/Zip CF Partial DLL.csproj.vspscc -------------------------------------------------------------------------------- /Zip Full DLL/Zip Full DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Full DLL/Zip Full DLL.csproj -------------------------------------------------------------------------------- /Zip Full DLL/Zip Full DLL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Full DLL/Zip Full DLL.csproj.vspscc -------------------------------------------------------------------------------- /Zip Reduced/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zip Reduced/Zip Reduced.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/Zip Reduced.csproj -------------------------------------------------------------------------------- /Zip Reduced/Zip Reduced.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/Zip Reduced.csproj.vspscc -------------------------------------------------------------------------------- /Zip Reduced/Zip Reduced.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/Zip Reduced.pidb -------------------------------------------------------------------------------- /Zip Reduced/bin/Debug/Ionic.Zip.Reduced.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Debug/Ionic.Zip.Reduced.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Debug/Ionic.Zip.Reduced.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Debug/Ionic.Zip.Reduced.dll.mdb -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/Assembly-CSharp.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/Ionic.Zip.Reduced.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/Ionic.Zip.Reduced.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/Ionic.Zip.Reduced.dll.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/Ionic.Zip.Reduced.dll.s -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/JsonFx.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/JsonFx.Json.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/System.Core.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/System.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/UnityEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/UnityEditor.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/UnityEngine.dll -------------------------------------------------------------------------------- /Zip Reduced/bin/Release/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/bin/Release/mscorlib.dll -------------------------------------------------------------------------------- /Zip Reduced/obj/Release/Ionic.Zip.Reduced.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/obj/Release/Ionic.Zip.Reduced.dll -------------------------------------------------------------------------------- /Zip Reduced/obj/Release/Zip Reduced.csproj.FilesWrittenAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Reduced/obj/Release/Zip Reduced.csproj.FilesWrittenAbsolute.txt -------------------------------------------------------------------------------- /Zip SL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip SL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zip SL/Zip SL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip SL/Zip SL.csproj -------------------------------------------------------------------------------- /Zip SL/Zip SL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip SL/Zip SL.pidb -------------------------------------------------------------------------------- /Zip Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/BasicTests.cs -------------------------------------------------------------------------------- /Zip Tests/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Compatibility.cs -------------------------------------------------------------------------------- /Zip Tests/ErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/ErrorTests.cs -------------------------------------------------------------------------------- /Zip Tests/ExtendedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/ExtendedTests.cs -------------------------------------------------------------------------------- /Zip Tests/IonicTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/IonicTestClass.cs -------------------------------------------------------------------------------- /Zip Tests/LongRunning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/LongRunning.cs -------------------------------------------------------------------------------- /Zip Tests/NonSeekableOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/NonSeekableOutputStream.cs -------------------------------------------------------------------------------- /Zip Tests/PasswordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/PasswordTests.cs -------------------------------------------------------------------------------- /Zip Tests/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Progress.cs -------------------------------------------------------------------------------- /Zip Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zip Tests/RandomTextGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/RandomTextGenerator.cs -------------------------------------------------------------------------------- /Zip Tests/Resources/AspNetHost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/AspNetHost.exe -------------------------------------------------------------------------------- /Zip Tests/Resources/AspNetHost.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/AspNetHost.pdb -------------------------------------------------------------------------------- /Zip Tests/Resources/CreateZip.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/CreateZip.pl -------------------------------------------------------------------------------- /Zip Tests/Resources/GenerateZip-Cs.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/GenerateZip-Cs.aspx -------------------------------------------------------------------------------- /Zip Tests/Resources/Ionic.CopyData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/Ionic.CopyData.dll -------------------------------------------------------------------------------- /Zip Tests/Resources/Ionic.IO.JunctionPoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/Ionic.IO.JunctionPoint.dll -------------------------------------------------------------------------------- /Zip Tests/Resources/TestCheckZip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/TestCheckZip.js -------------------------------------------------------------------------------- /Zip Tests/Resources/TestCheckZipPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/TestCheckZipPassword.js -------------------------------------------------------------------------------- /Zip Tests/Resources/TestStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/TestStrings.txt -------------------------------------------------------------------------------- /Zip Tests/Resources/UnitTestProgressMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/UnitTestProgressMonitor.exe -------------------------------------------------------------------------------- /Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs -------------------------------------------------------------------------------- /Zip Tests/Resources/VbsCreateZip-ShellApp.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs -------------------------------------------------------------------------------- /Zip Tests/Resources/VbsUnZip-DotNetZip.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs -------------------------------------------------------------------------------- /Zip Tests/Resources/VbsUnzip-ShellApp.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/VbsUnzip-ShellApp.vbs -------------------------------------------------------------------------------- /Zip Tests/Resources/wi8647.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Resources/wi8647.tif -------------------------------------------------------------------------------- /Zip Tests/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Selector.cs -------------------------------------------------------------------------------- /Zip Tests/SelfExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/SelfExtractor.cs -------------------------------------------------------------------------------- /Zip Tests/SplitArchives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/SplitArchives.cs -------------------------------------------------------------------------------- /Zip Tests/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Streams.cs -------------------------------------------------------------------------------- /Zip Tests/TestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/TestUtilities.cs -------------------------------------------------------------------------------- /Zip Tests/UnicodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/UnicodeTests.cs -------------------------------------------------------------------------------- /Zip Tests/UpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/UpdateTests.cs -------------------------------------------------------------------------------- /Zip Tests/WinZipAesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/WinZipAesTests.cs -------------------------------------------------------------------------------- /Zip Tests/Zip Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Zip Tests.csproj -------------------------------------------------------------------------------- /Zip Tests/Zip Tests.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Zip Tests.csproj.vspscc -------------------------------------------------------------------------------- /Zip Tests/Zip64Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/Zip64Tests.cs -------------------------------------------------------------------------------- /Zip Tests/zips/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/Book1.xlsx -------------------------------------------------------------------------------- /Zip Tests/zips/Calendar.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/Calendar.apk -------------------------------------------------------------------------------- /Zip Tests/zips/Vanishing Oatmeal Cookies.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/Vanishing Oatmeal Cookies.docx -------------------------------------------------------------------------------- /Zip Tests/zips/appnote-iz-latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/appnote-iz-latest.zip -------------------------------------------------------------------------------- /Zip Tests/zips/plot.dwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/plot.dwf -------------------------------------------------------------------------------- /Zip Tests/zips/wi10330-badzip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/wi10330-badzip.zip -------------------------------------------------------------------------------- /Zip Tests/zips/wi11056.dwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/wi11056.dwf -------------------------------------------------------------------------------- /Zip Tests/zips/wi13668-bad-pwd-472713.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/wi13668-bad-pwd-472713.zip -------------------------------------------------------------------------------- /Zip Tests/zips/wi13892.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/wi13892.zip -------------------------------------------------------------------------------- /Zip Tests/zips/winzip-sfx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip Tests/zips/winzip-sfx.exe -------------------------------------------------------------------------------- /Zip/ComHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ComHelper.cs -------------------------------------------------------------------------------- /Zip/EncryptionAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/EncryptionAlgorithm.cs -------------------------------------------------------------------------------- /Zip/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Events.cs -------------------------------------------------------------------------------- /Zip/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Exceptions.cs -------------------------------------------------------------------------------- /Zip/ExtractExistingFileAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ExtractExistingFileAction.cs -------------------------------------------------------------------------------- /Zip/FileSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/FileSelector.cs -------------------------------------------------------------------------------- /Zip/Migrated rules for Zip DLL.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Migrated rules for Zip DLL.ruleset -------------------------------------------------------------------------------- /Zip/OffsetStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/OffsetStream.cs -------------------------------------------------------------------------------- /Zip/PackResources.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/PackResources.vbs -------------------------------------------------------------------------------- /Zip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zip/Resources/CommandLineSelfExtractorStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/CommandLineSelfExtractorStub.cs -------------------------------------------------------------------------------- /Zip/Resources/FolderBrowserDialogEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/FolderBrowserDialogEx.cs -------------------------------------------------------------------------------- /Zip/Resources/PasswordDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/PasswordDialog.Designer.cs -------------------------------------------------------------------------------- /Zip/Resources/PasswordDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/PasswordDialog.cs -------------------------------------------------------------------------------- /Zip/Resources/PasswordDialog.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/PasswordDialog.resources -------------------------------------------------------------------------------- /Zip/Resources/PasswordDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/PasswordDialog.resx -------------------------------------------------------------------------------- /Zip/Resources/WinFormsSelfExtractorStub.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs -------------------------------------------------------------------------------- /Zip/Resources/WinFormsSelfExtractorStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/WinFormsSelfExtractorStub.cs -------------------------------------------------------------------------------- /Zip/Resources/WinFormsSelfExtractorStub.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/WinFormsSelfExtractorStub.resources -------------------------------------------------------------------------------- /Zip/Resources/WinFormsSelfExtractorStub.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/WinFormsSelfExtractorStub.resx -------------------------------------------------------------------------------- /Zip/Resources/ZipContentsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/ZipContentsDialog.Designer.cs -------------------------------------------------------------------------------- /Zip/Resources/ZipContentsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/ZipContentsDialog.cs -------------------------------------------------------------------------------- /Zip/Resources/ZipContentsDialog.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/ZipContentsDialog.resources -------------------------------------------------------------------------------- /Zip/Resources/ZipContentsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/ZipContentsDialog.resx -------------------------------------------------------------------------------- /Zip/Resources/zippedFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Resources/zippedFile.ico -------------------------------------------------------------------------------- /Zip/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Shared.cs -------------------------------------------------------------------------------- /Zip/WinZipAes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/WinZipAes.cs -------------------------------------------------------------------------------- /Zip/Zip DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Zip DLL.csproj -------------------------------------------------------------------------------- /Zip/Zip DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Zip DLL.pidb -------------------------------------------------------------------------------- /Zip/Zip Partial DLL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/Zip Partial DLL.csproj.vspscc -------------------------------------------------------------------------------- /Zip/ZipConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipConstants.cs -------------------------------------------------------------------------------- /Zip/ZipCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipCrypto.cs -------------------------------------------------------------------------------- /Zip/ZipDirEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipDirEntry.cs -------------------------------------------------------------------------------- /Zip/ZipEntry.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipEntry.Extract.cs -------------------------------------------------------------------------------- /Zip/ZipEntry.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipEntry.Read.cs -------------------------------------------------------------------------------- /Zip/ZipEntry.Write.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipEntry.Write.cs -------------------------------------------------------------------------------- /Zip/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipEntry.cs -------------------------------------------------------------------------------- /Zip/ZipEntrySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipEntrySource.cs -------------------------------------------------------------------------------- /Zip/ZipErrorAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipErrorAction.cs -------------------------------------------------------------------------------- /Zip/ZipFile.AddUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.AddUpdate.cs -------------------------------------------------------------------------------- /Zip/ZipFile.Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.Check.cs -------------------------------------------------------------------------------- /Zip/ZipFile.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.Events.cs -------------------------------------------------------------------------------- /Zip/ZipFile.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.Extract.cs -------------------------------------------------------------------------------- /Zip/ZipFile.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.Read.cs -------------------------------------------------------------------------------- /Zip/ZipFile.Save.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.Save.cs -------------------------------------------------------------------------------- /Zip/ZipFile.SaveSelfExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.SaveSelfExtractor.cs -------------------------------------------------------------------------------- /Zip/ZipFile.Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.Selector.cs -------------------------------------------------------------------------------- /Zip/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.cs -------------------------------------------------------------------------------- /Zip/ZipFile.x-IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipFile.x-IEnumerable.cs -------------------------------------------------------------------------------- /Zip/ZipInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipInputStream.cs -------------------------------------------------------------------------------- /Zip/ZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipOutputStream.cs -------------------------------------------------------------------------------- /Zip/ZipSegmentedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/ZipSegmentedStream.cs -------------------------------------------------------------------------------- /Zip/bin/Debug/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/bin/Debug/Ionic.Zip.dll -------------------------------------------------------------------------------- /Zip/bin/Debug/Ionic.Zip.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/bin/Debug/Ionic.Zip.dll.mdb -------------------------------------------------------------------------------- /Zip/msbuild.flymake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zip/msbuild.flymake.xml -------------------------------------------------------------------------------- /ZipSrc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/ZipSrc.ps1 -------------------------------------------------------------------------------- /Zlib CF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib CF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zlib CF/Zlib CF DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib CF/Zlib CF DLL.csproj -------------------------------------------------------------------------------- /Zlib CF/Zlib CF DLL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib CF/Zlib CF DLL.csproj.vspscc -------------------------------------------------------------------------------- /Zlib CF/Zlib CF DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib CF/Zlib CF DLL.pidb -------------------------------------------------------------------------------- /Zlib CF/bin/Debug/Ionic.Zlib.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib CF/bin/Debug/Ionic.Zlib.CF.dll -------------------------------------------------------------------------------- /Zlib CF/bin/Debug/Ionic.Zlib.CF.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib CF/bin/Debug/Ionic.Zlib.CF.dll.mdb -------------------------------------------------------------------------------- /Zlib CF/bin/Release/Ionic.Zlib.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib CF/bin/Release/Ionic.Zlib.CF.dll -------------------------------------------------------------------------------- /Zlib SL DLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib SL DLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zlib SL DLL/Zlib SL DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib SL DLL/Zlib SL DLL.csproj -------------------------------------------------------------------------------- /Zlib SL DLL/Zlib SL DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib SL DLL/Zlib SL DLL.pidb -------------------------------------------------------------------------------- /Zlib SL DLL/Zlib Silverlight 3 DLL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib SL DLL/Zlib Silverlight 3 DLL.csproj.vspscc -------------------------------------------------------------------------------- /Zlib Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zlib Tests/Resources/zlibbed.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib Tests/Resources/zlibbed.file -------------------------------------------------------------------------------- /Zlib Tests/Zlib Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib Tests/Zlib Tests.csproj -------------------------------------------------------------------------------- /Zlib Tests/Zlib Tests.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib Tests/Zlib Tests.csproj.vspscc -------------------------------------------------------------------------------- /Zlib Tests/ZlibUnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib Tests/ZlibUnitTest1.cs -------------------------------------------------------------------------------- /Zlib/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/Deflate.cs -------------------------------------------------------------------------------- /Zlib/DeflateStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/DeflateStream.cs -------------------------------------------------------------------------------- /Zlib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/GZipStream.cs -------------------------------------------------------------------------------- /Zlib/InfTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/InfTree.cs -------------------------------------------------------------------------------- /Zlib/Inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/Inflate.cs -------------------------------------------------------------------------------- /Zlib/LICENSE.jzlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/LICENSE.jzlib.txt -------------------------------------------------------------------------------- /Zlib/License.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/License.zlib.txt -------------------------------------------------------------------------------- /Zlib/LocalTestRun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/LocalTestRun.testrunconfig -------------------------------------------------------------------------------- /Zlib/ParallelDeflateOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/ParallelDeflateOutputStream.cs -------------------------------------------------------------------------------- /Zlib/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/Tree.cs -------------------------------------------------------------------------------- /Zlib/Zlib DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/Zlib DLL.csproj -------------------------------------------------------------------------------- /Zlib/Zlib DLL.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/Zlib DLL.pidb -------------------------------------------------------------------------------- /Zlib/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/Zlib.cs -------------------------------------------------------------------------------- /Zlib/Zlib.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/Zlib.csproj.vspscc -------------------------------------------------------------------------------- /Zlib/ZlibBaseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/ZlibBaseStream.cs -------------------------------------------------------------------------------- /Zlib/ZlibCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/ZlibCodec.cs -------------------------------------------------------------------------------- /Zlib/ZlibConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/ZlibConstants.cs -------------------------------------------------------------------------------- /Zlib/ZlibStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/ZlibStream.cs -------------------------------------------------------------------------------- /Zlib/bin/Debug/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/bin/Debug/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Zlib/bin/Debug/Ionic.Zlib.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/bin/Debug/Ionic.Zlib.dll.mdb -------------------------------------------------------------------------------- /Zlib/bin/Release/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/bin/Release/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Zlib/bin/Release/Ionic.Zlib.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/bin/Release/Ionic.Zlib.dll.mdb -------------------------------------------------------------------------------- /Zlib/obj/Release/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/obj/Release/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Zlib/obj/Release/Ionic.Zlib.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/obj/Release/Ionic.Zlib.dll.mdb -------------------------------------------------------------------------------- /Zlib/obj/Release/Zlib DLL.csproj.FilesWrittenAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/obj/Release/Zlib DLL.csproj.FilesWrittenAbsolute.txt -------------------------------------------------------------------------------- /Zlib/properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Zlib/zlib-10.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/Zlib/zlib-10.vsmdi -------------------------------------------------------------------------------- /clean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfVoxel/DotNetZip/HEAD/clean.ps1 --------------------------------------------------------------------------------