I am trying to figure out how the dotnet core works, and therefore create some projects to play with it. I found a guide where they said that I had to run "dotnet new -t web" in order to create a more fully functional web application. But when I do this, he just says:
Invalid input switch:
-t
Template Instantiation Commands for .NET Core CLI.
Usage: dotnet new [arguments] [options]
Arguments:
template The template to instantiate.
Did they change it? And why don't any documents appear when I run "dotnet new", but only if I do "dotnet new mvc" or "dotnet new web". I am using Visual Studio Code.
Thanks in advance.
source
share