1 write to _configCache
Microsoft.Build (1)
BackEnd\Components\Scheduler\Scheduler.cs (1)
691
_configCache
= (IConfigCache)_componentHost.GetComponent(BuildComponentType.ConfigCache);
28 references to _configCache
Microsoft.Build (28)
BackEnd\Components\Scheduler\Scheduler.cs (28)
432
BuildRequestConfiguration config =
_configCache
[result.ConfigurationId];
909
_schedulingPlan = new SchedulingPlan(
_configCache
, _schedulingData);
1083
return
_configCache
[request.ConfigurationId].IsTraversal;
1093
IEnumerable<int> nodesByConfigurationCountAscending = _availableNodes.Keys.OrderBy(x => _schedulingData.GetConfigurationsCountByNode(x, excludeTraversals: true,
_configCache
));
1143
System.IO.FileInfo f = new FileInfo(
_configCache
[unscheduledRequest.BuildRequest.ConfigurationId].ProjectFullPath);
1185
System.IO.FileInfo f = new FileInfo(
_configCache
[unscheduledRequest.BuildRequest.ConfigurationId].ProjectFullPath);
1366
configurationCountsByNode[availableNodeId] = _schedulingData.GetConfigurationsCountByNode(availableNodeId, true /* excludeTraversals */,
_configCache
);
1435
BuildRequestConfiguration config =
_configCache
[request.BuildRequest.ConfigurationId];
1740
BuildRequestConfiguration configuration =
_configCache
[parentRequest.BuildRequest.ConfigurationId];
1770
TraceScheduler($"Received request {request.GlobalRequestId} (node request {request.NodeRequestId}) with parent {request.ParentGlobalRequestId} from node {nodeForResults} for project {
_configCache
![request.ConfigurationId].ProjectFullPath} with targets {(request.Targets.Count == 0 ? "default" : string.Join(";", request.Targets))}");
1835
Assumed.True(
_configCache
.HasConfiguration(request.ConfigurationId), "A request should have a configuration if it makes it this far in the build process.");
1837
var config =
_configCache
[request.ConfigurationId];
2022
BuildRequestConfiguration config =
_configCache
[request.ConfigurationId];
2040
|| SkipNonexistentTargetsIfExistentTargetsHaveResults(request,
_configCache
, _resultsCache))
2047
string projectFullPath =
_configCache
[request.ConfigurationId].ProjectFullPath;
2048
string parentProjectFullPath = GetParentConfigurationId(request,
_configCache
, _schedulingData).ProjectFullPath;
2066
BuildRequestConfiguration requestConfig =
_configCache
[request.ConfigurationId];
2067
BuildRequestConfiguration parentConfig = GetParentConfigurationId(request,
_configCache
, _schedulingData);
2174
if (
_configCache
is not ConfigCacheWithOverride configCacheWithOverride
2208
BuildRequestConfiguration configuration =
_configCache
[request.ConfigurationId];
2261
BuildRequestConfiguration configuration =
_configCache
[request.ConfigurationId];
2645
_configCache
[request.BuildRequest.ConfigurationId].ProjectFullPath,
2886
file.WriteLine("Config {0} Node {1} TV: {2} File {3}", config, _schedulingData.GetAssignedNodeForRequestConfiguration(config),
_configCache
[config].ToolsVersion,
_configCache
[config].ProjectFullPath);
2887
foreach (ProjectPropertyInstance property in
_configCache
[config].GlobalProperties)
2985
_configCache
[buildRequest.ConfigurationId].ProjectFullPath,
2994
SchedulingPlan plan = new SchedulingPlan(
_configCache
, _schedulingData);
3003
_schedulingPlan = new SchedulingPlan(
_configCache
, _schedulingData);