6

我正在尝试使用此 XDT 部分将 NLog 自定义配置部分插入到我的 Web.config 中:

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" throwExceptions="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xdt:Transform="InsertIfMissing" >
    <targets>
        <target xsi:type="File" name="logfile" fileName="H:\testLog.txt" layout="${longdate} ${uppercase:${level}} ${message}" />
    </targets>
    <rules>
        <logger name="*" minlevel="Trace" writeTo="logfile" />
    </rules>
</nlog>

当我运行 XDT 转换时,我的 Web.Debug.config 包含:

<nlog throwExceptions="true" xmlns="http://www.nlog-project.org/schemas/NLog.xsd">
    <targets>
        <target d4p1:type="File" name="logfile" fileName="H:\testLog.txt" layout="${longdate} ${uppercase:${level}} ${message}" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance" />
    </targets>
    <rules>
        <logger name="*" minlevel="Trace" writeTo="logfile" />
    </rules>
</nlog>

通常,命名空间前缀是任意的,因此将 xsi 转换为 d4p1 不会导致任何问题。

但是,当我使用d4p1. 手动更改实例d4p1xsi解决问题,但如果用户之后需要手动更改文件,它会颠覆我的配置转换实用程序。

有没有办法使用 XDT 保留命名空间前缀?

4

2 回答 2

3

我们有完全相同的问题。我不确定为什么它突然开始发生在一个特定的项目中,但我们的解决方案是将 xsi 命名空间添加到原始配置文件的顶层(即转换工作的基本文件)。所以...

<configuration>

... 会成为...

<configuration xmlns:xsi="http://www.nlog-project.org/schemas/NLog.xsd">

这成功了。

另一种可行的方法是将转换应用于 nlog 元素的子元素。

希望对某人有所帮助。

于 2014-07-30T14:54:59.280 回答
2

当我将 xdt:Transform 属性从 target 和 rule 标记移动到 nlog 时,我开始看到这个问题。像这样将它们移回原始标签解决了它:

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" throwExceptions="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <targets xdt:Transform="InsertIfMissing">
    <target xsi:type="File" name="logfile" fileName="H:\testLog.txt" layout="${longdate} ${uppercase:${level}} ${message}" />
  </targets>
  <rules xdt:Transform="InsertIfMissing">
    <logger name="*" minlevel="Trace" writeTo="logfile" />
  </rules>
</nlog>
于 2016-03-11T23:52:49.487 回答