File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -658,12 +658,12 @@ function Flatten-TimingEntry {
658658 $FormattedSelfTime = " {0:hh\:mm\:ss\.ff}" -f $SelfTime
659659
660660 [PSCustomObject ]@ {
661- " Total Time" = $FormattedTime
662- " Self Time" = $FormattedSelfTime
663- " %" = " $Percentage %"
664661 " Build Step" = " $Indent $ ( $Entry .' Build Step' ) "
665662 Platform = $Entry.Platform
666663 Arch = $Entry.Arch
664+ " Total Time" = $FormattedTime
665+ " Self Time" = $FormattedSelfTime
666+ " %" = " $Percentage %"
667667 }
668668
669669 $SortedChildren = $Entry.Children | Sort-Object - Descending - Property " Elapsed Time"
@@ -694,12 +694,12 @@ function Write-Summary {
694694
695695 $FormattedTotalTime = " {0:hh\:mm\:ss\.ff}" -f $TotalTime
696696 $TotalRow = [PSCustomObject ]@ {
697- " Total Time" = $FormattedTotalTime
698- " Self Time" = $FormattedTotalTime
699- " %" = " 100.0%"
700697 " Build Step" = " TOTAL"
701698 Platform = " "
702699 Arch = " "
700+ " Total Time" = $FormattedTotalTime
701+ " Self Time" = $FormattedTotalTime
702+ " %" = " 100.0%"
703703 }
704704
705705 @ ($Result ) + $TotalRow | Format-Table - AutoSize
You can’t perform that action at this time.
0 commit comments