14 references to Indentation
Microsoft.Build (14)
Logging\TerminalLogger\TerminalLogger.cs (10)
62
internal const string DoubleIndentation = $"{
Indentation
}{
Indentation
}";
64
internal const string TripleIndentation = $"{
Indentation
}{
Indentation
}{
Indentation
}";
740
Indentation
,
750
Indentation
,
994
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1002
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1038
RenderImmediateMessage(FormatErrorMessage(e,
Indentation
));
Logging\TerminalLogger\TerminalNodesFrame.cs (2)
85
return $"{TerminalLogger.
Indentation
}{project}{(targetFramework is null ? string.Empty : " ")}{AnsiCodes.Colorize(targetFramework, TerminalLogger.TargetFrameworkColor)} {AnsiCodes.SetCursorHorizontal(MaxColumn)}{AnsiCodes.MoveCursorBackward(targetWithoutAnsiLength + durationString.Length + 1)}{renderedTarget} {durationString}".AsSpan();
88
TerminalLogger.
Indentation
.Length +
Logging\TerminalLogger\TerminalNodeStatus.cs (2)
73
$"{TerminalLogger.
Indentation
}{Project} {Target} ({Stopwatch.ElapsedSeconds:F1}s)" :
74
$"{TerminalLogger.
Indentation
}{Project} {AnsiCodes.Colorize(TargetFramework, TerminalLogger.TargetFrameworkColor)} {Target} ({Stopwatch.ElapsedSeconds:F1}s)";