-
-
Notifications
You must be signed in to change notification settings - Fork 934
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop net7.0 target #1468
base: develop
Are you sure you want to change the base?
Drop net7.0 target #1468
Conversation
.NET 7 is EOL since May. The only .NET 7 features we use are `ObjectDisposedException.ThrowIf` (moved to a throw helper) and some newer regex features. This feels a bit weird, but I suppose it is the expected course of action.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we make a release without this and merge it later for next release?
Sure |
Does it hurt us to keep supporting .NET 7.0? Do we want to be so agressive in removing support for TFMs that are EOL? |
It is obviously not a great hinderance atm, as there is not much net7.0-specific code. That's also a reason to drop it without ill effect. IMO it is not much more nuanced than: if Microsoft don't support it, then why should we? Anyway, let's do another release and re-evaluate for the one after. |
Also note that dropping net7.0 doesn't actually prevent net7.0 applications from using SSH.NET . They will just fall back to the |
# Conflicts: # src/Renci.SshNet/BaseClient.cs # src/Renci.SshNet/Common/ThrowHelper.cs # src/Renci.SshNet/SubsystemSession.cs
.NET 7 is EOL since May. The only .NET 7 features we use are
ObjectDisposedException.ThrowIf
(moved to a throw helper) and some newer regex features.This feels a bit weird, but I suppose it is the expected course of action.