In ASP.NET CORE we can create the project through CLI, For example you need to create a project named Contoso, You need to create a folder Contoso.On Windows you can simply do it using md command, like md Contoso// This will create a folder Contosocd Contoso// Your are now in Cotoso folder.Now you can simply type Dotnet new, This will show you the list of project type which is available on your system. You will see something like thisNow you can simple use any option you want, for example dotnet ......