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