23 references to Indentation
Microsoft.Build (23)
Logging\TerminalLogger\TerminalLogger.cs (17)
75
internal const string DoubleIndentation = $"{
Indentation
}{
Indentation
}";
77
internal const string TripleIndentation = $"{
Indentation
}{
Indentation
}{
Indentation
}";
1002
Indentation
,
1008
Indentation
,
1014
Indentation
,
1020
Indentation
,
1026
Indentation
,
1033
Indentation
,
1040
Indentation
,
1045
Indentation
,
1362
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1373
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1385
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1460
RenderImmediateMessage(FormatErrorMessage(e,
Indentation
, requireFileAndLinePortion: !hasMSBuildPlaceholderLocation));
Logging\TerminalLogger\TerminalNodesFrame.cs (2)
88
builder.Append(TerminalLogger.
Indentation
).Append(project);
107
TerminalLogger.
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)"