This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
What do you need to install at a minimum to create and run ASP.NET Core apps?
Visual Studio
Node.js
Visual Studio Code
.NET SDK
What are ASP.NET Core project templates used for?
Only for creating empty web projects.
To quickly create various new preconfigured projects with the files and structure needed to get started.
They're only useful for creating console apps.
What .NET CLI command is used to create a new ASP.NET Core web app project from a project template?
dotnet new <template-name>
dotnet create-project <template-name>
dotnet init-project <template-name>
When should the .NET CLI command dotnet watch be used instead of dotnet run?
dotnet watch
dotnet run
When you want to debug your application with detailed logging.
When you want to run your application with a different framework version.
When you want to run your application with automatic recompilation on file changes.
You must answer all questions before checking your work.
Was this page helpful?