10 references to CacheResultType
Microsoft.Build (10)
BackEnd\Components\ProjectCache\Experimental\CacheResult.cs (10)
43/// Results representing cache hits (with <see cref="ResultType"/> == <see cref="CacheResultType.CacheHit"/>) 50public CacheResultType ResultType { get; } 59CacheResultType resultType, 63if (resultType == CacheResultType.CacheHit) 75ResultType = CacheResultType.None; 81return new CacheResult(CacheResultType.CacheHit, buildResult); 86return new CacheResult(CacheResultType.CacheHit, proxyTargets: proxyTargets); 93return new CacheResult(CacheResultType.CacheHit, ConstructBuildResult(targetResults)); 96public static CacheResult IndicateNonCacheHit(CacheResultType resultType) 98Assumed.NotEqual(resultType, CacheResultType.CacheHit, "CantBeCacheHit");