Is it known whether NET 5 will require new VS version (ie. 2021)? I'd love to upgrade to net core 3 but I don't want to upgrade everything again in a couple of months.
We had a lot of pain upgrading to .NET core 3.0 and 3.1, there were some subtle breaking changes (like dotnet build doing a restore whereas it didn't before, causing nasty runtime issues with platform dependent dependencies like SqlClient). If you haven't done the upgrade yet, plan plenty of time for it, and smoke test the heck out of it before you go live.
Also ensure you're on the latest (1.1.1) version of SqlClient if you use SQL Server.
That's just been the case for 2.1 and 3.1, future versions will jump a version each year (next is v5) with every other year being LTS. Of course, we'll see if it actually goes as planned. I don't think I've seen them change course from the announcement last year.
10 comments
[ 4.0 ms ] story [ 37.9 ms ] threadIf the dev env upgrade burden is a topic, go for the LTS versions.
Also ensure you're on the latest (1.1.1) version of SqlClient if you use SQL Server.
https://devblogs.microsoft.com/dotnet/introducing-net-5/