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
}";
982
Indentation
,
988
Indentation
,
994
Indentation
,
1000
Indentation
,
1006
Indentation
,
1013
Indentation
,
1020
Indentation
,
1025
Indentation
,
1343
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1354
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1366
RenderImmediateMessage(FormatWarningMessage(e,
Indentation
));
1441
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)"