I installed Visual Studio 2019 Community 16.6.1 (the latest update) at B:\Program Files (x86)\Microsoft Visual Studio\2019\Community on a Windows 10 x64 bit.
Afterwards, I also installed dotnet-sdk-3.1.300-win-x64.exe with its default path C:\Program Files\dotnet. They are in different drives.
I create new Blazor Webassembly projects consisting of
ProjectName.Serverwith target framework set to .net core 3.1 by default.ProjectName.Sharedwith target framework set to .net core 2.1 by default.ProjectName.Clientwith target framework set to .net core 2.1 by default.
I attempted to change the last two projects above to .net core 3.1 but the target framework dropdown does not provide me with .net core 3.1 option.
Question
Why is there no .net core 3.1 option available to choose? What is wrong?