BackEnd\BuildManager\BuildManager.cs (33)
368private ISdkResolverService SdkResolverService => ((this as IBuildComponentHost).GetComponent(BuildComponentType.SdkResolverService) as ISdkResolverService)!;
374ILoggingService IBuildComponentHost.LoggingService => _componentFactories.GetComponent<ILoggingService>(BuildComponentType.LoggingService);
379string IBuildComponentHost.Name => _hostName;
385BuildParameters? IBuildComponentHost.BuildParameters => _buildParameters;
390LegacyThreadingData IBuildComponentHost.LegacyThreadingData => _legacyThreadingData;
563_nodeManager = ((IBuildComponentHost)this).GetComponent(BuildComponentType.NodeManager) as INodeManager;
594_taskHostNodeManager = ((IBuildComponentHost)this).GetComponent<INodeManager>(BuildComponentType.TaskHostNodeManager);
595_scheduler = ((IBuildComponentHost)this).GetComponent<IScheduler>(BuildComponentType.Scheduler);
686_configCache = ((IBuildComponentHost)this).GetComponent<IConfigCache>(BuildComponentType.ConfigCache);
687_resultsCache = ((IBuildComponentHost)this).GetComponent<IResultsCache>(BuildComponentType.ResultsCache);
779ILoggingService loggingService = ((IBuildComponentHost)this).LoggingService;
833_configCache = ((IBuildComponentHost)this).GetComponent<IConfigCache>(BuildComponentType.ConfigCache);
834_resultsCache = ((IBuildComponentHost)this).GetComponent<IResultsCache>(BuildComponentType.ResultsCache);
854_configCache = ((IBuildComponentHost)this).GetComponent(BuildComponentType.ConfigCache) as IConfigCache;
1033ILoggingService? loggingService = ((IBuildComponentHost)this).LoggingService;
1165_nodeManager ??= (INodeManager)((IBuildComponentHost)this).GetComponent(BuildComponentType.NodeManager);
1205void IBuildComponentHost.RegisterFactory(BuildComponentType componentType, BuildComponentFactoryDelegate factory)
1215IBuildComponent IBuildComponentHost.GetComponent(BuildComponentType type)
1220TComponent IBuildComponentHost.GetComponent<TComponent>(BuildComponentType type)
1396((IBuildComponentHost)this).LoggingService.LogBuildEvent(submissionStartedEvent);
1482((IBuildComponentHost)this).LoggingService,
1737((IBuildComponentHost)this).LoggingService.LogInvalidProjectFileError(buildEventContext, projectException);
1755((LoggingService)((IBuildComponentHost)this).LoggingService).WaitForLoggingToProcessEvents();
1846((IBuildComponentHost)this).LoggingService.LogInvalidProjectFileError(projectBuildEventContext, projectException);
1862((IBuildComponentHost)this).LoggingService.LogFatalBuildError(buildEventContext, ex, new BuildEventFileInfo(submission.BuildRequestData.ProjectFullPath));
1914((IBuildComponentHost)this).LoggingService,
2480ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.LoggingService);
2493ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.LoggingService);
2640((IBuildComponentHost)this).LoggingService.LogError(buildEventContext, new BuildEventFileInfo(String.Empty), "UnableToCreateNode", response.RequiredNodeType.ToString("G"));
2767ILoggingService loggingService = ((IBuildComponentHost)this).GetComponent<ILoggingService>(BuildComponentType.LoggingService);
2931((IBuildComponentHost)this).GetComponent(BuildComponentType.BuildCheckManagerProvider) as IBuildCheckManagerProvider;
3223var loggingService = ((IBuildComponentHost)this).LoggingService;
3230var loggingService = ((IBuildComponentHost)this).LoggingService;