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