转换 web 配置替换元素以外的文件
Transform a file other than web config replace element
我有一个 NLog.config,我必须将其指向不同的生产数据库。
我正在使用 this
工具来改造它。
这是我 NLog.Config.
的一部分
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="ExceptionLog" type="Database">
<connectionString>
---- Db Connection string for test-------
</connectionString>
我已经创建了生产转换,但无法转换文件。
这是我的
<?xml version="1.0"?>
<!-- For more information on using app.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<parameters value="Db connection for prod"
xdt:Transform="Replace" xdt:Locator="XPath(targets/target/connectionString)" />
</configuration>
我们需要更改整个元素而不是属性。
已成功添加 "nlog" xdt 命名空间别名:
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"
xmlns:nlog="http://www.nlog-project.org/schemas/NLog.xsd">
<nlog:connectionString xdt:Transform="Replace"
xdt:Locator="XPath(/nlog:nlog/nlog:targets/nlog:target/nlog:connectionString)">
....put-connection-string-here....
</nlog:connectionString>
</configuration>
我有一个 NLog.config,我必须将其指向不同的生产数据库。 我正在使用 this 工具来改造它。 这是我 NLog.Config.
的一部分<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="ExceptionLog" type="Database">
<connectionString>
---- Db Connection string for test-------
</connectionString>
我已经创建了生产转换,但无法转换文件。
这是我的
<?xml version="1.0"?>
<!-- For more information on using app.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<parameters value="Db connection for prod"
xdt:Transform="Replace" xdt:Locator="XPath(targets/target/connectionString)" />
</configuration>
我们需要更改整个元素而不是属性。
已成功添加 "nlog" xdt 命名空间别名:
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"
xmlns:nlog="http://www.nlog-project.org/schemas/NLog.xsd">
<nlog:connectionString xdt:Transform="Replace"
xdt:Locator="XPath(/nlog:nlog/nlog:targets/nlog:target/nlog:connectionString)">
....put-connection-string-here....
</nlog:connectionString>
</configuration>