[PR #482] [MERGED] NET Standard 1.3 and 2.0 only #1044

Open
opened 2026-01-29 22:18:46 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/482
Author: @adamhathcock
Created: 9/17/2019
Status: Merged
Merged: 10/10/2019
Merged by: @adamhathcock

Base: masterHead: upgrade


📝 Commits (6)

  • 742821a Remove NET35, NET45 and NET Standard 1.0
  • 0e411b6 Update README and memset
  • 50e1afc Remove NETCORE build flag
  • 0aaac3c Merge branch 'master' into upgrade
  • 05ec40b NET 46 too?
  • 381b820 Update packages and usage

📊 Changes

42 files changed (+44 additions, -300 deletions)

View changed files

📝 README.md (+1 -1)
📝 build.cake (+1 -4)
📝 src/SharpCompress/Archives/AbstractArchive.cs (+1 -3)
📝 src/SharpCompress/Archives/AbstractWritableArchive.cs (+0 -2)
📝 src/SharpCompress/Archives/ArchiveFactory.cs (+0 -4)
📝 src/SharpCompress/Archives/GZip/GZipArchive.cs (+0 -6)
📝 src/SharpCompress/Archives/IArchiveEntryExtensions.cs (+4 -7)
📝 src/SharpCompress/Archives/IArchiveExtensions.cs (+4 -10)
📝 src/SharpCompress/Archives/IWritableArchiveExtensions.cs (+1 -10)
📝 src/SharpCompress/Archives/Rar/FileInfoRarArchiveVolume.cs (+1 -4)
📝 src/SharpCompress/Archives/Rar/FileInfoRarFilePart.cs (+1 -4)
📝 src/SharpCompress/Archives/Rar/RarArchive.cs (+1 -10)
📝 src/SharpCompress/Archives/Rar/RarArchiveVolumeFactory.cs (+1 -6)
📝 src/SharpCompress/Archives/Rar/SeekableFilePart.cs (+0 -2)
📝 src/SharpCompress/Archives/SevenZip/SevenZipArchive.cs (+0 -5)
📝 src/SharpCompress/Archives/Tar/TarArchive.cs (+1 -10)
📝 src/SharpCompress/Archives/Zip/ZipArchive.cs (+3 -12)
📝 src/SharpCompress/Common/ArchiveEncoding.cs (+0 -7)
📝 src/SharpCompress/Common/ExtractionMethods.cs (+1 -6)
📝 src/SharpCompress/Common/GZip/GZipVolume.cs (+0 -2)

...and 22 more files

📄 Description

Removes a lot of the build flags for old platforms

#470


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/adamhathcock/sharpcompress/pull/482 **Author:** [@adamhathcock](https://github.com/adamhathcock) **Created:** 9/17/2019 **Status:** ✅ Merged **Merged:** 10/10/2019 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `upgrade` --- ### 📝 Commits (6) - [`742821a`](https://github.com/adamhathcock/sharpcompress/commit/742821a6fe41da145da4772c85a90582207f2efd) Remove NET35, NET45 and NET Standard 1.0 - [`0e411b6`](https://github.com/adamhathcock/sharpcompress/commit/0e411b6010e3d666436d6eaccb366a262239fe25) Update README and memset - [`50e1afc`](https://github.com/adamhathcock/sharpcompress/commit/50e1afced00180352210c3be0b519272a6784a01) Remove NETCORE build flag - [`0aaac3c`](https://github.com/adamhathcock/sharpcompress/commit/0aaac3ca7cb30966f0c60a733aea0c6b9542e541) Merge branch 'master' into upgrade - [`05ec40b`](https://github.com/adamhathcock/sharpcompress/commit/05ec40b8bc2ee5ad0a926edc15418d14aca45ad1) NET 46 too? - [`381b820`](https://github.com/adamhathcock/sharpcompress/commit/381b820b6c8931936b4aa80035459005ac4c6681) Update packages and usage ### 📊 Changes **42 files changed** (+44 additions, -300 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `build.cake` (+1 -4) 📝 `src/SharpCompress/Archives/AbstractArchive.cs` (+1 -3) 📝 `src/SharpCompress/Archives/AbstractWritableArchive.cs` (+0 -2) 📝 `src/SharpCompress/Archives/ArchiveFactory.cs` (+0 -4) 📝 `src/SharpCompress/Archives/GZip/GZipArchive.cs` (+0 -6) 📝 `src/SharpCompress/Archives/IArchiveEntryExtensions.cs` (+4 -7) 📝 `src/SharpCompress/Archives/IArchiveExtensions.cs` (+4 -10) 📝 `src/SharpCompress/Archives/IWritableArchiveExtensions.cs` (+1 -10) 📝 `src/SharpCompress/Archives/Rar/FileInfoRarArchiveVolume.cs` (+1 -4) 📝 `src/SharpCompress/Archives/Rar/FileInfoRarFilePart.cs` (+1 -4) 📝 `src/SharpCompress/Archives/Rar/RarArchive.cs` (+1 -10) 📝 `src/SharpCompress/Archives/Rar/RarArchiveVolumeFactory.cs` (+1 -6) 📝 `src/SharpCompress/Archives/Rar/SeekableFilePart.cs` (+0 -2) 📝 `src/SharpCompress/Archives/SevenZip/SevenZipArchive.cs` (+0 -5) 📝 `src/SharpCompress/Archives/Tar/TarArchive.cs` (+1 -10) 📝 `src/SharpCompress/Archives/Zip/ZipArchive.cs` (+3 -12) 📝 `src/SharpCompress/Common/ArchiveEncoding.cs` (+0 -7) 📝 `src/SharpCompress/Common/ExtractionMethods.cs` (+1 -6) 📝 `src/SharpCompress/Common/GZip/GZipVolume.cs` (+0 -2) _...and 22 more files_ </details> ### 📄 Description Removes a lot of the build flags for old platforms #470 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 22:18:46 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1044