7 writes to IsCacheable
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (2)
133configuration.IsCacheable = false; 207configuration.IsCacheable = previousCacheableStatus;
BackEnd\Shared\BuildRequestConfiguration.cs (4)
198IsCacheable = false; 202IsCacheable = true; 226IsCacheable = false; 247IsCacheable = other.IsCacheable;
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
390configuration.IsCacheable = true;
6 references to IsCacheable
Microsoft.Build (4)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
132bool previousCacheableStatus = configuration.IsCacheable;
BackEnd\Shared\BuildRequestConfiguration.cs (3)
247IsCacheable = other.IsCacheable; 704if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 711if (IsCacheable)
Microsoft.Build.Engine.UnitTests (2)
BackEnd\BuildRequestConfiguration_Tests.cs (2)
311Assert.True(configuration.IsCacheable); 389Assert.False(configuration.IsCacheable);