2 instantiations of ProxyTargets
Microsoft.Build (2)
BackEnd\Components\ProjectCache\ProxyTargets.cs (2)
47var instance = new ProxyTargets(); 56return experimentalProxyTargets == null ? null : new ProxyTargets(experimentalProxyTargets.ProxyTargetToRealTargetMap);
13 references to ProxyTargets
Microsoft.Build (13)
BackEnd\BuildManager\BuildManager.cs (1)
2035ProxyTargets proxyTargets,
BackEnd\Components\ProjectCache\CacheResult.cs (4)
52public ProxyTargets? ProxyTargets { get; } 59ProxyTargets? proxyTargets = null) 82public static CacheResult IndicateCacheHit(ProxyTargets proxyTargets) 146proxyTargets: ProxyTargets.FromExperimental(experimentalResult.ProxyTargets));
BackEnd\Components\ProjectCache\ProxyTargets.cs (3)
45internal static ProxyTargets FactoryForDeserialization(ITranslator translator) 47var instance = new ProxyTargets(); 54internal static ProxyTargets? FromExperimental(Experimental.ProjectCache.ProxyTargets? experimentalProxyTargets)
BackEnd\Components\Scheduler\Scheduler.cs (1)
1042/// 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)
72private ProxyTargets _proxyTargets; 147ProxyTargets proxyTargets, 310public ProxyTargets ProxyTargets 437translator.Translate(ref _proxyTargets, ProxyTargets.FactoryForDeserialization);