Starting with .net core
Creating a web app project
Open a command shell and run
dotnet new webapp -o “projectname”
Enable local https
Run command
dotnet dev-certs https --trust
Accept the ssl certificate
Run the command to run the recently created project
cd “projectfolder”
dotnet run
After the command completes
Editing a Razor Page
Open Pages/Index.cshtml and modify the page.