Answers for "dotnet core create project"

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
-1

dotnet new options

dotnet new <TEMPLATE> [--dry-run] [--force] [-i|--install {PATH|NUGET_ID}]
    [-lang|--language {"C#"|"F#"|VB}] [-n|--name <OUTPUT_NAME>]
    [--nuget-source <SOURCE>] [-o|--output <OUTPUT_DIRECTORY>]
    [-u|--uninstall] [--update-apply] [--update-check] [Template options]

dotnet new <TEMPLATE> [-l|--list] [--type <TYPE>]

dotnet new -h|--help
Posted by: Guest on August-12-2020

Browse Popular Code Answers by Language