1 instantiation of TargetSpecification
Microsoft.Build (1)
Graph\ProjectInterpretation.cs (1)
513.Select(t => new TargetSpecification(t, skipNonexistentTargets)).ToArray();
10 references to TargetSpecification
Microsoft.Build (10)
Graph\ProjectInterpretation.cs (10)
473private readonly ImmutableList<TargetSpecification> _outerBuildTargets; 474private readonly ImmutableList<TargetSpecification> _allTargets; 476private TargetsToPropagate(ImmutableList<TargetSpecification> outerBuildTargets, ImmutableList<TargetSpecification> nonOuterBuildTargets) 498ImmutableList<TargetSpecification>.Builder targetsForOuterBuild = ImmutableList.CreateBuilder<TargetSpecification>(); 499ImmutableList<TargetSpecification>.Builder targetsForInnerBuild = ImmutableList.CreateBuilder<TargetSpecification>(); 512TargetSpecification[] targets = ExpressionShredder.SplitSemiColonSeparatedList(targetsMetadataValue) 531ImmutableList<string> RemoveNonexistentTargetsIfSkippable(ImmutableList<TargetSpecification> targets)