Search⌘ K
AI Features

Creating an Empty Project

Explore the step-by-step process of creating an empty ASP.NET Core project. Understand how to set up the project, configure its files, and prepare it to serve simple web pages, helping you grasp the essential building blocks for web app development.

We will start by creating an empty ASP.NET Core project and explore how to enable it to serve simple web pages.

A step-by-step guide for creating an empty project

We will create an ASP.NET Core project showing a list of suppliers from the Northwind database. The dotnet tool has many project templates that do a lot of work for us, but it can be difficult to know which works best for a given situation, so we will start with the empty website project template and then add features step by ...