I needed to install .Net Core SDK 2.2 for a new project. I was using VS2017 and I installed dotnet-sdk-2.2.203-win-x64 which did not work. It never showed up on the Target Framework in my project properties. Removing that, I installed dotnet-sdk-2.2.106-win-x64 which worked.
That made me realize that there are different .net core installers for VS 2017 and 2019. Refer: https://dotnet.microsoft.com/download/visual-studio-sdks?utm_source=getdotnetsdk&utm_medium=referral
I wonder why is that so? Could someone tell or direct to some blog/documentation?
Thanks!