mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-04 13:34:59 +00:00
Drop .NET 6, .NET Standard 2.0, .NET 4.8.1, add .NET 10 support #737
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?
Originally created by @adamhathcock on GitHub (Nov 29, 2025).
Originally assigned to: @Copilot on GitHub.
Now that dotnet 10 is out, dotnet 6 should be dropped.
Probably dropping net standard too?
Should double check supported frameworks against windows.
@Otiel commented on GitHub (Jan 8, 2026):
Is there any incentive in dropping .NET Standard 2.0?
I have a library using
SharpCompressthat targets .NET Standard 2.0 because I use it widely used in projects that targets .NET Framework 4.8 and .NET 8+. I cannot upgrade to the recent versions ofSharpCompressbecause of this breaking change.@adamhathcock commented on GitHub (Jan 8, 2026):
I dropped it just to have less targets and no arguments (so far)
Adding it back appears to not be a problem since I still support legacy framework 4.8.
@adamhathcock commented on GitHub (Jan 8, 2026):
Try https://www.nuget.org/packages/SharpCompress/0.45.0-beta.10
@Otiel commented on GitHub (Jan 8, 2026):
Thanks, that works! ❤️