5 references to keepDuplicateOutputs
Microsoft.Build (5)
Construction\ProjectTargetElement.cs (4)
170string value = GetAttributeValue(XMakeAttributes.keepDuplicateOutputs); 183ErrorUtilities.VerifyThrowArgumentNull(value, XMakeAttributes.keepDuplicateOutputs); 184SetOrRemoveAttribute(XMakeAttributes.keepDuplicateOutputs, value, "Set target KeepDuplicateOutputs {0}", value); 312ElementLocation location = GetAttributeLocation(XMakeAttributes.keepDuplicateOutputs);
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 };