-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
.NET Framework support dropped from v5.0 #2084
Comments
Yes, PLEASE include support for .NET Framework 4.7 and above. This is very important for me, too. |
@wazzamatazz @TimMakins you can continue using v4, as it "will receive hotfixes but no new features."
just for curiosity: What's the reason to keep using .NET Framework 4.7.2 in a client-side application? |
In my case, it's because of some upstream dependencies that mean that we can't move off of .NET Framework entirely. We integrate with a lot of industrial process systems and in some cases (particularly with older systems) the vendor SDKs explicitly only support .NET Framework because they make extensive use of features like AppDomains. |
In my case, it is because I use Visual Basic.Net to create Windows Forms Desktop applications, using .NET Framework 4.8. To move over to Net 8.0 would mean converting everything to C# and re-writing tens of thousands of lines of code, plus coping with the many significant changes that .NET Framework 4.8 > Net 8.0 involves. |
My use-case is a visual studio extension, it requires using 4.7.2. |
Version 4 will still be around and receive bug fixes and probably some features. |
Great, good to know it will still get bug fixes, etc. I apologize if this is stated somewhere - is it possible to use the 4.x client with a 5+ server? |
Describe your question
I note that support for all frameworks except for
net8.0
is being dropped from MQTTnet 5.0. In the upgrade guide it mentions that one of the reasons for dropping support is to make use of types such asMemory<T>
andSpan<T>
. However, these types are already available on earlier versions of .NET and .NET Framework via the System.Memory package.I understand the desire to drop support for older frameworks but .NET Framework is still supported by Microsoft with no support end date currently scheduled for .NET Framework 4.7 and above (see here). With this in mind it would be great if the MQTTnet client could continue to support .NET Framework in some way even if server support was going to end.
Which project is your question related to?
The text was updated successfully, but these errors were encountered: