Skip to content

.Net Starter

Create .NET Project

Console Based Application

dotnet new console -n AppName

or

dotnet new console --name AppName

Web Based Application

dotnet new web -n AppName

or

dotnet new web --name AppName

MVC Web Application

dotnet new mvc -n AppName

or ``` dotnet new mvc --name AppName