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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -