dotnetcore

dotnet new web

cd ./Project

外部から見れるように設定 nglok で外部IPの設定

"ASPNETCORE_URLS": "https://*:5001;http://*:5000",


{

"iisSettings": ...,

"profiles": {

"IIS Express": ...,

"WebApplication1": {

"commandName": "Project",

"launchBrowser": true,

"launchUrl": "https://localhost:5001",

"environmentVariables": {

"ASPNETCORE_URLS": "https://*:5001;http://*:5000",

"ASPNETCORE_ENVIRONMENT": "Development"

},

"applicationUrl": ""

}

}

}