11 references to EventArgsFormatting
Microsoft.Build (9)
Logging\ParallelLogger\ParallelConsoleLogger.cs (7)
388
WriteMessageAligned(
EventArgsFormatting
.FormatEventMessage(warning, showProjectFile, FindLogOutputProperties(warning)), true);
397
WriteMessageAligned(
EventArgsFormatting
.FormatEventMessage(error, showProjectFile, FindLogOutputProperties(error)), true);
514
WriteMessageAligned(" " +
EventArgsFormatting
.FormatEventMessage(buildErrorEventArgs, showProjectFile, FindLogOutputProperties(errorWarningEvent)), false);
518
WriteMessageAligned(" " +
EventArgsFormatting
.FormatEventMessage(buildWarningEventArgs, showProjectFile, FindLogOutputProperties(errorWarningEvent)), false);
1075
WriteMessageAligned(
EventArgsFormatting
.FormatEventMessage(e, showProjectFile, FindLogOutputProperties(e)), true);
1121
WriteMessageAligned(
EventArgsFormatting
.FormatEventMessage(e, showProjectFile, FindLogOutputProperties(e)), true);
1280
nonNullMessage =
EventArgsFormatting
.FormatEventMessage(e, showProjectFile, FindLogOutputProperties(e), nonNullMessage);
Logging\SimpleErrorLogger.cs (2)
59
LogWithColor(
EventArgsFormatting
.FormatEventMessage(e, showProjectFile: true),
65
LogWithColor(
EventArgsFormatting
.FormatEventMessage(e, showProjectFile: true),
Microsoft.Build.Utilities.Core (2)
Logger.cs (2)
48
public virtual string FormatErrorEvent(BuildErrorEventArgs args) =>
EventArgsFormatting
.FormatEventMessage(args);
55
public virtual string FormatWarningEvent(BuildWarningEventArgs args) =>
EventArgsFormatting
.FormatEventMessage(args);