BackEnd\BuildManager\BuildManager.cs (35)
377private ISdkResolverService SdkResolverService => ((this as IBuildComponentHost).GetComponent(BuildComponentType.SdkResolverService) as ISdkResolverService)!;
383ILoggingService IBuildComponentHost.LoggingService => _componentFactories.GetComponent<ILoggingService>(BuildComponentType.LoggingService);
388string IBuildComponentHost.Name => _hostName;
394BuildParameters? IBuildComponentHost.BuildParameters => _buildParameters;
399LegacyThreadingData IBuildComponentHost.LegacyThreadingData => _legacyThreadingData;
607NodeLauncher nodeLauncher = ((IBuildComponentHost)this).GetComponent<NodeLauncher>(BuildComponentType.NodeLauncher);
627_nodeManager = ((IBuildComponentHost)this).GetComponent(BuildComponentType.NodeManager) as INodeManager;
682_taskHostNodeManager = ((IBuildComponentHost)this).GetComponent<INodeManager>(BuildComponentType.TaskHostNodeManager);
683_scheduler = ((IBuildComponentHost)this).GetComponent<IScheduler>(BuildComponentType.Scheduler);
774_configCache = ((IBuildComponentHost)this).GetComponent<IConfigCache>(BuildComponentType.ConfigCache);
775_resultsCache = ((IBuildComponentHost)this).GetComponent<IResultsCache>(BuildComponentType.ResultsCache);
869ILoggingService loggingService = ((IBuildComponentHost)this).LoggingService;
932_configCache = ((IBuildComponentHost)this).GetComponent<IConfigCache>(BuildComponentType.ConfigCache);
933_resultsCache = ((IBuildComponentHost)this).GetComponent<IResultsCache>(BuildComponentType.ResultsCache);
953_configCache = ((IBuildComponentHost)this).GetComponent(BuildComponentType.ConfigCache) as IConfigCache;
1149ILoggingService? loggingService = ((IBuildComponentHost)this).LoggingService;
1377ILoggingService? loggingService = ((IBuildComponentHost)this).LoggingService;
1451_nodeManager ??= (INodeManager)((IBuildComponentHost)this).GetComponent(BuildComponentType.NodeManager);
1491void IBuildComponentHost.RegisterFactory(BuildComponentType componentType, BuildComponentFactoryDelegate factory)
1501IBuildComponent IBuildComponentHost.GetComponent(BuildComponentType type)
1506TComponent IBuildComponentHost.GetComponent<TComponent>(BuildComponentType type)
1680((IBuildComponentHost)this).LoggingService.LogBuildEvent(submissionStartedEvent);
1766((IBuildComponentHost)this).LoggingService,
2021((IBuildComponentHost)this).LoggingService.LogInvalidProjectFileError(buildEventContext, projectException);
2039((LoggingService)((IBuildComponentHost)this).LoggingService).WaitForLoggingToProcessEvents();
2130((IBuildComponentHost)this).LoggingService.LogInvalidProjectFileError(projectBuildEventContext, projectException);
2146((IBuildComponentHost)this).LoggingService.LogFatalBuildError(buildEventContext, ex, new BuildEventFileInfo(submission.BuildRequestData.ProjectFullPath));
2202((IBuildComponentHost)this).LoggingService,
2770ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.LoggingService);
2783ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.LoggingService);
2930((IBuildComponentHost)this).LoggingService.LogError(buildEventContext, new BuildEventFileInfo(String.Empty), "UnableToCreateNode", response.RequiredNodeType.ToString("G"));
3055ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.LoggingService);
3219((IBuildComponentHost)this).GetComponent(BuildComponentType.BuildCheckManagerProvider) as IBuildCheckManagerProvider;
3546var loggingService = ((IBuildComponentHost)this).LoggingService;
3553var loggingService = ((IBuildComponentHost)this).LoggingService;