7 writes to IsCacheable
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (2)
128configuration.IsCacheable = false; 202configuration.IsCacheable = previousCacheableStatus;
BackEnd\Shared\BuildRequestConfiguration.cs (4)
196IsCacheable = false; 200IsCacheable = true; 224IsCacheable = false; 245IsCacheable = other.IsCacheable;
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
386configuration.IsCacheable = true;
6 references to IsCacheable
Microsoft.Build (4)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
127bool previousCacheableStatus = configuration.IsCacheable;
BackEnd\Shared\BuildRequestConfiguration.cs (3)
245IsCacheable = other.IsCacheable; 693if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 700if (IsCacheable)
Microsoft.Build.Engine.UnitTests (2)
BackEnd\BuildRequestConfiguration_Tests.cs (2)
308Assert.True(configuration.IsCacheable); 385Assert.False(configuration.IsCacheable);