gpt4 book ai didi

c# - 使用 configSource 转换包含的配置文件

转载 作者:太空狗 更新时间:2023-10-29 20:27:15 24 4
gpt4 key购买 nike

这个问题有点像两个伙伴。在 VS2015 中,我的 MVC 项目有多种不同的构建配置,测试、UAT、Live 等。使用我的 web.config 我可以简单地右键单击它并选择 Add Config Transform 来创建每个构建配置的转换文件。

如果我有一个外部配置文件,例如 Log4Net.config,我如何配置它以具有依赖转换,例如 web.config?这是通过编辑 project.csproj 文件手动完成的吗?

其次,我有一个 web.config 文件:

<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, Log4net" />
</configSections>

...

<log4net configSource="Log4Net.config" />
</configuration>

当我构建项目时,web.config 会自动通过 project.csproj 文件中的以下 AfterBuild 目标进行转换:

<Target Name="AfterBuild">
<TransformXml Source="Web.config"
Transform="Web.$(Configuration).config"
Destination="$(OutputPath)\$(AssemblyName).config" />
</Target>

如何使用相同的配置转换来转换包含的 Log4Net.config 文件?我意识到我可以将另一个 TransformXml 放入 AfterBuild 目标中,但这是执行此转换的正确方法,还是我遗漏了什么?

最佳答案

我选择了使用基数 Log4Net.config 的解决方案文件,一个Log4Net.XXX.config每个构建配置的文件和一个额外的 TransformXml AfterBuild 中的任务目标:

  • Log4Net.config
  • Log4Net.Debug.config
  • Log4Net.Release.config
  • Log4Net.Test.config
  • Log4Net.UAT.config

project.csproj文件现在看起来像这样:

<Content Include="Log4Net.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="Log4Net.Debug.config">
<DependentUpon>Log4Net.config</DependentUpon>
</None>
<None Include="Log4Net.Release.config">
<DependentUpon>Log4Net.config</DependentUpon>
</None>
<None Include="Log4Net.Test.config">
<DependentUpon>Log4Net.config</DependentUpon>
</None>
<None Include="Log4Net.UAT.config">
<DependentUpon>Log4Net.config</DependentUpon>
</None>

....

<Target Name="AfterBuild">
<TransformXml Source="Web.config" Transform="Web.$(Configuration).config" Destination="$(OutputPath)\$(AssemblyName).config" />
<TransformXml Source="Log4Net.config" Transform="Log4Net.$(Configuration).config" Destination="$(OutputPath)\Log4Net.config" />
</Target>

还有一个例子Log4Net.Test.config看起来像这样(我正在使用转换来更改连接字符串和 Log4Net 的日志记录级别):

<?xml version="1.0" encoding="utf-8"?>

<log4net xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appender>
<connectionString
value="Data Source=example.com;Initial Catalog=ExampleLogs;User ID=xxx;Password=xxx"
xdt:Transform="Replace" />
</appender>

<root>
<level
value="DEBUG"
xdt:Transform="Replace" />
</root>
</log4net>

这会转换 Log4Net.config文件在输出路径中成功。它使用与转换 web.config 相同的方法文件等应该很容易被选择该项目的任何其他开发人员理解。

虽然这有效并且已经投入生产一段时间了,但我仍在寻找确认这是对包含的配置文件进行转换的正确方法。

关于c# - 使用 configSource 转换包含的配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31337933/

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