我正在使用 XMLUpdate 更新子目录中的多个配置文件。
我以为我可以做这样的事情:
<XmlUpdate Namespace="http://schemas.microsoft.com/.NetConfiguration/v2.0"
XmlFileName="\\$(BuildEnvironment)\websites\*.config"
Xpath="//configuration/appSettings/add[@key='Site']/@value"
Value="sitename"
/>
我有以下结构:
Websites
|
|-site1\web.config
|
|-site2\web.config
|
|-site3\web.config
所以我的想法是,与其多次编写 xmlupdate 任务,我将能够使用上述内容并一次更新许多配置文件。
这可能吗?