-
Notifications
You must be signed in to change notification settings - Fork 47
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 support for legacy target target framework #72
Comments
Windows desktop applications(winforms/wpf) isn't fully supported in .NET Core, starting with the .NET 5.0 release, it’s not a problem anymore. |
Is this because of alpn on sslstream? |
Yeah |
But isn't it available in netstandard2.1? |
@maksimkim https://github.com/cuteant/SpanNetty/blob/main/src/DotNetty.Common/Internal/TextEncodings.Utf8.NetCore3.cs |
what I thought was to provide a unified impl(for encoding/span) that could be called by dotnetty.buffer in every targetframework...... |
and also , like this code: SpanNetty/src/DotNetty.Buffers/PooledUnsafeDirectByteBuffer.cs Lines 113 to 115 in 46f4abe
is able to execute in netcoreapp2.1 but not in .net standard 2.0 |
Seems like explicit support for net451,net471,netcore2.1,netcore3.1 complicates dependency management.
Does it make sense to completely drop support for net451 and support the rest through netstandard 2.0?
So list of supported versions will reduce to netstanard2.0, netstandard2.1, net5.0.
The text was updated successfully, but these errors were encountered: