6 references to beforeTargets
Microsoft.Build (6)
Construction\ProjectTargetElement.cs (4)
218
return GetAttributeValue(XMakeAttributes.
beforeTargets
);
223
ErrorUtilities.VerifyThrowArgumentNull(value, XMakeAttributes.
beforeTargets
);
224
SetOrRemoveAttribute(XMakeAttributes.
beforeTargets
, value, "Set target BeforeTargets {0}", value);
332
public ElementLocation BeforeTargetsLocation => GetAttributeLocation(XMakeAttributes.
beforeTargets
);
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 };