8 references to RegisteredTaskObjectCache
Microsoft.Build (8)
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
88
_componentEntriesByType[BuildComponentType.
RegisteredTaskObjectCache
] = new BuildComponentEntry(BuildComponentType.
RegisteredTaskObjectCache
, RegisteredTaskObjectCache.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Caching\RegisteredTaskObjectCache.cs (1)
60
ErrorUtilities.VerifyThrow(type == BuildComponentType.
RegisteredTaskObjectCache
, "Cannot create components of type {0}", type);
BackEnd\Components\RequestBuilder\TaskHost.cs (3)
621
var objectCache = (IRegisteredTaskObjectCache)_host.GetComponent(BuildComponentType.
RegisteredTaskObjectCache
);
630
var objectCache = (IRegisteredTaskObjectCache)_host.GetComponent(BuildComponentType.
RegisteredTaskObjectCache
);
639
var objectCache = (IRegisteredTaskObjectCache)_host.GetComponent(BuildComponentType.
RegisteredTaskObjectCache
);
BackEnd\Node\InProcNode.cs (1)
340
IRegisteredTaskObjectCache objectCache = (IRegisteredTaskObjectCache)(_componentHost.GetComponent(BuildComponentType.
RegisteredTaskObjectCache
));
BackEnd\Node\OutOfProcNode.cs (1)
481
IRegisteredTaskObjectCache objectCache = (IRegisteredTaskObjectCache)(_componentFactories.GetComponent(BuildComponentType.
RegisteredTaskObjectCache
));