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)
329Assert.Equal(2, entry.Lookup.GetItems("Compile").Count); 330Assert.Single(entry.Lookup.GetItems("FooTask1_Item")); 331Assert.Single(entry.Lookup.GetItems("BarTask1_Item")); 352Assert.Equal(2, entry.Lookup.GetItems("Compile").Count); 363Assert.Equal(2, entry.Lookup.GetItems("Compile").Count); 364Assert.Single(entry.Lookup.GetItems("FooTask1_Item")); 938TargetEntry entry = new TargetEntry(requestEntry, this, new TargetSpecification(target, project.Targets[target].Location), baseEntry.Lookup, baseEntry, TargetBuiltReason.None, _host, null, false);