7 instantiations of ProjectRootElementCache
Microsoft.Build (4)
BackEnd\BuildManager\BuildManager.cs (1)
1345new ProjectRootElementCache(false /* do not automatically reload from disk */);
BackEnd\BuildManager\BuildParameters.cs (1)
243Initialize(Utilities.GetEnvironmentProperties(makeReadOnly: false), new ProjectRootElementCache(false), null);
BackEnd\Node\OutOfProcNode.cs (1)
172s_projectRootElementCacheBase = new ProjectRootElementCache(true /* automatically reload any changes from disk */);
Definition\ProjectCollection.cs (1)
349ProjectRootElementCache = new ProjectRootElementCache(autoReloadFromDisk, loadProjectsReadOnly);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\MockHost.cs (1)
94_buildParameters.ProjectRootElementCache = new ProjectRootElementCache(false);
Evaluation\ProjectRootElementCache_Tests.cs (2)
112ProjectRootElementCache cache = new ProjectRootElementCache(true /* auto reload from disk */); 146ProjectRootElementCache cache = new ProjectRootElementCache(false /* do not auto reload from disk */);
7 references to ProjectRootElementCache
Microsoft.Build (4)
Definition\Toolset.cs (3)
713/// <param name="projectRootElementCache">The <see cref="ProjectRootElementCache"/> to use.</param> 739/// <param name="projectRootElementCache">The <see cref="ProjectRootElementCache"/> to use.</param> 759/// <param name="projectRootElementCache">The <see cref="ProjectRootElementCache"/> to use.</param>
Instance\TaskRegistry.cs (1)
194/// <param name="projectRootElementCache">The <see cref="ProjectRootElementCache"/> to use.</param>
Microsoft.Build.Engine.UnitTests (3)
Evaluation\ProjectCollection_Tests.cs (1)
18collectionWithDefaultCache.ProjectRootElementCache.ShouldBeOfType<ProjectRootElementCache>();
Evaluation\ProjectRootElementCache_Tests.cs (2)
112ProjectRootElementCache cache = new ProjectRootElementCache(true /* auto reload from disk */); 146ProjectRootElementCache cache = new ProjectRootElementCache(false /* do not auto reload from disk */);