You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I thought net472 was preferred for proper netstandard2.0 compatibility because it wasn't quite right in earlier versions?
netcoreapp3.1 is out of support now and has less APIs than are available in net6.0 and net7.0, so if we were going to drop anything I'd just drop net7.0 (unless there's some APIs were using from it that help performance).
I think we want to keep net472;net462 for backwards compatibility for v7 users still on .NET Framework.
I think that would leave us with:
For 8.0.0: net6.0;netstandard2.0;net472;net462
For 8.x.x: net8.0;net6.0;netstandard2.0;net472;net462
I think that's a net change of just dropping net7.0, but we could drop net6.0 too if there's nothing useful we're using from it.
Looking on our build targets in #1360 it looks like:
Can we trim these down?
For example:
net472
(not necessary since we havenet462
)net6.0
andnet7.0
in favor ofnetcoreapp3.1
?The text was updated successfully, but these errors were encountered: