3 writes to IsCached
Microsoft.Build (3)
BackEnd\Shared\BuildRequestConfiguration.cs (3)
423IsCached = false; 719IsCached = true; 756IsCached = 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)
78int evaluationId = (configuration != null && !configuration.IsCached && configuration.Project != null) ? configuration.Project.EvaluationId : BuildEventContext.InvalidEvaluationId;
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
415if (buildRequestConfiguration.IsCached) 716if (requestConfiguration.IsCached)
BackEnd\Shared\BuildRequestConfiguration.cs (5)
375ErrorUtilities.VerifyThrow(!IsCached, "We shouldn't be accessing the ProjectInstance when the configuration is cached."); 420if (IsCached) 590ErrorUtilities.VerifyThrow(!IsCached, "Configuration is cached, we shouldn't be accessing the lookup."); 693if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 737if (!IsCached)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
310Assert.False(configuration.IsCached);