Implemented interface member:
method
LogErrorFromText
Microsoft.Build.BackEnd.Logging.ILoggingService.LogErrorFromText(Microsoft.Build.Framework.BuildEventContext, System.String, System.String, System.String, Microsoft.Build.Shared.BuildEventFileInfo, System.String)
6 references to LogErrorFromText
Microsoft.Build (2)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (2)
117LogErrorFromText(buildEventContext, subcategoryResourceName, errorCode, helpKeyword, file, message); 238LogErrorFromText(buildEventContext, null, errorCode, helpKeyword, file, message);
Microsoft.Build.Engine.UnitTests (4)
BackEnd\LoggingServicesLogMethod_Tests.cs (4)
376service.LogErrorFromText(null, "SubCategoryForSolutionParsingErrors", "WarningCode", "HelpKeyword", new BuildEventFileInfo("foo.cs"), "Message"); 389service.LogErrorFromText(s_buildEventContext, "SubCategoryForSolutionParsingErrors", "WarningCode", "HelpKeyword", null, "Message"); 402service.LogErrorFromText(null, "SubCategoryForSolutionParsingErrors", "WarningCode", "HelpKeyword", new BuildEventFileInfo("foo.cs"), null); 1352service.LogErrorFromText(s_buildEventContext, subcategoryKey, errorCode, helpKeyword, fileInfo, message);