7 writes to IsCacheable
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (2)
133configuration.IsCacheable = false; 207configuration.IsCacheable = previousCacheableStatus;
BackEnd\Shared\BuildRequestConfiguration.cs (4)
197IsCacheable = false; 201IsCacheable = true; 225IsCacheable = false; 246IsCacheable = 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)
246IsCacheable = other.IsCacheable; 703if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 710if (IsCacheable)
Microsoft.Build.Engine.UnitTests (2)
BackEnd\BuildRequestConfiguration_Tests.cs (2)
311Assert.True(configuration.IsCacheable); 389Assert.False(configuration.IsCacheable);