23 references to Indentation
Microsoft.Build (23)
Logging\TerminalLogger\TerminalLogger.cs (17)
75internal const string DoubleIndentation = $"{Indentation}{Indentation}"; 77internal const string TripleIndentation = $"{Indentation}{Indentation}{Indentation}"; 1002Indentation, 1008Indentation, 1014Indentation, 1020Indentation, 1026Indentation, 1033Indentation, 1040Indentation, 1045Indentation, 1362RenderImmediateMessage(FormatWarningMessage(e, Indentation)); 1373RenderImmediateMessage(FormatWarningMessage(e, Indentation)); 1385RenderImmediateMessage(FormatWarningMessage(e, Indentation)); 1460RenderImmediateMessage(FormatErrorMessage(e, Indentation, requireFileAndLinePortion: !hasMSBuildPlaceholderLocation));
Logging\TerminalLogger\TerminalNodesFrame.cs (2)
88builder.Append(TerminalLogger.Indentation).Append(project); 107TerminalLogger.Indentation.Length +
Logging\TerminalLogger\TerminalNodeStatus.cs (4)
79(null, null) => $"{TerminalLogger.Indentation}{Project} {Target} ({Stopwatch.ElapsedSeconds:F1}s)", 80(null, _) => $"{TerminalLogger.Indentation}{Project} {AnsiCodes.Colorize(RuntimeIdentifier, TerminalLogger.RuntimeIdentifierColor)} {Target} ({Stopwatch.ElapsedSeconds:F1}s)", 81(_, null) => $"{TerminalLogger.Indentation}{Project} {AnsiCodes.Colorize(TargetFramework, TerminalLogger.TargetFrameworkColor)} {Target} ({Stopwatch.ElapsedSeconds:F1}s)", 82_ => $"{TerminalLogger.Indentation}{Project} {AnsiCodes.Colorize(TargetFramework, TerminalLogger.TargetFrameworkColor)} {AnsiCodes.Colorize(RuntimeIdentifier, TerminalLogger.RuntimeIdentifierColor)} {Target} ({Stopwatch.ElapsedSeconds:F1}s)"