
ASP.NET---101 (Setup)
About In this article I will explain how and what to set up in a new project. I will explain how and what to set up in a new project. This project will also serve as a go-to template for creating ASP.NET applications or for my teachings ASP.NET to others. Solution creation Let's start from creating empty project. You can use following command. dotnet new web If you are using VisualStudio just pick this. I usually name solution and name project but with ".Api". After creating the project, you will see the following file structure. MyBestApp +-- MyBestApp.sln +-- MyBestApp.Api | +-- Program.cs | +-- appsettings.json | +-- appsettings.Development.json | +-- MyBestApp.Api.csproj | +-- Properties | +-- launchSettings.json MyBestApp.sln – Solution file containing the overall solution configuration. MyBestApp.Api.csproj – Project configuration file. Lists installed packages, project references, and included folders. Program.cs – Startup file for the MyBestApp.Api project. appsettings.json – P
Continue reading on Dev.to
Opens in a new tab



