11 references to CacheResultType
Microsoft.Build (10)
BackEnd\Components\ProjectCache\Experimental\CacheResult.cs (10)
44/// Results representing cache hits (with <see cref="ResultType"/> == <see cref="CacheResultType.CacheHit"/>) 51public CacheResultType ResultType { get; } 60CacheResultType resultType, 64if (resultType == CacheResultType.CacheHit) 78ResultType = CacheResultType.None; 84return new CacheResult(CacheResultType.CacheHit, buildResult); 89return new CacheResult(CacheResultType.CacheHit, proxyTargets: proxyTargets); 96return new CacheResult(CacheResultType.CacheHit, ConstructBuildResult(targetResults)); 99public static CacheResult IndicateNonCacheHit(CacheResultType resultType) 101ErrorUtilities.VerifyThrow(resultType != CacheResultType.CacheHit, "CantBeCacheHit");
ProjectCachePlugin (1)
AssemblyMockCache.cs (1)
54return Task.FromResult(CacheResult.IndicateNonCacheHit(CacheResultType.CacheNotApplicable));