私はASP.NET Core RC2を使用しています。アプリケーションを実行するとdotnet run
、常に "Production" で実行されます。「開発」に変更できません。
次のlaunchSettings.json
ファイルがあります。
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:26088/",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"MVCCoreRc2App": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
dotnet
を設定しているときに、なぜ「Production」でアプリケーションを実行しているのかわかりません"ASPNETCORE_ENVIRONMENT": "Development"
。
これはASP.NET Core RC1で機能していました。私は何が欠けていますか?