2016-01-22 44 views
1

相关:WiX XmlFile setValue on multiple linesWiX XmlConfig在多行上更改值?

我想用一个语句使用XmlConfig更新多个xml节点上的属性。有没有相当于XmlFile - bulkSetValue?

这将更新第一个实例。

<util:XmlConfig Id="ServerWCFCertClientSettings" File="[#APP_CONFIG]" On="install" PreserveModifiedDate="yes" 
    Action="create" 
    Node="value" 
    ElementPath="//configuration/system.serviceModel/client/endpoint/identity/certificateReference" 
    Name="findValue" 
    Value="[SELECTED_WCF_CERTIFICATE]" 
    Sequence="200" /> 

我可以用XMLFILE这一点,但我们正在努力对XMLConfig的规范进行所有操作。

回答