3 writes to IsCached
Microsoft.Build (3)
BackEnd\Shared\BuildRequestConfiguration.cs (3)
434IsCached = false; 730IsCached = true; 767IsCached = 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) 814if (requestConfiguration.IsCached)
BackEnd\Shared\BuildRequestConfiguration.cs (5)
386ErrorUtilities.VerifyThrow(!IsCached, "We shouldn't be accessing the ProjectInstance when the configuration is cached."); 431if (IsCached) 601ErrorUtilities.VerifyThrow(!IsCached, "Configuration is cached, we shouldn't be accessing the lookup."); 704if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 748if (!IsCached)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
313Assert.False(configuration.IsCached);