1 instantiation of TargetSpecification
Microsoft.Build (1)
Graph\ProjectInterpretation.cs (1)
509.Select(t => new TargetSpecification(t, skipNonexistentTargets)).ToArray();
10 references to TargetSpecification
Microsoft.Build (10)
Graph\ProjectInterpretation.cs (10)
469private readonly ImmutableList<TargetSpecification> _outerBuildTargets; 470private readonly ImmutableList<TargetSpecification> _allTargets; 472private TargetsToPropagate(ImmutableList<TargetSpecification> outerBuildTargets, ImmutableList<TargetSpecification> nonOuterBuildTargets) 494ImmutableList<TargetSpecification>.Builder targetsForOuterBuild = ImmutableList.CreateBuilder<TargetSpecification>(); 495ImmutableList<TargetSpecification>.Builder targetsForInnerBuild = ImmutableList.CreateBuilder<TargetSpecification>(); 508TargetSpecification[] targets = ExpressionShredder.SplitSemiColonSeparatedList(targetsMetadataValue) 527ImmutableList<string> RemoveNonexistentTargetsIfSkippable(ImmutableList<TargetSpecification> targets)