xml - Wix XmlConfig rename root element -
is possible rename root element in xml file using either xmlconfig or xmlfile? example:
<config> <settings> <some setting="true" /> .... </settings> </config>
i want rename "settings" while keeping in between settings tags. i'd result be:
<config> <newsettings> <some setting="true" /> .... </newsettings> </config>
you cannot rename elements can copy of them new node , delete old node. not ideal can let xmlconfig
heavy lifting adding temporary records table answered in this question.
Comments
Post a Comment