7 writes to IsCacheable
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (2)
133configuration.IsCacheable = false; 207configuration.IsCacheable = previousCacheableStatus;
BackEnd\Shared\BuildRequestConfiguration.cs (4)
204IsCacheable = false; 208IsCacheable = true; 233IsCacheable = false; 254IsCacheable = other.IsCacheable;
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
389configuration.IsCacheable = true;
6 references to IsCacheable
Microsoft.Build (4)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
132bool previousCacheableStatus = configuration.IsCacheable;
BackEnd\Shared\BuildRequestConfiguration.cs (3)
254IsCacheable = other.IsCacheable; 722if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 729if (IsCacheable)
Microsoft.Build.Engine.UnitTests (2)
BackEnd\BuildRequestConfiguration_Tests.cs (2)
310Assert.True(configuration.IsCacheable); 388Assert.False(configuration.IsCacheable);