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