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.
- .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
Post a Comment