【发布时间】:2017-06-20 06:49:08
【问题描述】:
每当我找到一些launchSettings.json 文件时,它们的结构如下:
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:40088/",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express (Staging)": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Staging"
}
}
}
}
找到here。
但是,我找不到任何关于属性commandName 的文档。
commandName有什么用?
【问题讨论】:
标签: asp.net .net asp.net-core