To create APS.NET Core web app project:
- dotnet new webapp -o aspnetcoreapp
- dotnet dev-certs https --trust
- cd aspnetcoreapp dotnet watch run
To commit the code to github repository:
- git init
- git add *
- git commit -m "asp dotnet core web app"
- git remote add origin [email protected]:manish07/asp-dotnet-core-app.git
- git push --set-upstream origin master