2021-10-08 Core的LaunchSettings文件说明
{ "iisSettings": { //是否以IIS Express启动 "windowsAuthentication": false, //是否启用windows身份验证 "anonymousAuthentication": true, //是否启用匿名身份验证 "iisExpress": { "applicationUrl": "http://localhost:3314",//IIS Express随机端口 "sslPort": 44303 } }, "profiles": { "IIS Express": { "commandName": "IISExpress", "launchBrowser": true, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, "_2021_10_08_Core练习项目": {//选择本地自宿主启动,详见Program.cs文件。删除该节点也将导致Visual Studio启动选项缺失 "commandName": "Project", "launchBrowser": true, "applicationUrl": "https://localhost:5001;http://localhost:5000",//本地自宿主端口 "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } } } }