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