Implemented interface member:
method
LogFatalError
Microsoft.Build.BackEnd.Logging.ILoggingService.LogFatalError(Microsoft.Build.Framework.BuildEventContext, System.Exception, Microsoft.Build.Shared.BuildEventFileInfo, System.String, params System.Object[])
8 references to LogFatalError
Microsoft.Build (2)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (2)
196
LogFatalError
(buildEventContext, exception, file, "FatalBuildError");
212
LogFatalError
(buildEventContext, exception, file, "FatalTaskError", taskName);
Microsoft.Build.Engine.UnitTests (6)
BackEnd\LoggingServicesLogMethod_Tests.cs (6)
217
service.
LogFatalError
(null, new Exception("SuperException"), new BuildEventFileInfo("foo.cs"), "FatalTaskError", "TaskName");
230
service.
LogFatalError
(s_buildEventContext, new Exception("SuperException"), null, "FatalTaskError", "TaskName");
248
service.
LogFatalError
(s_buildEventContext, null, fileInfo, resourceName, parameters);
262
service.
LogFatalError
(s_buildEventContext, new Exception("SuperException"), fileInfo, null);
276
service.
LogFatalError
(s_buildEventContext, new Exception("SuperException"), fileInfo, string.Empty, null);
297
service.
LogFatalError
(s_buildEventContext, exception, fileInfo, resourceName, parameter);