icsharpcode / SharpZipLib

#ziplib is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform.
http://icsharpcode.github.io/SharpZipLib/
MIT License
3.7k stars 976 forks source link

.NET 4.8 Framework Support? #804

Closed devmaestro1 closed 1 year ago

devmaestro1 commented 1 year ago

Hello,

I noticed that as of v1.4.0 support for .NET 4.5 Framework has been dropped in favor of .NET 6. I'm not sure why SharpZipLib wouldn't also support .NET 4.8 Framework since it is LTS and shouldn't require any code changes? Are future SharpZipLib releases no longer going to guarantee being able to compile under the .NET 4.8 framework?

Thanks.

piksel commented 1 year ago

.NET 4.8 support has not been dropped. It's supported via the .NET Standard target, and will likely continue to be supported as long as it's seeing large usage and/or until it's EOL.

devmaestro1 commented 1 year ago

Thank you for the clarification!