.net - ASP.NET 5 not running in development mode -


i have updated asp.net 5 project beta 8, , supposed following web command

"commands": {     "web": "microsoft.aspnet.server.kestrel" }, 

now have updated project environment variables.

enter image description here

this has updated launchsettings.json file, so

{   "profiles": {     "web": {       "commandname": "web",       "environmentvariables": {         "aspnet_env": "development"       }     }   } } 

but reason, every time run command dnx web says hosting environment production. why not starting in development mode?

enter image description here

the settings in launchsettings.json used vs. if run console, have set environment variable manually.

cmd:

set aspnet_env=development dnx web 

ps:

$env:aspnet_env=development dnx web 

Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -