6 references to afterTargets
Microsoft.Build (6)
Construction\ProjectTargetElement.cs (4)
238
return GetAttributeValue(XMakeAttributes.
afterTargets
);
243
ErrorUtilities.VerifyThrowArgumentNull(value, XMakeAttributes.
afterTargets
);
244
SetOrRemoveAttribute(XMakeAttributes.
afterTargets
, value, "Set target AfterTargets {0}", value);
342
public ElementLocation AfterTargetsLocation => GetAttributeLocation(XMakeAttributes.
afterTargets
);
Evaluation\ProjectParser.cs (1)
56
private static readonly HashSet<string> ValidAttributesOnTarget = new HashSet<string> { XMakeAttributes.condition, XMakeAttributes.label, XMakeAttributes.name, XMakeAttributes.inputs, XMakeAttributes.outputs, XMakeAttributes.keepDuplicateOutputs, XMakeAttributes.dependsOnTargets, XMakeAttributes.beforeTargets, XMakeAttributes.
afterTargets
, XMakeAttributes.returns };
XMakeAttributes.cs (1)
108
private static readonly HashSet<string> KnownBatchingTargetAttributes = new HashSet<string> { name, condition, dependsOnTargets, beforeTargets,
afterTargets
};