4 references to keepDuplicates
Microsoft.Build (4)
Construction\ProjectItemElement.cs (3)
268
return GetAttributeValue(XMakeAttributes.
keepDuplicates
);
274
SetOrRemoveAttribute(XMakeAttributes.
keepDuplicates
, value, "Set item KeepDuplicates {0}", value);
331
public ElementLocation KeepDuplicatesLocation => GetAttributeLocation(XMakeAttributes.
keepDuplicates
);
Evaluation\ProjectParser.cs (1)
36
private static readonly HashSet<string> KnownAttributesOnItem = new HashSet<string> { XMakeAttributes.condition, XMakeAttributes.label, XMakeAttributes.include, XMakeAttributes.exclude, XMakeAttributes.remove, XMakeAttributes.keepMetadata, XMakeAttributes.removeMetadata, XMakeAttributes.
keepDuplicates
, XMakeAttributes.update, XMakeAttributes.matchOnMetadata, XMakeAttributes.matchOnMetadataOptions };