5 instantiations of ProxyTargets
Microsoft.Build (2)
BackEnd\Components\ProjectCache\ProxyTargets.cs (2)
48
var instance = new
ProxyTargets
();
57
return experimentalProxyTargets == null ? null : new
ProxyTargets
(experimentalProxyTargets.ProxyTargetToRealTargetMap);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\Scheduler_Tests.cs (1)
551
BuildRequest request1 = CreateProxyBuildRequest(1, 1, new
ProxyTargets
(new Dictionary<string, string> { { "foo", "bar" } }), null);
ProjectCache\ProjectCacheTests.cs (2)
136
new
ProxyTargets
(
1624
new
ProxyTargets
(new Dictionary<string, string> { { proxyTarget, cacheHitTarget } })));
15 references to ProxyTargets
Microsoft.Build (13)
BackEnd\BuildManager\BuildManager.cs (1)
1855
ProxyTargets
proxyTargets,
BackEnd\Components\ProjectCache\CacheResult.cs (4)
53
public
ProxyTargets
? ProxyTargets { get; }
60
ProxyTargets
? proxyTargets = null)
85
public static CacheResult IndicateCacheHit(
ProxyTargets
proxyTargets)
149
proxyTargets:
ProxyTargets
.FromExperimental(experimentalResult.ProxyTargets));
BackEnd\Components\ProjectCache\ProxyTargets.cs (3)
46
internal static
ProxyTargets
FactoryForDeserialization(ITranslator translator)
48
var
instance = new ProxyTargets();
55
internal static
ProxyTargets
? FromExperimental(Experimental.ProjectCache.ProxyTargets? experimentalProxyTargets)
BackEnd\Components\Scheduler\Scheduler.cs (1)
1028
/// Proxy build requests <see cref="
ProxyTargets
"/> should be really cheap (only return properties and items) and it's not worth
BackEnd\Shared\BuildRequest.cs (4)
71
private
ProxyTargets
_proxyTargets;
146
ProxyTargets
proxyTargets,
309
public
ProxyTargets
ProxyTargets
436
translator.Translate(ref _proxyTargets,
ProxyTargets
.FactoryForDeserialization);
Microsoft.Build.Engine.UnitTests (2)
BackEnd\Scheduler_Tests.cs (2)
819
ProxyTargets
proxyTargets = null,
856
private BuildRequest CreateProxyBuildRequest(int nodeRequestId, int configId,
ProxyTargets
proxyTargets, BuildRequest parentRequest)