Let's say that I'm using Core 3.0 with Blazor templates installed
My VS updated and downloaded sdk 3.1 preview X
and now my dotnet cli works in 3.1 preview
by default
so using dotnet new
doesn't show my installed Blazor templates that I installed while using 3.0
I tried those commands to at least see name of previous templates or actually create 3.0
Blazor project, but nothing works
dotnet new --sdk-version "3.0.100-preview7-012821"
dotnet new --framework "netcoreapp3.0"
# Invalid input switch:--sdk-version3.0.100-preview7-012821
How can I list dotnet new
templates for previous sdk/framework and then actually create them?