14 references to Indentation
Microsoft.Build (14)
Logging\TerminalLogger\TerminalLogger.cs (10)
62internal const string DoubleIndentation = $"{Indentation}{Indentation}"; 64internal const string TripleIndentation = $"{Indentation}{Indentation}{Indentation}"; 740Indentation, 750Indentation, 994RenderImmediateMessage(FormatWarningMessage(e, Indentation)); 1002RenderImmediateMessage(FormatWarningMessage(e, Indentation)); 1038RenderImmediateMessage(FormatErrorMessage(e, Indentation));
Logging\TerminalLogger\TerminalNodesFrame.cs (2)
85return $"{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(); 88TerminalLogger.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)";