28 references to GetTargetLists
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
1941
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetsPerNode = projectGraph.
GetTargetLists
(submission.BuildRequestData.TargetNames);
Microsoft.Build.Engine.UnitTests (27)
Graph\ProjectGraph_Tests.cs (27)
56
projectGraph.
GetTargetLists
(new[] { "restore", "build" }).ShouldBeEmpty();
927
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new[] { "A" });
955
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new[] { "A" });
986
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new[] { "A" });
1008
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(null);
1026
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new[] { "Foo" });
1049
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(null);
1072
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new[] { "A" });
1089
Should.Throw<ArgumentException>(() => projectGraph.
GetTargetLists
(new[] { " " }));
1115
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new List<string> { "A" });
1156
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new List<string> { "A" });
1190
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new List<string> { "A" });
1261
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = graph.
GetTargetLists
(new[] { "A" });
1362
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(new List<string> { "A" });
1397
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(null);
1420
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(null);
1450
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(null);
1507
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(entryProjectTargets: null);
1552
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = graph.
GetTargetLists
(entryProjectTargets: new[] { "Build" });
1602
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = graph.
GetTargetLists
(entryProjectTargets: new[] { "Build" });
1633
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = graph.
GetTargetLists
(null);
1845
var targetsPerNode = graph.
GetTargetLists
(new[] { "Build" });
2617
var targetLists = graph.
GetTargetLists
(new[] { "Build" });
2696
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = graph.
GetTargetLists
(Array.Empty<string>());
2738
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = graph.
GetTargetLists
(Array.Empty<string>());
2797
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = graph.
GetTargetLists
(Array.Empty<string>());
2877
IReadOnlyDictionary<ProjectGraphNode, ImmutableList<string>> targetLists = projectGraph.
GetTargetLists
(entryTargets);