我正在尝试使用此 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
. 手动更改实例d4p1
以xsi
解决问题,但如果用户之后需要手动更改文件,它会颠覆我的配置转换实用程序。
有没有办法使用 XDT 保留命名空间前缀?