在OSX上的VS Code中将IHostingEnvironment.IsDevelopment()设置为true

时间:2015-11-21 21:27:26

标签: asp.net-core asp.net-core-mvc

我正在使用VS Code和OSX开发MVC 6项目。如何将当前环境指定为"开发"那么IHostingEnvironment.IsDevelopment()会返回true吗?

我试图设置" ASPNET_ENV"配置设置为"开发"在我通过ConfigurationBuilder()。AddJsonFile()指定的JSON文件中,但这不起作用。

{
    "AppSettings": 
    {
        "ASPNET_ENV": "Development"
    }   
}

感谢您的帮助! 感谢

1 个答案:

答案 0 :(得分:0)

您可以通过环境变量设置开发环境:

EXPORT ASPNET_ENV=Development