我似乎无法弄清楚如何更改以下内容
<configuration>
<location path="hello123">
<.../>
</location>
</configuration>
到
<configuration>
<location path="world321">
<.../>
</location>
</configuration>
不删除第一个并添加第二个。任何帮助都会很棒。
由于
答案 0 :(得分:6)
您可以使用SetAttributes
,如下所示:
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<location path="world321" xdt:Transform="SetAttributes(path)" >
</location>
</configuration>
您可以在AppHarbor web.config transformation tester上测试此转换和其他转换。