14 references to LoggingService
Microsoft.Build (14)
BackEnd\BuildManager\BuildManager.cs (7)
381
ILoggingService IBuildComponentHost.LoggingService => _componentFactories.GetComponent<ILoggingService>(BuildComponentType.
LoggingService
);
2745
ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.
LoggingService
);
2758
ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.
LoggingService
);
3030
ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.
LoggingService
);
3181
_componentFactories.ReplaceFactory(BuildComponentType.
LoggingService
, loggingService as IBuildComponent);
3399
_componentFactories.ShutdownComponent(BuildComponentType.
LoggingService
);
3406
_componentFactories.ReplaceFactory(BuildComponentType.
LoggingService
, (IBuildComponent?)null);
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
80
_componentEntriesByType[BuildComponentType.
LoggingService
] = new BuildComponentEntry(BuildComponentType.
LoggingService
, null);
BackEnd\Components\Logging\LoggingServiceFactory.cs (1)
48
Assumed.Equal(type, BuildComponentType.
LoggingService
, $"Cannot create components of type {type}");
BackEnd\Components\SdkResolution\MainNodeSdkResolverService.cs (2)
75
ILoggingService loggingService = Host.GetComponent(BuildComponentType.
LoggingService
) as ILoggingService;
83
ILoggingService loggingService = Host.GetComponent(BuildComponentType.
LoggingService
) as ILoggingService;
BackEnd\Node\OutOfProcNode.cs (2)
777
_componentFactories.ReplaceFactory(BuildComponentType.
LoggingService
, loggingServiceFactory.CreateInstance);
779
_loggingService = _componentFactories.GetComponent(BuildComponentType.
LoggingService
) as ILoggingService;