Hello WiX developers, I have been using XmlConfig elements in my installation for some time and I've noticed a number of things which I qualify as minor bugs: 1) When you modify an existent attribute of an existent XML element, it is moved to the end of the element: Before <Person Name="John" Lastname="Smith" Age="35"/> After <Person Lastname="Smith" Age="35" Name="Mary"/>
2) When you modify a self-closing element, it removes the space between the last attribute and the closing structure: Before <Person Name="John" Lastname="Smith" Age="35" /> After <Person Lastname="Smith" Age="35" Name="Mary"/> 3) When you delete an element, it leaves the empty line: Before <Person Name="John" Lastname="Smith" Age="35" /> <Person Name="Tony" Lastname="Black" Age="40" /> <Person Name="Amy" Lastname="White" Age="20" /> After <Person Name="John" Lastname="Smith" Age="35" /> <Person Name="Amy" Lastname="White" Age="20" /> Can this be registered as minor bugs? There's nothing vitally important here, just not convenient to diff afterwards... Thanks. -- Yan ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users