Creating New project in ASP.NET Core

Prerequisites:

  • Install Dot NET core SDK

Steps:

Step 1: List options with New command along with the list of available templates

dotnet new -l

Step 2: Create a new project with the dotnet new command and the preferred template:

dotnet new webapi