ASP .NET 5 中的配置文件转换

Configuration file transformation in ASP .NET 5

我们正在使用新的 ASP .NET 5 平台构建网络应用程序。我正在配置构建和部署自动化工具,我希望能够在部署期间更改应用程序设置(例如更改 Web 服务 url)。在 ASP .NET 5 中,我们不再有 web.config 文件,只有新的 json 配置文件。 ASP .NET 5 中是否有类似于 ASP .NET 以前版本中的 web.config 转换的机制?

在 ASP.NET 5 中您并不需要配置转换,因为它对链式配置源具有开箱即用的支持。例如,取 this sample:

public class Startup
{
    private readonly IConfiguration _configuration;

    public Startup(IApplicationEnvironment appEnv, IHostingEnvironment env)
    {
        _configuration = new ConfigurationBuilder(appEnv.ApplicationBasePath)
            .AddJsonFile("config.json")
            .AddEnvironmentVariables()
            .Build();
    }

    // ...
}

我们添加了两个配置源并构建了我们的配置。如果我要求一个配置键,它会尝试通过从最后到第一顺序查看源来获取该键的值。在上述情况下,我可以在开发过程中使用 config.json 文件,并且可以通过从环境变量提供适当的配置来验证它。

查看 the Configuration docs 了解更多信息。

正如@tugberk 所指出的,您可以改用环境变量,这是处理这种情况的更好方法。如果您 运行 在开发环境中并且想要存储密码或连接字符串,您也可以使用用户机密来添加它们。毕竟,您仍然可以像这样使用特定于环境的配置文件(这是 ASP.NET 5 Beta 5 示例):

ConfigurationBuilder configurationBuilder = new ConfigurationBuilder(
    applicationEnvironment.ApplicationBasePath);

// Add configuration from the config.json file.
configurationBuilder.AddJsonFile("config.json");

// Add configuration from an optional config.development.json, config.staging.json or 
// config.production.json file, depending on the environment. These settings override the ones in the 
// config.json file.
configurationBuilder.AddJsonFile($"config.{hostingEnvironment.EnvironmentName}.json", optional: true);

if (hostingEnvironment.IsEnvironment(EnvironmentName.Development))
{
    // This reads the configuration keys from the secret store. This allows you to store connection strings
    // and other sensitive settings on your development environment, so you don't have to check them into
    // your source control provider. See http://go.microsoft.com/fwlink/?LinkID=532709 and
    // http://docs.asp.net/en/latest/security/app-secrets.html
    configurationBuilder.AddUserSecrets();
}

// Add configuration specific to the Development, Staging or Production environments. This config can 
// be stored on the machine being deployed to or if you are using Azure, in the cloud. These settings 
// override the ones in all of the above config files.
// Note: To set environment variables for debugging navigate to:
// Project Properties -> Debug Tab -> Environment Variables
// Note: To get environment variables for the machine use the following command in PowerShell:
// $env:[VARIABLE_NAME]
// Note: To set environment variables for the machine use the following command in PowerShell:
// $env:[VARIABLE_NAME]="[VARIABLE_VALUE]"
// Note: Environment variables use a colon separator e.g. You can override the site title by creating a 
// variable named AppSettings:SiteTitle. See 
// http://docs.asp.net/en/latest/security/app-secrets.html
configurationBuilder.AddEnvironmentVariables();

IConfiguration configuration = configurationBuilder.Build();

我知道 web.configs 并没有真正被支持,但它们仍然在 IIS 下的 ASP.Net 中使用。

我希望应用转换,也想像这样从配置中控制环境变量:

<aspNetCore>
  <environmentVariables xdt:Transform="Replace">
    <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Production" />
  </environmentVariables>
</aspNetCore>

如果你真的想在ASP.Net core / 5中转换它们,你可以使用以下方法:

  1. 根据需要添加任意数量的不同 web.config 转换文件 项目。例如,您可以添加 Web.Development.config, Web.Staging.config 和 Web.Production.config 等...随便命名。

  2. 修改您的 project.json 文件以通过添加此文件来输出文件 行到当前 web.config 行正下方的发布选项: "web.*.config"

  3. 创建发布配置文件并修改您的 powershell 脚本 发布配置文件(位于 Web Project\Properties\PublishProperties\profilename-publish.ps1)以添加以下修改:

在try catch上面添加这个函数(我在这里找到这个函数Web.Config transforms outside of Microsoft MSBuild?,稍微修改一下。):

function XmlDocTransform($xml, $xdt)
{
    if (!$xml -or !(Test-Path -path $xml -PathType Leaf)) {
        throw "File not found. $xml";
    }
    if (!$xdt -or !(Test-Path -path $xdt -PathType Leaf)) {
        throw "File not found. $xdt";
    }

    "Transforming $xml using $xdt";

    $scriptPath = (Get-Variable MyInvocation -Scope 1).Value.InvocationName | split-path -parent
    #C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Web\Microsoft.Web.Publishing.Tasks.dll

    Add-Type -LiteralPath "${Env:ProgramFiles(x86)}\MSBuild\Microsoft\VisualStudio\v14.0\Web\Microsoft.Web.XmlTransform.dll"

    $xmldoc = New-Object Microsoft.Web.XmlTransform.XmlTransformableDocument;
    $xmldoc.PreserveWhitespace = $true
    $xmldoc.Load($xml);

    $transf = New-Object Microsoft.Web.XmlTransform.XmlTransformation($xdt);
    if ($transf.Apply($xmldoc) -eq $false)
    {
        throw "Transformation failed."
    }
    $xmldoc.Save($xml);
}

在 Publish-AspNet 调用上方 添加这些行:

$xdtFiles = Get-ChildItem $packOutput | Where-Object {$_.Name -match "^web\..*\.config$"};
$webConfig = $packOutput + "web.config";
foreach($xdtFile in $xdtFiles) {

    XmlDocTransform -xml $webConfig -xdt "$packOutput$xdtFile"
}