1 instantiation of LoggingService
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingService.cs (1)
877return new LoggingService(mode, node);
10 references to LoggingService
Microsoft.Build (10)
BackEnd\BuildManager\BuildManager.cs (2)
2123((LoggingService)((IBuildComponentHost)this).LoggingService).WaitForLoggingToProcessEvents(); 3295ILoggingService loggingService = LoggingService.CreateLoggingService(loggerMode,
BackEnd\Components\Logging\LoggingServiceFactory.cs (1)
49IBuildComponent loggingService = (IBuildComponent)LoggingService.CreateLoggingService(_logMode, _nodeId);
BackEnd\Components\RequestBuilder\AssemblyLoadsTracker.cs (4)
22private readonly LoggingService? _loggingService; 29LoggingService? loggingService, 56LoggingService loggingService, 81LoggingService? loggingService,
Definition\Project.cs (1)
3215if (LoggingService is LoggingService defaultLoggingService)
Definition\ProjectCollection.cs (2)
1893(LoggingService as LoggingService)?.WaitForLoggingToProcessEvents(); 1921_loggingService = BackEnd.Logging.LoggingService.CreateLoggingService(_loggerMode, 0 /*Evaluation can be done as if it was on node "0"*/);