3 writes to IsCached
Microsoft.Build (3)
BackEnd\Shared\BuildRequestConfiguration.cs (3)
433IsCached = false; 729IsCached = true; 766IsCached = false;
12 references to IsCached
Microsoft.Build (11)
BackEnd\Components\Caching\ConfigCache.cs (3)
133if (configuration.IsCached) 259if (!configuration.IsCached) 263if (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)
493if (buildRequestConfiguration.IsCached) 816if (requestConfiguration.IsCached)
BackEnd\Shared\BuildRequestConfiguration.cs (5)
385ErrorUtilities.VerifyThrow(!IsCached, "We shouldn't be accessing the ProjectInstance when the configuration is cached."); 430if (IsCached) 600ErrorUtilities.VerifyThrow(!IsCached, "Configuration is cached, we shouldn't be accessing the lookup."); 703if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 747if (!IsCached)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
313Assert.False(configuration.IsCached);