7 references to dependsOnTargets
Microsoft.Build (6)
Construction\ProjectTargetElement.cs (4)
198
return GetAttributeValue(XMakeAttributes.
dependsOnTargets
);
203
ErrorUtilities.VerifyThrowArgumentNull(value, XMakeAttributes.
dependsOnTargets
);
204
SetOrRemoveAttribute(XMakeAttributes.
dependsOnTargets
, value, "Set target DependsOnTargets {0}", value);
327
public ElementLocation DependsOnTargetsLocation => GetAttributeLocation(XMakeAttributes.
dependsOnTargets
);
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 };
Microsoft.Build.Engine.UnitTests (1)
XmakeAttributes_Tests.cs (1)
46
Assert.True(XMakeAttributes.IsNonBatchingTargetAttribute(XMakeAttributes.
dependsOnTargets
));