We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c58f4e9 + c8aa59b commit d29653cCopy full SHA for d29653c
src/Cli/dotnet/commands/dotnet-workload/list/WorkloadListCommand.cs
@@ -117,7 +117,7 @@ public override int Execute()
117
118
table.AddColumn(InformationStrings.WorkloadSourceColumn, workload => workload.Value);
119
120
- table.PrintRows(installedWorkloads.AsEnumerable(), l => Reporter.WriteLine(l));
+ table.PrintRows(installedWorkloads.AsEnumerable().OrderBy(workload => workload.Key), l => Reporter.WriteLine(l));
121
}
122
123
Reporter.WriteLine();
0 commit comments