mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-04 05:25:00 +00:00
[PR #217] [CLOSED] Added Support For .Net Framework 2.0 #906
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/217
Author: @fox564
Created: 4/1/2017
Status: ❌ Closed
Base:
master← Head:master📝 Commits (1)
a9b5667Added Support For .Net Framework 2.0 because lets face it, its still being used.📊 Changes
257 files changed (+44473 additions, -0 deletions)
View changed files
➕
src/SharpCompressForDotNetFramework2.0/SharpCompress.sln(+42 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/AbstractArchive.cs(+207 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/AbstractWritableArchive.Extensions.cs(+87 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/AbstractWritableArchive.cs(+121 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/ArchiveFactory.cs(+168 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/GZip/GZipArchive.cs(+211 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/GZip/GZipArchiveEntry.cs(+44 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/GZip/GZipWritableArchiveEntry.cs(+96 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/IArchive.Extensions.cs(+22 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/IArchive.cs(+53 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/IArchiveEntry.Extensions.cs(+66 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/IArchiveEntry.cs(+21 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/FileInfoRarArchiveVolume.cs(+62 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/FileInfoRarFilePart.cs(+40 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/RarArchive.Extensions.cs(+31 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/RarArchive.cs(+209 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/RarArchiveEntry.cs(+121 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/RarArchiveEntryFactory.cs(+49 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/RarArchiveVolumeFactory.cs(+146 -0)➕
src/SharpCompressForDotNetFramework2.0/SharpCompress/Archive/Rar/SeekableStreamFilePart.cs(+35 -0)...and 80 more files
📄 Description
Added Support For .Net Framework 2.0 because lets face it, its still being used.
Todo:
-Convert to vb.net
Why Do i need vb.net while i can just add it as a reference?
well some developers like me do not like using other dll files to avoid file not found or using it as embedded reference and load it in runtime.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.