1 instantiation of TargetSpecification
Microsoft.Build (1)
Graph\ProjectInterpretation.cs (1)
505.Select(t => new TargetSpecification(t, skipNonexistentTargets)).ToArray();
10 references to TargetSpecification
Microsoft.Build (10)
Graph\ProjectInterpretation.cs (10)
465private readonly ImmutableList<TargetSpecification> _outerBuildTargets; 466private readonly ImmutableList<TargetSpecification> _allTargets; 468private TargetsToPropagate(ImmutableList<TargetSpecification> outerBuildTargets, ImmutableList<TargetSpecification> nonOuterBuildTargets) 490ImmutableList<TargetSpecification>.Builder targetsForOuterBuild = ImmutableList.CreateBuilder<TargetSpecification>(); 491ImmutableList<TargetSpecification>.Builder targetsForInnerBuild = ImmutableList.CreateBuilder<TargetSpecification>(); 504TargetSpecification[] targets = ExpressionShredder.SplitSemiColonSeparatedList(targetsMetadataValue) 523ImmutableList<string> RemoveNonexistentTargetsIfSkippable(ImmutableList<TargetSpecification> targets)