Answers for "make ".net core" app run on web"

1

create a dotnet core web app

dotnet new webapp -o aspnetcoreapp
cd aspnetcoreapp
dotnet watch run --urls "http://*:80;https://*:443"
Posted by: Guest on August-30-2021
0

run dotnet core app

# run the application and update automatically after changes
dotnet watch run
Posted by: Guest on April-06-2021

Browse Popular Code Answers by Language