4 instantiations of ProxyTargets
Microsoft.Build (1)
BackEnd\Components\ProjectCache\ProxyTargets.cs (1)
48
var instance = new
ProxyTargets
();
Microsoft.Build.Engine.UnitTests (3)
BackEnd\Scheduler_Tests.cs (1)
547
BuildRequest request1 = CreateProxyBuildRequest(1, 1, new
ProxyTargets
(new Dictionary<string, string> { { "foo", "bar" } }), null);
ProjectCache\ProjectCacheTests.cs (2)
117
new
ProxyTargets
(
1605
new
ProxyTargets
(new Dictionary<string, string> { { proxyTarget, cacheHitTarget } })));
13 references to ProxyTargets
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (1)
1775
ProxyTargets
proxyTargets,
BackEnd\Components\ProjectCache\CacheResult.cs (3)
53
public
ProxyTargets
? ProxyTargets { get; }
60
ProxyTargets
? proxyTargets = null)
85
public static CacheResult IndicateCacheHit(
ProxyTargets
proxyTargets)
BackEnd\Components\ProjectCache\ProxyTargets.cs (2)
46
internal static
ProxyTargets
FactoryForDeserialization(ITranslator translator)
48
var
instance = new ProxyTargets();
BackEnd\Components\Scheduler\Scheduler.cs (1)
983
/// 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;
144
ProxyTargets
proxyTargets,
307
public
ProxyTargets
ProxyTargets
434
translator.Translate(ref _proxyTargets,
ProxyTargets
.FactoryForDeserialization);
Microsoft.Build.Engine.UnitTests (2)
BackEnd\Scheduler_Tests.cs (2)
808
private BuildRequest CreateBuildRequest(int nodeRequestId, int configId, string[] targets, NodeAffinity nodeAffinity, BuildRequest parentRequest,
ProxyTargets
proxyTargets = null)
841
private BuildRequest CreateProxyBuildRequest(int nodeRequestId, int configId,
ProxyTargets
proxyTargets, BuildRequest parentRequest)