What command would you typically use to create a new ASP.NET Core web application using the .NET Core CLI?

  • dotnet new web
  • dotnet build
  • dotnet run
  • dotnet publish
The correct command to create a new ASP.NET Core web application using the .NET Core CLI is dotnet new web. This command sets up a basic web application template for you to start building upon.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *