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