July 2017
Beginner
466 pages
9h 37m
English
There are three different types of ASP.NET Core project templates available to use, which are the Empty ASP.NET Core web application (identified as web), MVC ASP.NET Core web application (identified as mvc), and Web API ASP.NET Core web application (identified as webapi). Among these, only the MVC web app currently has support for both the C# and F# languages.
To create an empty ASP.NET core application, enter the following command in the console window:
dotnet new web -n <ProjectName>
To create an MVC-based ASP.NET web app, enter the following command:
dotnet new mvc -n <ProjectName>
To create an ASP.NET MVC web application with no authentication, enter the following:
dotnet new mvc -au None -n ...Read now
Unlock full access