Creating an ASP .NET Core MVC Project
.NET Core .NET

Creating an ASP .NET Core MVC Project

Mishel Shaji
Mishel Shaji

In this post, we will see how to create an ASP .NET Core MVC application.

Prerequisites

Before continuing, make sure that you installed the following items on your computer.

  • Visual Studio 2019. (You can also use Visual Studio 2017).
  • .NET Core SDK 2.2

Creating a new web application

To create a web application, click on Create a new project. From the window that appears, select ASP .NET Core web application and click Next.

creating ana sp dot net core application

Name the application as CoreMVC and click Create.

creating asp dot net core project-choosing project name

From the next window, select Web Application (Model-View-Controller) and click Create. This will create a new project.

creating an asp dot net core application-selecting project template

Click on the ▶ button or hit Ctrl + F5 to run the project. A simple web page as shows below will appear.

first asp net core mvc website

If you enjoyed this post, let me know by leaving a comment below.