You can use the dotnet cli tool (command line interface) to create these basic .NET web projects. It is a cross-platform platform, so you can use it also on Mac or Linux.
Create the dir / directory for the project. In the console, enter the following.
folder-name>dotnet new -t web
Then open the project in VS Code by typing the following:
folder-name>code .
That is, with a period at the end and press enter.
source
share