Answers for "create new dotnet core project web api"

C#
2

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

dotnet create web api

dotnet new api --no-https --output PantryCode language: Bash (bash)
Posted by: Guest on July-22-2021

C# Answers by Framework

Browse Popular Code Answers by Language