An Enthusiastic Programmer

ASP.NET Core

|

ASP.NET Core is an open-source(link), cross-platform, and free platform, which mainly targets run on .NET Core.

ASP.NET Core 3.x only runs on the .NET Core 3.x, whereas ASP.NET Core 2.x runs on .NET Core 2.x as well as .NET Core Framework. more information looks .NET standard.

Run the first ASP.NET Core 3.x Application.

You can run an ASP.NET Core application on Visual Studio as well as on CLI.

On Visual Studio

Download the Visual Studio 2019 editor. If you want to build a different .Net core application, you need to choose a different version. Bellow is the minimum required version of Visual Studio based on the target visual studio version. more

.NET Core SDK version Visual Studio version
3.1 Visual Studio 2019 version 16.4 or higher.
3.0 Visual Studio 2019 version 16.3 or higher.
2.2 Visual Studio 2017 version 15.9 or higher.
2.1 Visual Studio 2017 version 15.7 or higher.

Open Visual Studio 2019, choose create a new project Alt

Choose ASP.NET Core Web Application Alt

Enter your project name and choose the project location Alt

Choose a version and a project template Alt

Here, we chose the ASP.NET Core MVC Views as our template.

Press F5, Start debugging. Alt

On CLI

You can also run this project through CLI, open a command prompt and enter the following code.

dotnet new webapp -o aspnetcoreapp

Trust the development certificate

dotnet dev-certs https --trust

Run the App

cd aspnetcoreapp
dotnet watch run

Then, open https://localhost:5001/ in your browser. Alt

The above code creates a MVC Project, However, there are two project examples, one is MVC, another is Razor. Both are a complete ASP.NET Core project, they are good projects for a newbie. MVC booklist project and Razor Booklist project.

Comments