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)
551
BuildRequest request1 = CreateProxyBuildRequest(1, 1, new
ProxyTargets
(new Dictionary<string, string> { { "foo", "bar" } }), null);
ProjectCache\ProjectCacheTests.cs (2)
118
new
ProxyTargets
(
1606
new
ProxyTargets
(new Dictionary<string, string> { { proxyTarget, cacheHitTarget } })));
13 references to ProxyTargets
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (1)
1849
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)
1007
/// 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)
819
ProxyTargets
proxyTargets = null,
856
private BuildRequest CreateProxyBuildRequest(int nodeRequestId, int configId,
ProxyTargets
proxyTargets, BuildRequest parentRequest)