11 references to Lookup
Microsoft.Build (4)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (4)
432bool didPushTargets = await PushTargets(afterTargets, currentTargetEntry.ParentEntry, currentTargetEntry.Lookup, currentTargetEntry.ErrorTarget, currentTargetEntry.StopProcessingOnCompletion, TargetBuiltReason.AfterTargets); 453bool pushedTargets = await PushTargets(beforeTargets, currentTargetEntry, currentTargetEntry.Lookup, currentTargetEntry.ErrorTarget, stopProcessingStack, TargetBuiltReason.BeforeTargets); 462await PushTargets(dependencies, currentTargetEntry, currentTargetEntry.Lookup, false, false, TargetBuiltReason.DependsOn); 500await PushTargets(errorTargets, currentTargetEntry, currentTargetEntry.Lookup, true,
Microsoft.Build.Engine.UnitTests (7)
BackEnd\TargetEntry_Tests.cs (7)
337Assert.Equal(2, entry.Lookup.GetItems("Compile").Count); 338Assert.Single(entry.Lookup.GetItems("FooTask1_Item")); 339Assert.Single(entry.Lookup.GetItems("BarTask1_Item")); 363Assert.Equal(2, entry.Lookup.GetItems("Compile").Count); 374Assert.Equal(2, entry.Lookup.GetItems("Compile").Count); 375Assert.Single(entry.Lookup.GetItems("FooTask1_Item")); 1044TargetEntry entry = new TargetEntry(requestEntry, this, new TargetSpecification(target, project.Targets[target].Location), baseEntry.Lookup, baseEntry, TargetBuiltReason.None, _host, false);