1 implementation of DispatchAsCommentFromText
Microsoft.Build (1)
BuildCheck\Infrastructure\CheckContext\CheckDispatchingContext.cs (1)
44public void DispatchAsCommentFromText(MessageImportance importance, string message)
6 references to DispatchAsCommentFromText
Microsoft.Build (6)
BuildCheck\Infrastructure\BuildCheckBuildEventHandler.cs (3)
173checkContext.DispatchAsCommentFromText(MessageImportance.Low, $"BuildCheck run times{Environment.NewLine}"); 175checkContext.DispatchAsCommentFromText(MessageImportance.Low, infraData); 177checkContext.DispatchAsCommentFromText(MessageImportance.Low, checkData);
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (3)
352checkContext.DispatchAsCommentFromText(MessageImportance.High, $"Dismounting check '{checkToRemove.FriendlyName}'"); 366checkContext.DispatchAsCommentFromText(MessageImportance.High, $"Dismounting check '{check.Check.FriendlyName}'. The check has thrown an unhandled exception while executing registered actions."); 374checkContext.DispatchAsCommentFromText(MessageImportance.Normal, $"Dismounting check '{throttledCheck.FriendlyName}'. The check has exceeded the maximum number of results allowed. Any additional results will not be displayed.");