Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit a3a97e6

Browse files
committed
Improve ordering of package versions output
This should make it easier to order by first package version, then Name to identify the odd version(s) out
1 parent 185f7e2 commit a3a97e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/buildtasks/support-annotations/VerifyVersionsTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public override bool Execute()
8585

8686
var recommendedSupportVersion = NugetPackages.GetRecommendedSupportPackageVersion(apiLevel);
8787

88-
foreach (var pkg in packageVersions)
88+
foreach (var pkg in packageVersions.OrderBy(p => p.Value + "-" + p.Value))
8989
sb.AppendLine($" {pkg.Key} ({pkg.Value})");
9090

9191
sb.AppendLine();

0 commit comments

Comments
 (0)