Skip to content

Commit f2786f0

Browse files
committed
Fix issues with arranging elements in root
- Fix the sorting of elements when the CombineRootElements option is off. - Fix the sorting of elements in root to retain comments.
1 parent ed32b59 commit f2786f0

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

Projects/CsProjArrange/CsProjArrange/CsProjArrange.cs

+12-4
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ public void Arrange(string inputFile, string outputFile, IList<string> stickyEle
115115
)
116116
;
117117
foreach (var group in combineGroups) {
118-
var first = group.First();
119118
if (options.HasFlag(ArrangeOptions.CombineRootElements)) {
119+
var first = group.First();
120120
// Combine multiple elements if they have the same name and attributes.
121121
if (group.Count() > 1) {
122122
var restGroup = group.Skip(1);
@@ -125,9 +125,13 @@ public void Arrange(string inputFile, string outputFile, IList<string> stickyEle
125125
rest.Remove();
126126
}
127127
}
128+
// Do the sorting.
129+
ArrangeElement(first);
130+
} else {
131+
foreach (var element in group) {
132+
ArrangeElement(element);
133+
}
128134
}
129-
// Do the sorting.
130-
ArrangeElement(first);
131135
}
132136

133137
if (options.HasFlag(ArrangeOptions.SplitItemGroups)) {
@@ -154,7 +158,11 @@ public void Arrange(string inputFile, string outputFile, IList<string> stickyEle
154158
}
155159
if (options.HasFlag(ArrangeOptions.SortRootElements)) {
156160
// 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+
);
158166
}
159167
// Backup input file if we are overwriting.
160168
if ((inputFile != null) && (inputFile == outputFile)) {

Projects/CsProjArrange/CsProjArrange/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
[assembly: AssemblyVersion("1.0.1.0")]
35+
[assembly: AssemblyFileVersion("1.0.1.0")]

0 commit comments

Comments
 (0)