@@ -115,8 +115,8 @@ public void Arrange(string inputFile, string outputFile, IList<string> stickyEle
115
115
)
116
116
;
117
117
foreach ( var group in combineGroups ) {
118
- var first = group . First ( ) ;
119
118
if ( options . HasFlag ( ArrangeOptions . CombineRootElements ) ) {
119
+ var first = group . First ( ) ;
120
120
// Combine multiple elements if they have the same name and attributes.
121
121
if ( group . Count ( ) > 1 ) {
122
122
var restGroup = group . Skip ( 1 ) ;
@@ -125,9 +125,13 @@ public void Arrange(string inputFile, string outputFile, IList<string> stickyEle
125
125
rest . Remove ( ) ;
126
126
}
127
127
}
128
+ // Do the sorting.
129
+ ArrangeElement ( first ) ;
130
+ } else {
131
+ foreach ( var element in group ) {
132
+ ArrangeElement ( element ) ;
133
+ }
128
134
}
129
- // Do the sorting.
130
- ArrangeElement ( first ) ;
131
135
}
132
136
133
137
if ( options . HasFlag ( ArrangeOptions . SplitItemGroups ) ) {
@@ -154,7 +158,11 @@ public void Arrange(string inputFile, string outputFile, IList<string> stickyEle
154
158
}
155
159
if ( options . HasFlag ( ArrangeOptions . SortRootElements ) ) {
156
160
// Sort the elements in root.
157
- input . Root . ReplaceNodes ( input . Root . Elements ( ) . OrderBy ( x => x , nodeNameComparer ) . ThenBy ( x => x . Attributes ( ) , attributeKeyComparer ) ) ;
161
+ input . Root . ReplaceNodes (
162
+ input . Root . Nodes ( )
163
+ . OrderBy ( x => x , nodeNameComparer )
164
+ . ThenBy ( x => x . NodeType == XmlNodeType . Element ? ( ( XElement ) x ) . Attributes ( ) : null , attributeKeyComparer )
165
+ ) ;
158
166
}
159
167
// Backup input file if we are overwriting.
160
168
if ( ( inputFile != null ) && ( inputFile == outputFile ) ) {
0 commit comments