MVC核心集IHostingEnvironment到开发

时间:2018-05-27 08:54:40

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

如何手动将IhostingEnvironment env设置为开发?我想使用C#代码来执行此操作,而不是命令行。

谢谢,

   public Startup(IHostingEnvironment env)
    {
        var builder = new ConfigurationBuilder();

        if (env.IsDevelopment())
        {

1 个答案:

答案 0 :(得分:1)

您可以将env.EnvironmentName设置为" Development"在启动方法中。

error: SyntaxError: Unexpected token K in JSON at position 0 at JSON.parse (<anonymous>) at XMLHttp…, text: "Kommen wir nun einmal zu einigen Hilfsmitteln, mit… das

如果你在here(github repo)看到public Startup(IHostingEnvironment env) { var builder = new ConfigurationBuilder(); env.EnvironmentName = "Development"; // <- Set the EnvironmentName to "Development" if (env.IsDevelopment()) { 方法的实现,你会发现它基于IsDevelopment的字符串比较操作。

EnvironmentName