发布未从appsettings.production.json获取连接字符串

时间:2016-12-22 15:50:22

标签: asp.net-core

我无法让我发布的ASP.net Core应用程序切换到使用appsettings.production.json文件中的连接字符串。

我已经设置了launchSettings,以便为我的开发和生产配置文件使用ASPNETCORE_ENVIRONMENT环境变量。当我切换配置文件并在visual studio中运行它时,我的连接字符串会正确更改。

当我在我的Ubuntu服务器上运行已发布的应用程序时,它不会切换。我在我的服务器上将ASPNETCORE_ENVIRONMENT变量设置为“Production”。我还验证了appSettings.json和appSettings.production.json都存在于应用程序的根目录中。

我的appsettings.json文件:

{
  "Logging": {
    "IncludeScopes": false,
    "LogLevel": {
      "Default": "Debug",
      "System": "Information",
      "Microsoft": "Information"
    }
  },
  "ConnectionStrings": {
    "DefaultConnection": "server=localhost;user id=root;password=dev;database=testdb;sslmode=none",
  }
}

我的appsettings.production.json文件:

{
  "ConnectionStrings": {
    "DefaultConnection": "server=localhost;user id=root;password=prod;database=testdb;sslmode=none"
  }
}

我的launchSettings.json文件:

{
  "iisSettings": {
    "windowsAuthentication": false,
    "anonymousAuthentication": true,
    "iisExpress": {
      "applicationUrl": "http://localhost:50824/",
      "sslPort": 0
    }
  },
  "profiles": {
    "IIS Express": {
      "commandName": "IISExpress",
      "launchBrowser": true,
      "launchUrl": "home/index",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    },
    "IIS Express (Production)": {
      "commandName": "IISExpress",
      "launchBrowser": true,
      "launchUrl": "home/index",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Production"
      }
    }
  }
}

My Startup.cs:

public Startup(IHostingEnvironment env)
{
    var builder = new ConfigurationBuilder()
        .SetBasePath(env.ContentRootPath)
        .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
        .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);

    if (env.IsEnvironment("Development"))
    {
        // This will push telemetry data through Application Insights pipeline faster, allowing you to view results immediately.
        builder.AddApplicationInsightsSettings(developerMode: true);
    }

    builder.AddEnvironmentVariables();
    Configuration = builder.Build();


    Console.WriteLine("Root Path: " + env.ContentRootPath);
    Console.WriteLine("Connection String: " + Configuration.GetConnectionString("DefaultConnection"));
}

我已经引用了这些问题,但没有运气:

asp.net core 1 appsettings.production.json not updating connection strings

dotnet publish doesn´t publish correct appsettings.{env.EnvironmentName}.json

1 个答案:

答案 0 :(得分:4)

事实证明official documentation中的“注意”非常重要:

  

在Windows和macOS上,指定的环境名称是大小写   不敏感的。是否将变量设置为Development或   开发或开发的结果将是相同的。然而,   Linux默认情况下是区分大小写的操作系统。环境变量,文件   名称和设置应采用区分大小写的最佳做法。

主要是“Linux默认情况下是一个区分大小写的操作系统”!!!!!哎呀:)

一旦我将环境变量更改为“生产”而不是“生产”,它就可以了。

进一步说明:

关键是要了解Startup.cs Startup方法中的这行代码:

.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);

它将{env.EnvironmentName}替换为您的环境变量,因此如果您在linux中运行,则需要准确匹配您的文件名。在我的情况下“appSettings.production.json”所以ASPNETCORE_ENVIRONMENT必须是“生产”。