KirillOsenkov / MSBuildStructuredLog

A logger for MSBuild that records a structured representation of executed targets, tasks, property and item values.
MIT License
1.41k stars 188 forks source link

Faster sort projects first #730

Closed KirillOsenkov closed 7 months ago

KirillOsenkov commented 7 months ago

Instead of Sort here: topLevelLibraries.OrderByDescending(l => l.Type);

Just select projects first and concat with the rest

KirillOsenkov commented 7 months ago

Maybe also filter first, then sort