├── .gitignore ├── BuildProcessTemplates ├── DefaultTemplate.11.1.xaml ├── DefaultTemplate.xaml ├── LabDefaultTemplate.11.xaml └── UpgradeTemplate.xaml ├── SevenZip ├── 7z.dll ├── 7z64.dll ├── ArchiveEmulationStreamProxy.cs ├── ArchiveExtractCallback.cs ├── ArchiveOpenCallback.cs ├── ArchiveUpdateCallback.cs ├── COM.cs ├── Common.cs ├── EventArgs.cs ├── Exceptions.cs ├── FileSignatureChecker.cs ├── Formats.cs ├── LibraryFeature.cs ├── LibraryManager.cs ├── LzmaDecodeStream.cs ├── LzmaEncodeStream.cs ├── LzmaProgressCallback.cs ├── NativeMethods.cs ├── Properties │ └── AssemblyInfo.cs ├── SevenZip.csproj ├── SevenZip.sln ├── SevenZip.snk ├── SevenZip2010.csproj ├── SevenZip2010.sln ├── SevenZipCompressor.cs ├── SevenZipCompressorAsynchronous.cs ├── SevenZipExtractor.cs ├── SevenZipExtractorAsynchronous.cs ├── SevenZipSfx.cs ├── StreamWrappers.cs ├── arch │ ├── Test.bzip2.7z │ ├── Test.lzma.7z │ ├── Test.lzma2.7z │ ├── Test.ppmd.7z │ ├── Test.rar │ ├── Test.tar │ ├── Test.txt │ ├── Test.txt.bz2 │ ├── Test.txt.gz │ ├── Test.txt.xz │ └── Test.zip ├── gpl.txt ├── lgpl.txt ├── sdk │ ├── Common │ │ ├── CRC.cs │ │ ├── InBuffer.cs │ │ └── OutBuffer.cs │ ├── Compress │ │ ├── LZ │ │ │ ├── IMatchFinder.cs │ │ │ ├── LzBinTree.cs │ │ │ ├── LzInWindow.cs │ │ │ └── LzOutWindow.cs │ │ ├── LZMA │ │ │ ├── LzmaBase.cs │ │ │ ├── LzmaDecoder.cs │ │ │ └── LzmaEncoder.cs │ │ └── RangeCoder │ │ │ ├── RangeCoder.cs │ │ │ ├── RangeCoderBit.cs │ │ │ └── RangeCoderBitTree.cs │ └── ICoder.cs └── sfx │ ├── 7z.sfx │ ├── 7zCon.sfx │ ├── 7zS.sfx │ ├── 7zSD.sfx │ ├── 7zxSD_All.sfx │ ├── 7zxSD_All_x64.sfx │ ├── 7zxSD_Deflate.sfx │ ├── 7zxSD_Deflate_x64.sfx │ ├── 7zxSD_LZMA.sfx │ ├── 7zxSD_LZMA2.sfx │ ├── 7zxSD_LZMA2_x64.sfx │ ├── 7zxSD_LZMA_x64.sfx │ ├── 7zxSD_PPMd.sfx │ ├── 7zxSD_PPMd_x64.sfx │ ├── Configs.xml │ ├── Configs.xsd │ ├── Configs.xslt │ └── sample.txt ├── SevenZipMono ├── AssemblyInfo.cs ├── Packages.mdproj ├── SevenZipMono.csproj ├── SevenZipMono.sln ├── SevenZipMonoTest │ ├── AssemblyInfo.cs │ ├── Main.cs │ └── SevenZipMonoTest.csproj ├── arch │ ├── Test.bzip2.7z │ ├── Test.lzma.7z │ ├── Test.lzma2.7z │ ├── Test.ppmd.7z │ ├── Test.rar │ ├── Test.tar │ ├── Test.txt │ ├── Test.txt.bz2 │ ├── Test.txt.gz │ ├── Test.txt.xz │ └── Test.zip └── sdk │ ├── Common │ ├── CRC.cs │ ├── InBuffer.cs │ └── OutBuffer.cs │ ├── Compress │ ├── LZ │ │ ├── IMatchFinder.cs │ │ ├── LzBinTree.cs │ │ ├── LzInWindow.cs │ │ └── LzOutWindow.cs │ ├── LZMA │ │ ├── LzmaBase.cs │ │ ├── LzmaDecoder.cs │ │ └── LzmaEncoder.cs │ └── RangeCoder │ │ ├── RangeCoder.cs │ │ ├── RangeCoderBit.cs │ │ └── RangeCoderBitTree.cs │ └── ICoder.cs ├── SevenZipSharpMobile ├── 7z.dll ├── OpenNetCF │ └── OpenNETCF.dll ├── Properties │ └── AssemblyInfo.cs ├── SevenZipSharpMobile.csproj ├── arch │ ├── Test.bzip2.7z │ ├── Test.lzma.7z │ ├── Test.lzma2.7z │ ├── Test.ppmd.7z │ ├── Test.rar │ ├── Test.tar │ ├── Test.txt │ ├── Test.txt.bz2 │ ├── Test.txt.gz │ ├── Test.txt.xz │ └── Test.zip ├── gpl.txt └── sdk │ ├── Common │ ├── CRC.cs │ ├── InBuffer.cs │ └── OutBuffer.cs │ ├── Compress │ ├── LZ │ │ ├── IMatchFinder.cs │ │ ├── LzBinTree.cs │ │ ├── LzInWindow.cs │ │ └── LzOutWindow.cs │ ├── LZMA │ │ ├── LzmaBase.cs │ │ ├── LzmaDecoder.cs │ │ └── LzmaEncoder.cs │ └── RangeCoder │ │ ├── RangeCoder.cs │ │ ├── RangeCoderBit.cs │ │ └── RangeCoderBitTree.cs │ └── ICoder.cs ├── SevenZipSharpMobileTest ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SevenZipSharpMobileTest.csproj └── gpl.7z ├── SevenZipTest ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SevenZipTest.csproj ├── SevenZipTest2010.csproj └── app.config ├── SevenZipTestForms ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SevenZipTestForms.csproj └── app.config ├── SevenZipTestWPF ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── References │ ├── FolderBrowser.dll │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ └── Microsoft.WindowsAPICodePack.dll └── SevenZipTestWPF.csproj ├── appveyor.yml ├── license ├── package.nuspec └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | Backup/ 3 | *.user 4 | bin/ 5 | obj/ 6 | /SevenZip/UpgradeLog.htm 7 | -------------------------------------------------------------------------------- /BuildProcessTemplates/DefaultTemplate.11.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/BuildProcessTemplates/DefaultTemplate.11.1.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/DefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/BuildProcessTemplates/DefaultTemplate.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/LabDefaultTemplate.11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/BuildProcessTemplates/LabDefaultTemplate.11.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /SevenZip/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/7z.dll -------------------------------------------------------------------------------- /SevenZip/7z64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/7z64.dll -------------------------------------------------------------------------------- /SevenZip/ArchiveEmulationStreamProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/ArchiveEmulationStreamProxy.cs -------------------------------------------------------------------------------- /SevenZip/ArchiveExtractCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/ArchiveExtractCallback.cs -------------------------------------------------------------------------------- /SevenZip/ArchiveOpenCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/ArchiveOpenCallback.cs -------------------------------------------------------------------------------- /SevenZip/ArchiveUpdateCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/ArchiveUpdateCallback.cs -------------------------------------------------------------------------------- /SevenZip/COM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/COM.cs -------------------------------------------------------------------------------- /SevenZip/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/Common.cs -------------------------------------------------------------------------------- /SevenZip/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/EventArgs.cs -------------------------------------------------------------------------------- /SevenZip/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/Exceptions.cs -------------------------------------------------------------------------------- /SevenZip/FileSignatureChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/FileSignatureChecker.cs -------------------------------------------------------------------------------- /SevenZip/Formats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/Formats.cs -------------------------------------------------------------------------------- /SevenZip/LibraryFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/LibraryFeature.cs -------------------------------------------------------------------------------- /SevenZip/LibraryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/LibraryManager.cs -------------------------------------------------------------------------------- /SevenZip/LzmaDecodeStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/LzmaDecodeStream.cs -------------------------------------------------------------------------------- /SevenZip/LzmaEncodeStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/LzmaEncodeStream.cs -------------------------------------------------------------------------------- /SevenZip/LzmaProgressCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/LzmaProgressCallback.cs -------------------------------------------------------------------------------- /SevenZip/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/NativeMethods.cs -------------------------------------------------------------------------------- /SevenZip/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZip/SevenZip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZip.csproj -------------------------------------------------------------------------------- /SevenZip/SevenZip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZip.sln -------------------------------------------------------------------------------- /SevenZip/SevenZip.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZip.snk -------------------------------------------------------------------------------- /SevenZip/SevenZip2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZip2010.csproj -------------------------------------------------------------------------------- /SevenZip/SevenZip2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZip2010.sln -------------------------------------------------------------------------------- /SevenZip/SevenZipCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZipCompressor.cs -------------------------------------------------------------------------------- /SevenZip/SevenZipCompressorAsynchronous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZipCompressorAsynchronous.cs -------------------------------------------------------------------------------- /SevenZip/SevenZipExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZipExtractor.cs -------------------------------------------------------------------------------- /SevenZip/SevenZipExtractorAsynchronous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZipExtractorAsynchronous.cs -------------------------------------------------------------------------------- /SevenZip/SevenZipSfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/SevenZipSfx.cs -------------------------------------------------------------------------------- /SevenZip/StreamWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/StreamWrappers.cs -------------------------------------------------------------------------------- /SevenZip/arch/Test.bzip2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.bzip2.7z -------------------------------------------------------------------------------- /SevenZip/arch/Test.lzma.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.lzma.7z -------------------------------------------------------------------------------- /SevenZip/arch/Test.lzma2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.lzma2.7z -------------------------------------------------------------------------------- /SevenZip/arch/Test.ppmd.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.ppmd.7z -------------------------------------------------------------------------------- /SevenZip/arch/Test.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.rar -------------------------------------------------------------------------------- /SevenZip/arch/Test.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.tar -------------------------------------------------------------------------------- /SevenZip/arch/Test.txt: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /SevenZip/arch/Test.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.txt.bz2 -------------------------------------------------------------------------------- /SevenZip/arch/Test.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.txt.gz -------------------------------------------------------------------------------- /SevenZip/arch/Test.txt.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.txt.xz -------------------------------------------------------------------------------- /SevenZip/arch/Test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/arch/Test.zip -------------------------------------------------------------------------------- /SevenZip/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/gpl.txt -------------------------------------------------------------------------------- /SevenZip/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/lgpl.txt -------------------------------------------------------------------------------- /SevenZip/sdk/Common/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Common/CRC.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Common/InBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Common/InBuffer.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Common/OutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Common/OutBuffer.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/LZ/IMatchFinder.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/RangeCoder/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/RangeCoder/RangeCoder.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/RangeCoder/RangeCoderBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/RangeCoder/RangeCoderBit.cs -------------------------------------------------------------------------------- /SevenZip/sdk/Compress/RangeCoder/RangeCoderBitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/Compress/RangeCoder/RangeCoderBitTree.cs -------------------------------------------------------------------------------- /SevenZip/sdk/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sdk/ICoder.cs -------------------------------------------------------------------------------- /SevenZip/sfx/7z.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7z.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zCon.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zCon.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zS.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zS.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zSD.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zSD.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_All.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_All.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_All_x64.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_All_x64.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_Deflate.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_Deflate.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_Deflate_x64.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_Deflate_x64.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_LZMA.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_LZMA.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_LZMA2.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_LZMA2.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_LZMA2_x64.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_LZMA2_x64.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_LZMA_x64.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_LZMA_x64.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_PPMd.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_PPMd.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/7zxSD_PPMd_x64.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/7zxSD_PPMd_x64.sfx -------------------------------------------------------------------------------- /SevenZip/sfx/Configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/Configs.xml -------------------------------------------------------------------------------- /SevenZip/sfx/Configs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/Configs.xsd -------------------------------------------------------------------------------- /SevenZip/sfx/Configs.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/Configs.xslt -------------------------------------------------------------------------------- /SevenZip/sfx/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZip/sfx/sample.txt -------------------------------------------------------------------------------- /SevenZipMono/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZipMono/Packages.mdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/Packages.mdproj -------------------------------------------------------------------------------- /SevenZipMono/SevenZipMono.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/SevenZipMono.csproj -------------------------------------------------------------------------------- /SevenZipMono/SevenZipMono.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/SevenZipMono.sln -------------------------------------------------------------------------------- /SevenZipMono/SevenZipMonoTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/SevenZipMonoTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZipMono/SevenZipMonoTest/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/SevenZipMonoTest/Main.cs -------------------------------------------------------------------------------- /SevenZipMono/SevenZipMonoTest/SevenZipMonoTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/SevenZipMonoTest/SevenZipMonoTest.csproj -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.bzip2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.bzip2.7z -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.lzma.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.lzma.7z -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.lzma2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.lzma2.7z -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.ppmd.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.ppmd.7z -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.rar -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.tar -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.txt: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.txt.bz2 -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.txt.gz -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.txt.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.txt.xz -------------------------------------------------------------------------------- /SevenZipMono/arch/Test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/arch/Test.zip -------------------------------------------------------------------------------- /SevenZipMono/sdk/Common/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Common/CRC.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Common/InBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Common/InBuffer.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Common/OutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Common/OutBuffer.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/LZ/IMatchFinder.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/RangeCoder/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/RangeCoder/RangeCoder.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/RangeCoder/RangeCoderBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/RangeCoder/RangeCoderBit.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/Compress/RangeCoder/RangeCoderBitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/Compress/RangeCoder/RangeCoderBitTree.cs -------------------------------------------------------------------------------- /SevenZipMono/sdk/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipMono/sdk/ICoder.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/7z.dll -------------------------------------------------------------------------------- /SevenZipSharpMobile/OpenNetCF/OpenNETCF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/OpenNetCF/OpenNETCF.dll -------------------------------------------------------------------------------- /SevenZipSharpMobile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/SevenZipSharpMobile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/SevenZipSharpMobile.csproj -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.bzip2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.bzip2.7z -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.lzma.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.lzma.7z -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.lzma2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.lzma2.7z -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.ppmd.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.ppmd.7z -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.rar -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.tar -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.txt: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.txt.bz2 -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.txt.gz -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.txt.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.txt.xz -------------------------------------------------------------------------------- /SevenZipSharpMobile/arch/Test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/arch/Test.zip -------------------------------------------------------------------------------- /SevenZipSharpMobile/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/gpl.txt -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Common/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Common/CRC.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Common/InBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Common/InBuffer.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Common/OutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Common/OutBuffer.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/LZ/IMatchFinder.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/RangeCoder/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/RangeCoder/RangeCoder.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/RangeCoder/RangeCoderBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/RangeCoder/RangeCoderBit.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/Compress/RangeCoder/RangeCoderBitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/Compress/RangeCoder/RangeCoderBitTree.cs -------------------------------------------------------------------------------- /SevenZipSharpMobile/sdk/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobile/sdk/ICoder.cs -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/FormMain.Designer.cs -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/FormMain.cs -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/FormMain.resx -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/Program.cs -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/Properties/Resources.resx -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/SevenZipSharpMobileTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/SevenZipSharpMobileTest.csproj -------------------------------------------------------------------------------- /SevenZipSharpMobileTest/gpl.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipSharpMobileTest/gpl.7z -------------------------------------------------------------------------------- /SevenZipTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTest/Program.cs -------------------------------------------------------------------------------- /SevenZipTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZipTest/SevenZipTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTest/SevenZipTest.csproj -------------------------------------------------------------------------------- /SevenZipTest/SevenZipTest2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTest/SevenZipTest2010.csproj -------------------------------------------------------------------------------- /SevenZipTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTest/app.config -------------------------------------------------------------------------------- /SevenZipTestForms/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/FormMain.Designer.cs -------------------------------------------------------------------------------- /SevenZipTestForms/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/FormMain.cs -------------------------------------------------------------------------------- /SevenZipTestForms/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/FormMain.resx -------------------------------------------------------------------------------- /SevenZipTestForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/Program.cs -------------------------------------------------------------------------------- /SevenZipTestForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZipTestForms/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SevenZipTestForms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/Properties/Resources.resx -------------------------------------------------------------------------------- /SevenZipTestForms/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SevenZipTestForms/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/Properties/Settings.settings -------------------------------------------------------------------------------- /SevenZipTestForms/SevenZipTestForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/SevenZipTestForms.csproj -------------------------------------------------------------------------------- /SevenZipTestForms/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestForms/app.config -------------------------------------------------------------------------------- /SevenZipTestWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/App.xaml -------------------------------------------------------------------------------- /SevenZipTestWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/App.xaml.cs -------------------------------------------------------------------------------- /SevenZipTestWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/MainWindow.xaml -------------------------------------------------------------------------------- /SevenZipTestWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SevenZipTestWPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SevenZipTestWPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SevenZipTestWPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/Properties/Resources.resx -------------------------------------------------------------------------------- /SevenZipTestWPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SevenZipTestWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/Properties/Settings.settings -------------------------------------------------------------------------------- /SevenZipTestWPF/References/FolderBrowser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/References/FolderBrowser.dll -------------------------------------------------------------------------------- /SevenZipTestWPF/References/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/References/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /SevenZipTestWPF/References/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/References/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /SevenZipTestWPF/SevenZipTestWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/SevenZipTestWPF/SevenZipTestWPF.csproj -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/appveyor.yml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/license -------------------------------------------------------------------------------- /package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/package.nuspec -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomap/SevenZipSharp/HEAD/readme.md --------------------------------------------------------------------------------