After writing your ASP.NET Core application code, you want to build and run your application using a command-line tool. Which tool would you use for this purpose?

  • dotnet build
  • npm start
  • ng serve
  • python run
To build and run an ASP.NET Core application from the command line, you would use the dotnet build command. This command compiles your application and prepares it for execution.
Add your answer
Loading...

Leave a comment

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