3 writes to IsCached
Microsoft.Build (3)
BackEnd\Shared\BuildRequestConfiguration.cs (3)
427IsCached = false; 723IsCached = true; 760IsCached = false;
12 references to IsCached
Microsoft.Build (11)
BackEnd\Components\Caching\ConfigCache.cs (3)
152if (configuration.IsCached) 288if (!configuration.IsCached) 292if (configuration.IsCached)
BackEnd\Components\Logging\NodeLoggingContext.cs (1)
85int evaluationId = (configuration != null && !configuration.IsCached && configuration.Project != null) ? configuration.Project.EvaluationId : BuildEventContext.InvalidEvaluationId;
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
416if (buildRequestConfiguration.IsCached) 720if (requestConfiguration.IsCached)
BackEnd\Shared\BuildRequestConfiguration.cs (5)
379ErrorUtilities.VerifyThrow(!IsCached, "We shouldn't be accessing the ProjectInstance when the configuration is cached."); 424if (IsCached) 594ErrorUtilities.VerifyThrow(!IsCached, "Configuration is cached, we shouldn't be accessing the lookup."); 697if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 741if (!IsCached)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
313Assert.False(configuration.IsCached);