3 writes to IsCached
Microsoft.Build (3)
BackEnd\Shared\BuildRequestConfiguration.cs (3)
452IsCached = false; 748IsCached = true; 785IsCached = false;
11 references to IsCached
Microsoft.Build (10)
BackEnd\Components\Caching\ConfigCache.cs (3)
133if (configuration.IsCached) 259if (!configuration.IsCached) 263if (configuration.IsCached)
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
493if (buildRequestConfiguration.IsCached) 842if (requestConfiguration.IsCached)
BackEnd\Shared\BuildRequestConfiguration.cs (5)
403ErrorUtilities.VerifyThrow(!IsCached, "We shouldn't be accessing the ProjectInstance when the configuration is cached."); 449if (IsCached) 619ErrorUtilities.VerifyThrow(!IsCached, "Configuration is cached, we shouldn't be accessing the lookup."); 722if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 766if (!IsCached)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
312Assert.False(configuration.IsCached);