Get Started with ASP.NET Core


This article shows how to create and run an ASP.NET Core web app using the .NET Core CLI.

You'll learn how to:

  • Create a web app project.
  • Trust the development certificate.
  • Run the app.
  • Edit a Razor page.
Prerequisites
  1. .NET 7.0 SDK



Create a web app project

Open a command shell, and enter the following command:

.NET CLI                                                                                             

dotnet new webapp -o aspnetcoreapp




Comments

Popular posts from this blog

Asynchronous Programming in .NET: Understanding async/await

Design Patterns In C# .NET (2023)