├── .gitattributes ├── .gitignore ├── .paket └── Paket.Restore.targets ├── .semver ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── NOTICE ├── README.md ├── Rakefile ├── appveyor.yml ├── paket.dependencies ├── paket.lock └── src ├── .tfs-ignore ├── AppNote.iz.txt ├── AppNote.txt ├── BZip2 Tests ├── BZip2UnitTest1.cs ├── Bzip2 Tests.csproj ├── Properties │ └── AssemblyInfo.cs └── Resources │ ├── dancing-color.ps.bz2 │ ├── sample1.bz2 │ └── sample2.bz2 ├── BZip2 ├── BZip2 DLL.csproj ├── BZip2Compressor.cs ├── BZip2InputStream.cs ├── BZip2OutputStream.cs ├── BitWriter.cs ├── NOTICE.txt ├── ParallelBZip2OutputStream.cs ├── Properties │ └── AssemblyInfo.cs └── Rand.cs ├── BuildHelp.bat ├── BuildProcessTemplates ├── DefaultTemplate.11.1.xaml ├── DefaultTemplate.xaml ├── LabDefaultTemplate.11.xaml └── UpgradeTemplate.xaml ├── CommonSrc └── CRC32.cs ├── DotNetZip-All.sln ├── DotNetZip.sln ├── 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# │ ├── CreateZip │ │ ├── CreateZip.cs │ │ ├── CreateZip.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ReadZip │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReadZip.cs │ │ └── ReadZip.csproj │ ├── 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 │ └── 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 ├── C++ │ ├── CreateWithProgress.cpp │ ├── CreateZipfile.cpp │ ├── build.cmd │ └── clean.cmd ├── PHP │ └── CreateZip-DotNetZip.php ├── SolutionInfo.cs └── VB │ ├── Quick-Unzip │ ├── AssemblyInfo.vb │ ├── QuickUnzip.vbproj │ └── Qunzip.vb │ ├── WinForms-DotNetZip │ ├── WinForms-DotNetZip-VB.sln │ ├── WinForms-Unzip │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Unzip-Form1.Designer.vb │ │ ├── Unzip-Form1.resx │ │ ├── Unzip-Form1.vb │ │ └── WinForms-Unzip.vbproj │ └── 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.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── WinForms-TreeViewZip.vbproj ├── 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 │ ├── 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 ├── Ionic.snk ├── License.BZip2.txt ├── License.Combined.rtf ├── License.rtf ├── License.zlib.txt ├── ListContents ├── ListContents.csproj └── Program.cs ├── LocalTestRun.testrunconfig ├── MakeReleaseZips.bat ├── 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 ├── ConvertZipToSfx │ ├── ConvertZipToSfx.cs │ ├── ConvertZipToSfx.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── GZip │ ├── AssemblyInfo.cs │ ├── GZip.cs │ └── GZip.csproj ├── UnZip │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UnZip.cs │ └── UnZip.csproj ├── 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 │ ├── ZipForm.Designer.cs │ ├── ZipForm.cs │ └── ZipForm.resx └── ZipIt │ ├── Properties │ └── AssemblyInfo.cs │ ├── ZipIt.cs │ └── ZipIt.csproj ├── Zip Full DLL └── Zip Full DLL.csproj ├── Zip NetStandard ├── Properties │ └── AssemblyInfo.cs ├── Zip NetStandard.csproj └── paket.references ├── Zip Reduced ├── Properties │ └── AssemblyInfo.cs └── Zip Reduced.csproj ├── Zip Tests ├── BasicTests.cs ├── Compatibility.cs ├── ErrorTests.cs ├── ExtendedTests.cs ├── IonicTestClass.cs ├── LongRunning.cs ├── NonSeekableOutputStream.cs ├── PasswordTests.cs ├── Progress.cs ├── Properties │ └── AssemblyInfo.cs ├── RandomBytesInputStream.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 ├── Zip64Tests.cs ├── packages.config └── zips │ ├── Book1.xlsx │ ├── Calendar.apk │ ├── Vanishing Oatmeal Cookies.docx │ ├── appnote-iz-latest.zip │ ├── fireone.zip │ ├── plot.dwf │ ├── relative-paths-in-subdir-outside.zip │ ├── relative-paths-in-subdir.zip │ ├── relative-paths-outside.zip │ ├── wi10330-badzip.zip │ ├── wi11056.dwf │ ├── wi13668-bad-pwd-472713.zip │ ├── wi13892.zip │ ├── winzip-sfx.exe │ └── wizzquiz.zip ├── Zip.Android ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ └── Values │ │ └── Strings.xml ├── Zip.Android.csproj └── Zip.Android.csproj.bak ├── Zip.Shared ├── ComHelper.cs ├── Deflate64 │ ├── BlockType.cs │ ├── Deflate64Stream.cs │ ├── FileFormats.cs │ ├── HuffmanTree.cs │ ├── InflaterManaged.cs │ ├── InflaterState.cs │ ├── InputBuffer.cs │ ├── MatchState.cs │ └── OutputWindow.cs ├── EncryptionAlgorithm.cs ├── Events.cs ├── Exceptions.cs ├── ExtractExistingFileAction.cs ├── FileSelector.cs ├── OffsetStream.cs ├── Shared.cs ├── WinZipAes.cs ├── Zip.Shared.projitems ├── Zip.Shared.shproj ├── 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.Selector.cs ├── ZipFile.Static.cs ├── ZipFile.cs ├── ZipFile.x-IEnumerable.cs ├── ZipInputStream.cs ├── ZipOutputStream.cs ├── ZipSegmentedStream.cs ├── project.json └── project.lock.json ├── Zip.iOS ├── Properties │ └── AssemblyInfo.cs └── Zip.iOS.csproj ├── Zip ├── Migrated rules for Zip DLL.ruleset ├── PackResources.vbs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── CommandLineSelfExtractorStub.cs │ ├── FolderBrowserDialogEx.cs │ ├── PasswordDialog.Designer.cs │ ├── PasswordDialog.cs │ ├── PasswordDialog.resx │ ├── WinFormsSelfExtractorStub.Designer.cs │ ├── WinFormsSelfExtractorStub.cs │ ├── WinFormsSelfExtractorStub.resx │ ├── ZipContentsDialog.Designer.cs │ ├── ZipContentsDialog.cs │ ├── ZipContentsDialog.resx │ ├── zippedFile.ico │ └── zippedResources.zip ├── Zip DLL.csproj ├── ZipFile.SaveSelfExtractor.cs └── msbuild.flymake.xml ├── ZipSrc.ps1 ├── Zlib Tests ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── zlibbed.file ├── Zlib Tests.csproj └── ZlibUnitTest1.cs ├── Zlib.Portable ├── Class1.cs ├── Properties │ └── AssemblyInfo.cs └── Zlib.Portable.csproj ├── Zlib.Shared ├── CRC32.cs ├── Deflate.cs ├── DeflateStream.cs ├── GZipStream.cs ├── InfTree.cs ├── Inflate.cs ├── ParallelDeflateOutputStream.cs ├── Tree.cs ├── Zlib.Shared.projitems ├── Zlib.Shared.shproj ├── Zlib.cs ├── ZlibBaseStream.cs ├── ZlibCodec.cs ├── ZlibConstants.cs └── ZlibStream.cs ├── Zlib ├── LICENSE.jzlib.txt ├── License.zlib.txt ├── LocalTestRun.testrunconfig ├── Zlib DLL.csproj ├── properties │ └── AssemblyInfo.cs └── zlib-10.vsmdi └── clean.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /.semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/.semver -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/appveyor.yml -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/paket.lock -------------------------------------------------------------------------------- /src/.tfs-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/.tfs-ignore -------------------------------------------------------------------------------- /src/AppNote.iz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/AppNote.iz.txt -------------------------------------------------------------------------------- /src/AppNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/AppNote.txt -------------------------------------------------------------------------------- /src/BZip2 Tests/BZip2UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2 Tests/BZip2UnitTest1.cs -------------------------------------------------------------------------------- /src/BZip2 Tests/Bzip2 Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2 Tests/Bzip2 Tests.csproj -------------------------------------------------------------------------------- /src/BZip2 Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2 Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BZip2 Tests/Resources/dancing-color.ps.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2 Tests/Resources/dancing-color.ps.bz2 -------------------------------------------------------------------------------- /src/BZip2 Tests/Resources/sample1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2 Tests/Resources/sample1.bz2 -------------------------------------------------------------------------------- /src/BZip2 Tests/Resources/sample2.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2 Tests/Resources/sample2.bz2 -------------------------------------------------------------------------------- /src/BZip2/BZip2 DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/BZip2 DLL.csproj -------------------------------------------------------------------------------- /src/BZip2/BZip2Compressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/BZip2Compressor.cs -------------------------------------------------------------------------------- /src/BZip2/BZip2InputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/BZip2InputStream.cs -------------------------------------------------------------------------------- /src/BZip2/BZip2OutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/BZip2OutputStream.cs -------------------------------------------------------------------------------- /src/BZip2/BitWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/BitWriter.cs -------------------------------------------------------------------------------- /src/BZip2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/NOTICE.txt -------------------------------------------------------------------------------- /src/BZip2/ParallelBZip2OutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/ParallelBZip2OutputStream.cs -------------------------------------------------------------------------------- /src/BZip2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BZip2/Rand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BZip2/Rand.cs -------------------------------------------------------------------------------- /src/BuildHelp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BuildHelp.bat -------------------------------------------------------------------------------- /src/BuildProcessTemplates/DefaultTemplate.11.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BuildProcessTemplates/DefaultTemplate.11.1.xaml -------------------------------------------------------------------------------- /src/BuildProcessTemplates/DefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BuildProcessTemplates/DefaultTemplate.xaml -------------------------------------------------------------------------------- /src/BuildProcessTemplates/LabDefaultTemplate.11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BuildProcessTemplates/LabDefaultTemplate.11.xaml -------------------------------------------------------------------------------- /src/BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /src/CommonSrc/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/CommonSrc/CRC32.cs -------------------------------------------------------------------------------- /src/DotNetZip-All.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/DotNetZip-All.sln -------------------------------------------------------------------------------- /src/DotNetZip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/DotNetZip.sln -------------------------------------------------------------------------------- /src/DotNetZip.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/DotNetZip.vsmdi -------------------------------------------------------------------------------- /src/DotNetZip.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/DotNetZip.vssscc -------------------------------------------------------------------------------- /src/DotNetZip1.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/DotNetZip1.vsmdi -------------------------------------------------------------------------------- /src/EditCsproj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/EditCsproj.exe -------------------------------------------------------------------------------- /src/Examples/ASP/AspClassic-ReadZip.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/ASP/AspClassic-ReadZip.asp -------------------------------------------------------------------------------- /src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx -------------------------------------------------------------------------------- /src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx -------------------------------------------------------------------------------- /src/Examples/ASPNET/GenerateZip-Csharp.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/ASPNET/GenerateZip-Csharp.aspx -------------------------------------------------------------------------------- /src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx -------------------------------------------------------------------------------- /src/Examples/ASPNET/GenerateZip-VB.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/ASPNET/GenerateZip-VB.aspx -------------------------------------------------------------------------------- /src/Examples/C#/CreateZip/CreateZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/CreateZip/CreateZip.cs -------------------------------------------------------------------------------- /src/Examples/C#/CreateZip/CreateZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/CreateZip/CreateZip.csproj -------------------------------------------------------------------------------- /src/Examples/C#/CreateZip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/CreateZip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/C#/ReadZip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ReadZip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/C#/ReadZip/ReadZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ReadZip/ReadZip.cs -------------------------------------------------------------------------------- /src/Examples/C#/ReadZip/ReadZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ReadZip/ReadZip.csproj -------------------------------------------------------------------------------- /src/Examples/C#/WinForms-QuickZip/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/WinForms-QuickZip/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/C#/WinForms-QuickZip/QuickZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/WinForms-QuickZip/QuickZip.cs -------------------------------------------------------------------------------- /src/Examples/C#/WinForms-QuickZip/QuickZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/WinForms-QuickZip/QuickZip.csproj -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/QuickCompress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/QuickCompress.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/ZlibDeflateInflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/ZlibDeflateInflate.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/ZlibStreamExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/ZlibStreamExample.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/makefile -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/test_flush_sync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/test_flush_sync.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZLIB/test_large_deflate_inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZLIB/test_large_deflate_inflate.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipDir/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipDir/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipDir/ZipDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipDir/ZipDir.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipDir/ZipDir.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipDir/ZipDir.csproj -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Form1.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Form1.resx -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Program.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Examples/C#/ZipTreeView/ZipTreeView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C#/ZipTreeView/ZipTreeView.csproj -------------------------------------------------------------------------------- /src/Examples/C++/CreateWithProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C++/CreateWithProgress.cpp -------------------------------------------------------------------------------- /src/Examples/C++/CreateZipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C++/CreateZipfile.cpp -------------------------------------------------------------------------------- /src/Examples/C++/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C++/build.cmd -------------------------------------------------------------------------------- /src/Examples/C++/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/C++/clean.cmd -------------------------------------------------------------------------------- /src/Examples/PHP/CreateZip-DotNetZip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/PHP/CreateZip-DotNetZip.php -------------------------------------------------------------------------------- /src/Examples/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/SolutionInfo.cs -------------------------------------------------------------------------------- /src/Examples/VB/Quick-Unzip/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/Quick-Unzip/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj -------------------------------------------------------------------------------- /src/Examples/VB/Quick-Unzip/Qunzip.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/Quick-Unzip/Qunzip.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings -------------------------------------------------------------------------------- /src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegration.sln -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT -------------------------------------------------------------------------------- /src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj -------------------------------------------------------------------------------- /src/Help/Code Examples/ASPNET-Csharp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/ASPNET-Csharp.htm -------------------------------------------------------------------------------- /src/Help/Code Examples/ASPNET-VB.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/ASPNET-VB.htm -------------------------------------------------------------------------------- /src/Help/Code Examples/COM.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/COM.htm -------------------------------------------------------------------------------- /src/Help/Code Examples/Code Examples.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/Code Examples.htm -------------------------------------------------------------------------------- /src/Help/Code Examples/Cpp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/Cpp.htm -------------------------------------------------------------------------------- /src/Help/Code Examples/Csharp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/Csharp.htm -------------------------------------------------------------------------------- /src/Help/Code Examples/Powershell.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/Powershell.htm -------------------------------------------------------------------------------- /src/Help/Code Examples/VB.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Code Examples/VB.htm -------------------------------------------------------------------------------- /src/Help/HelpViewer.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/HelpViewer.shfbproj -------------------------------------------------------------------------------- /src/Help/HtmlHelp1.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/HtmlHelp1.shfbproj -------------------------------------------------------------------------------- /src/Help/Introduction/About.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Introduction/About.htm -------------------------------------------------------------------------------- /src/Help/Introduction/GettingStarted.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Introduction/GettingStarted.htm -------------------------------------------------------------------------------- /src/Help/Introduction/Introduction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Introduction/Introduction.htm -------------------------------------------------------------------------------- /src/Help/MSHelp2.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/MSHelp2.shfbproj -------------------------------------------------------------------------------- /src/Help/Tools and Utilities/BZip2GZip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Tools and Utilities/BZip2GZip.htm -------------------------------------------------------------------------------- /src/Help/Tools and Utilities/CmdLine.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Tools and Utilities/CmdLine.htm -------------------------------------------------------------------------------- /src/Help/Tools and Utilities/GUI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Tools and Utilities/GUI.htm -------------------------------------------------------------------------------- /src/Help/Tools and Utilities/Tools and Utilities.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Tools and Utilities/Tools and Utilities.htm -------------------------------------------------------------------------------- /src/Help/Tools and Utilities/ZipTool1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Tools and Utilities/ZipTool1.png -------------------------------------------------------------------------------- /src/Help/Tools and Utilities/ZipTool2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Tools and Utilities/ZipTool2.png -------------------------------------------------------------------------------- /src/Help/Tools and Utilities/ZipTool3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Tools and Utilities/ZipTool3.png -------------------------------------------------------------------------------- /src/Help/Zip Tools/BZip2GZip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Zip Tools/BZip2GZip.htm -------------------------------------------------------------------------------- /src/Help/Zip Tools/CmdLine.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Zip Tools/CmdLine.htm -------------------------------------------------------------------------------- /src/Help/Zip Tools/GUI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Zip Tools/GUI.htm -------------------------------------------------------------------------------- /src/Help/Zip Tools/Zip Tools.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Zip Tools/Zip Tools.htm -------------------------------------------------------------------------------- /src/Help/Zip Tools/ZipTool1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Zip Tools/ZipTool1.png -------------------------------------------------------------------------------- /src/Help/Zip Tools/ZipTool2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Zip Tools/ZipTool2.png -------------------------------------------------------------------------------- /src/Help/Zip Tools/ZipTool3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Help/Zip Tools/ZipTool3.png -------------------------------------------------------------------------------- /src/Ionic.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Ionic.snk -------------------------------------------------------------------------------- /src/License.BZip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/License.BZip2.txt -------------------------------------------------------------------------------- /src/License.Combined.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/License.Combined.rtf -------------------------------------------------------------------------------- /src/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/License.rtf -------------------------------------------------------------------------------- /src/License.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/License.zlib.txt -------------------------------------------------------------------------------- /src/ListContents/ListContents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/ListContents/ListContents.csproj -------------------------------------------------------------------------------- /src/ListContents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/ListContents/Program.cs -------------------------------------------------------------------------------- /src/LocalTestRun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/LocalTestRun.testrunconfig -------------------------------------------------------------------------------- /src/MakeReleaseZips.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/MakeReleaseZips.bat -------------------------------------------------------------------------------- /src/SetVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/SetVersion.ps1 -------------------------------------------------------------------------------- /src/Setup Runtime/ComRegistration.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/ComRegistration.wxs -------------------------------------------------------------------------------- /src/Setup Runtime/CustomText.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/CustomText.wxl -------------------------------------------------------------------------------- /src/Setup Runtime/DotNetZip Runtime.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/DotNetZip Runtime.wixproj -------------------------------------------------------------------------------- /src/Setup Runtime/PostProcessMsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/PostProcessMsi.js -------------------------------------------------------------------------------- /src/Setup Runtime/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/Product.wxs -------------------------------------------------------------------------------- /src/Setup Runtime/SideBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/SideBanner.bmp -------------------------------------------------------------------------------- /src/Setup Runtime/TopBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/TopBanner.bmp -------------------------------------------------------------------------------- /src/Setup Runtime/UI.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Runtime/UI.wxs -------------------------------------------------------------------------------- /src/Setup Utils/CA.ZipAssociation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/CA.ZipAssociation.js -------------------------------------------------------------------------------- /src/Setup Utils/CustomActions.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/CustomActions.wxs -------------------------------------------------------------------------------- /src/Setup Utils/CustomText.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/CustomText.wxl -------------------------------------------------------------------------------- /src/Setup Utils/DotNetZipUtils.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/DotNetZipUtils.wixproj -------------------------------------------------------------------------------- /src/Setup Utils/PostProcessMsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/PostProcessMsi.js -------------------------------------------------------------------------------- /src/Setup Utils/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/Product.wxs -------------------------------------------------------------------------------- /src/Setup Utils/SideBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/SideBanner.bmp -------------------------------------------------------------------------------- /src/Setup Utils/TopBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/TopBanner.bmp -------------------------------------------------------------------------------- /src/Setup Utils/UI.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Setup Utils/UI.wxs -------------------------------------------------------------------------------- /src/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/SolutionInfo.cs -------------------------------------------------------------------------------- /src/Tools/BZip2/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/BZip2/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/BZip2/BZip2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/BZip2/BZip2.cs -------------------------------------------------------------------------------- /src/Tools/BZip2/BZip2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/BZip2/BZip2.csproj -------------------------------------------------------------------------------- /src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs -------------------------------------------------------------------------------- /src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj -------------------------------------------------------------------------------- /src/Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/GZip/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/GZip/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/GZip/GZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/GZip/GZip.cs -------------------------------------------------------------------------------- /src/Tools/GZip/GZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/GZip/GZip.csproj -------------------------------------------------------------------------------- /src/Tools/UnZip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/UnZip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/UnZip/UnZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/UnZip/UnZip.cs -------------------------------------------------------------------------------- /src/Tools/UnZip/UnZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/UnZip/UnZip.csproj -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/About.rtf -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Extensions.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Form.DragDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Form.DragDrop.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Form.State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Form.State.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/GetIcon.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/GetIcon.cmd -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Icon2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Icon2.res -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/ListViewEx.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/ListViewEx.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/ListViewEx.resx -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Program.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Resources/zippedFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Resources/zippedFile.png -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/Win Forms App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/Win Forms App.csproj -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/ZipForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/ZipForm.Designer.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/ZipForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/ZipForm.cs -------------------------------------------------------------------------------- /src/Tools/WinFormsApp/ZipForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/WinFormsApp/ZipForm.resx -------------------------------------------------------------------------------- /src/Tools/ZipIt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/ZipIt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/ZipIt/ZipIt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/ZipIt/ZipIt.cs -------------------------------------------------------------------------------- /src/Tools/ZipIt/ZipIt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Tools/ZipIt/ZipIt.csproj -------------------------------------------------------------------------------- /src/Zip Full DLL/Zip Full DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Full DLL/Zip Full DLL.csproj -------------------------------------------------------------------------------- /src/Zip NetStandard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip NetStandard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zip NetStandard/Zip NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip NetStandard/Zip NetStandard.csproj -------------------------------------------------------------------------------- /src/Zip NetStandard/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip NetStandard/paket.references -------------------------------------------------------------------------------- /src/Zip Reduced/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Reduced/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zip Reduced/Zip Reduced.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Reduced/Zip Reduced.csproj -------------------------------------------------------------------------------- /src/Zip Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/BasicTests.cs -------------------------------------------------------------------------------- /src/Zip Tests/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Compatibility.cs -------------------------------------------------------------------------------- /src/Zip Tests/ErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/ErrorTests.cs -------------------------------------------------------------------------------- /src/Zip Tests/ExtendedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/ExtendedTests.cs -------------------------------------------------------------------------------- /src/Zip Tests/IonicTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/IonicTestClass.cs -------------------------------------------------------------------------------- /src/Zip Tests/LongRunning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/LongRunning.cs -------------------------------------------------------------------------------- /src/Zip Tests/NonSeekableOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/NonSeekableOutputStream.cs -------------------------------------------------------------------------------- /src/Zip Tests/PasswordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/PasswordTests.cs -------------------------------------------------------------------------------- /src/Zip Tests/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Progress.cs -------------------------------------------------------------------------------- /src/Zip Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zip Tests/RandomBytesInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/RandomBytesInputStream.cs -------------------------------------------------------------------------------- /src/Zip Tests/RandomTextGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/RandomTextGenerator.cs -------------------------------------------------------------------------------- /src/Zip Tests/Resources/AspNetHost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/AspNetHost.exe -------------------------------------------------------------------------------- /src/Zip Tests/Resources/AspNetHost.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/AspNetHost.pdb -------------------------------------------------------------------------------- /src/Zip Tests/Resources/CreateZip.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/CreateZip.pl -------------------------------------------------------------------------------- /src/Zip Tests/Resources/GenerateZip-Cs.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/GenerateZip-Cs.aspx -------------------------------------------------------------------------------- /src/Zip Tests/Resources/Ionic.CopyData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/Ionic.CopyData.dll -------------------------------------------------------------------------------- /src/Zip Tests/Resources/Ionic.IO.JunctionPoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/Ionic.IO.JunctionPoint.dll -------------------------------------------------------------------------------- /src/Zip Tests/Resources/TestCheckZip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/TestCheckZip.js -------------------------------------------------------------------------------- /src/Zip Tests/Resources/TestCheckZipPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/TestCheckZipPassword.js -------------------------------------------------------------------------------- /src/Zip Tests/Resources/TestStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/TestStrings.txt -------------------------------------------------------------------------------- /src/Zip Tests/Resources/UnitTestProgressMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/UnitTestProgressMonitor.exe -------------------------------------------------------------------------------- /src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs -------------------------------------------------------------------------------- /src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs -------------------------------------------------------------------------------- /src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs -------------------------------------------------------------------------------- /src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs -------------------------------------------------------------------------------- /src/Zip Tests/Resources/wi8647.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Resources/wi8647.tif -------------------------------------------------------------------------------- /src/Zip Tests/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Selector.cs -------------------------------------------------------------------------------- /src/Zip Tests/SelfExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/SelfExtractor.cs -------------------------------------------------------------------------------- /src/Zip Tests/SplitArchives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/SplitArchives.cs -------------------------------------------------------------------------------- /src/Zip Tests/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Streams.cs -------------------------------------------------------------------------------- /src/Zip Tests/TestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/TestUtilities.cs -------------------------------------------------------------------------------- /src/Zip Tests/UnicodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/UnicodeTests.cs -------------------------------------------------------------------------------- /src/Zip Tests/UpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/UpdateTests.cs -------------------------------------------------------------------------------- /src/Zip Tests/WinZipAesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/WinZipAesTests.cs -------------------------------------------------------------------------------- /src/Zip Tests/Zip Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Zip Tests.csproj -------------------------------------------------------------------------------- /src/Zip Tests/Zip64Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/Zip64Tests.cs -------------------------------------------------------------------------------- /src/Zip Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/packages.config -------------------------------------------------------------------------------- /src/Zip Tests/zips/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/Book1.xlsx -------------------------------------------------------------------------------- /src/Zip Tests/zips/Calendar.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/Calendar.apk -------------------------------------------------------------------------------- /src/Zip Tests/zips/Vanishing Oatmeal Cookies.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/Vanishing Oatmeal Cookies.docx -------------------------------------------------------------------------------- /src/Zip Tests/zips/appnote-iz-latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/appnote-iz-latest.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/fireone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/fireone.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/plot.dwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/plot.dwf -------------------------------------------------------------------------------- /src/Zip Tests/zips/relative-paths-in-subdir-outside.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/relative-paths-in-subdir-outside.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/relative-paths-in-subdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/relative-paths-in-subdir.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/relative-paths-outside.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/relative-paths-outside.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/wi10330-badzip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/wi10330-badzip.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/wi11056.dwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/wi11056.dwf -------------------------------------------------------------------------------- /src/Zip Tests/zips/wi13668-bad-pwd-472713.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/wi13668-bad-pwd-472713.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/wi13892.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/wi13892.zip -------------------------------------------------------------------------------- /src/Zip Tests/zips/winzip-sfx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/winzip-sfx.exe -------------------------------------------------------------------------------- /src/Zip Tests/zips/wizzquiz.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip Tests/zips/wizzquiz.zip -------------------------------------------------------------------------------- /src/Zip.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zip.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/Zip.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /src/Zip.Android/Resources/Values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Android/Resources/Values/Strings.xml -------------------------------------------------------------------------------- /src/Zip.Android/Zip.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Android/Zip.Android.csproj -------------------------------------------------------------------------------- /src/Zip.Android/Zip.Android.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Android/Zip.Android.csproj.bak -------------------------------------------------------------------------------- /src/Zip.Shared/ComHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ComHelper.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/BlockType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/BlockType.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/Deflate64Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/Deflate64Stream.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/FileFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/FileFormats.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/HuffmanTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/HuffmanTree.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/InflaterManaged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/InflaterManaged.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/InflaterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/InflaterState.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/InputBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/InputBuffer.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/MatchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/MatchState.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Deflate64/OutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Deflate64/OutputWindow.cs -------------------------------------------------------------------------------- /src/Zip.Shared/EncryptionAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/EncryptionAlgorithm.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Events.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Exceptions.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ExtractExistingFileAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ExtractExistingFileAction.cs -------------------------------------------------------------------------------- /src/Zip.Shared/FileSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/FileSelector.cs -------------------------------------------------------------------------------- /src/Zip.Shared/OffsetStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/OffsetStream.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Shared.cs -------------------------------------------------------------------------------- /src/Zip.Shared/WinZipAes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/WinZipAes.cs -------------------------------------------------------------------------------- /src/Zip.Shared/Zip.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Zip.Shared.projitems -------------------------------------------------------------------------------- /src/Zip.Shared/Zip.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/Zip.Shared.shproj -------------------------------------------------------------------------------- /src/Zip.Shared/ZipConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipConstants.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipCrypto.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipDirEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipDirEntry.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipEntry.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipEntry.Extract.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipEntry.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipEntry.Read.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipEntry.Write.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipEntry.Write.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipEntry.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipEntrySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipEntrySource.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipErrorAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipErrorAction.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.AddUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.AddUpdate.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.Check.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.Events.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.Extract.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.Read.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.Save.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.Save.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.Selector.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.Static.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.Static.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipFile.x-IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipFile.x-IEnumerable.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipInputStream.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipOutputStream.cs -------------------------------------------------------------------------------- /src/Zip.Shared/ZipSegmentedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/ZipSegmentedStream.cs -------------------------------------------------------------------------------- /src/Zip.Shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/project.json -------------------------------------------------------------------------------- /src/Zip.Shared/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.Shared/project.lock.json -------------------------------------------------------------------------------- /src/Zip.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zip.iOS/Zip.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip.iOS/Zip.iOS.csproj -------------------------------------------------------------------------------- /src/Zip/Migrated rules for Zip DLL.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Migrated rules for Zip DLL.ruleset -------------------------------------------------------------------------------- /src/Zip/PackResources.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/PackResources.vbs -------------------------------------------------------------------------------- /src/Zip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zip/Resources/CommandLineSelfExtractorStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/CommandLineSelfExtractorStub.cs -------------------------------------------------------------------------------- /src/Zip/Resources/FolderBrowserDialogEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/FolderBrowserDialogEx.cs -------------------------------------------------------------------------------- /src/Zip/Resources/PasswordDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/PasswordDialog.Designer.cs -------------------------------------------------------------------------------- /src/Zip/Resources/PasswordDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/PasswordDialog.cs -------------------------------------------------------------------------------- /src/Zip/Resources/PasswordDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/PasswordDialog.resx -------------------------------------------------------------------------------- /src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs -------------------------------------------------------------------------------- /src/Zip/Resources/WinFormsSelfExtractorStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/WinFormsSelfExtractorStub.cs -------------------------------------------------------------------------------- /src/Zip/Resources/WinFormsSelfExtractorStub.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/WinFormsSelfExtractorStub.resx -------------------------------------------------------------------------------- /src/Zip/Resources/ZipContentsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/ZipContentsDialog.Designer.cs -------------------------------------------------------------------------------- /src/Zip/Resources/ZipContentsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/ZipContentsDialog.cs -------------------------------------------------------------------------------- /src/Zip/Resources/ZipContentsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/ZipContentsDialog.resx -------------------------------------------------------------------------------- /src/Zip/Resources/zippedFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/zippedFile.ico -------------------------------------------------------------------------------- /src/Zip/Resources/zippedResources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Resources/zippedResources.zip -------------------------------------------------------------------------------- /src/Zip/Zip DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/Zip DLL.csproj -------------------------------------------------------------------------------- /src/Zip/ZipFile.SaveSelfExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/ZipFile.SaveSelfExtractor.cs -------------------------------------------------------------------------------- /src/Zip/msbuild.flymake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zip/msbuild.flymake.xml -------------------------------------------------------------------------------- /src/ZipSrc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/ZipSrc.ps1 -------------------------------------------------------------------------------- /src/Zlib Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zlib Tests/Resources/zlibbed.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib Tests/Resources/zlibbed.file -------------------------------------------------------------------------------- /src/Zlib Tests/Zlib Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib Tests/Zlib Tests.csproj -------------------------------------------------------------------------------- /src/Zlib Tests/ZlibUnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib Tests/ZlibUnitTest1.cs -------------------------------------------------------------------------------- /src/Zlib.Portable/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Portable/Class1.cs -------------------------------------------------------------------------------- /src/Zlib.Portable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Portable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zlib.Portable/Zlib.Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Portable/Zlib.Portable.csproj -------------------------------------------------------------------------------- /src/Zlib.Shared/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/CRC32.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/Deflate.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/DeflateStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/DeflateStream.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/GZipStream.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/InfTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/InfTree.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/Inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/Inflate.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/ParallelDeflateOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/ParallelDeflateOutputStream.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/Tree.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/Zlib.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/Zlib.Shared.projitems -------------------------------------------------------------------------------- /src/Zlib.Shared/Zlib.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/Zlib.Shared.shproj -------------------------------------------------------------------------------- /src/Zlib.Shared/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/Zlib.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/ZlibBaseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/ZlibBaseStream.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/ZlibCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/ZlibCodec.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/ZlibConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/ZlibConstants.cs -------------------------------------------------------------------------------- /src/Zlib.Shared/ZlibStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib.Shared/ZlibStream.cs -------------------------------------------------------------------------------- /src/Zlib/LICENSE.jzlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib/LICENSE.jzlib.txt -------------------------------------------------------------------------------- /src/Zlib/License.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib/License.zlib.txt -------------------------------------------------------------------------------- /src/Zlib/LocalTestRun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib/LocalTestRun.testrunconfig -------------------------------------------------------------------------------- /src/Zlib/Zlib DLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib/Zlib DLL.csproj -------------------------------------------------------------------------------- /src/Zlib/properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib/properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Zlib/zlib-10.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/Zlib/zlib-10.vsmdi -------------------------------------------------------------------------------- /src/clean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haf/DotNetZip.Semverd/HEAD/src/clean.ps1 --------------------------------------------------------------------------------