gpt4 book ai didi

c# - Azure DevOps - .NET Core 构建包括 Web.config 文件

转载 作者:行者123 更新时间:2023-11-30 21:31:22 29 4
gpt4 key购买 nike

我正在使用 Azure DevOps 构建 .NET Core MVC Web 应用程序并将其发布到 AWS 中的 Windows Server 2016 EC2 实例。

我有不同的环境,所以我创建了以下 appsettings.json 文件:

  • appsettings.DEV.json
  • appsettings.STG.json
  • appsettings.PRD.json

经过一些研究,我发现我们可以在 web.config 文件中设置 ASPNETCORE_ENVIRONMENT 变量:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\www.MyApp.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout">
<environmentVariables>
<environmentVariable name="ASPNETCORE_ENVIRONMENT" value="[ENV]" />
</environmentVariables>
</aspNetCore>
</system.webServer>
</location>
</configuration>

然后我可以在 Program.cs 中使用以下代码加载相应的环境 appsetting.json 文件:

public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}

public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration(ConfigConfiguration)
.UseStartup<Startup>();

static void ConfigConfiguration(WebHostBuilderContext ctx, IConfigurationBuilder config)
{
config.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
.AddJsonFile($"appsettings.{ctx.HostingEnvironment.EnvironmentName}.json", optional: true, reloadOnChange: true);

}
}

对于每个部署,我想控制部署的 web.config,以便我可以控制 ASPNETCORE_ENVIRONMENT 的值。类似于传统 ASP.NET 环境中的 web.config 转换。

有没有办法在 Azure DevOps 中或通过 Visual Studio 中的设置来执行此操作?我读到 .NET Core 2.2 将为此提供解决方案,但在此期间可以做什么?

最佳答案

我正在使用标准的 web.config 转换(部署到 IIS)

Azure DevOps deploy task

转换 web.staging.config:

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<location>
<system.webServer>
<aspNetCore>
<environmentVariables>
<environmentVariable xdt:Transform="Replace" xdt:Locator="Match(name)" name="ASPNETCORE_ENVIRONMENT" value="Staging" />
</environmentVariables>
</aspNetCore>
</system.webServer>
</location>
</configuration>

关于c# - Azure DevOps - .NET Core 构建包括 Web.config 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53354920/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com