10 references to itemName
Microsoft.Build (10)
BackEnd\Components\RequestBuilder\TaskBuilder.cs (1)
1106
XMakeAttributes.
itemName
,
Construction\ProjectOutputElement.cs (6)
88
return GetAttributeValue(XMakeAttributes.
itemName
);
93
ErrorUtilities.VerifyThrowInvalidOperation(String.IsNullOrEmpty(PropertyName), "OM_EitherAttributeButNotBoth", ElementName, XMakeAttributes.
itemName
, XMakeAttributes.propertyName);
94
SetOrRemoveAttribute(XMakeAttributes.
itemName
, value, "Set Output ItemType {0}", value);
113
ErrorUtilities.VerifyThrowInvalidOperation(String.IsNullOrEmpty(ItemType), "OM_EitherAttributeButNotBoth", ElementName, XMakeAttributes.
itemName
, XMakeAttributes.propertyName);
131
public ElementLocation ItemTypeLocation => GetAttributeLocation(XMakeAttributes.
itemName
);
146
XMakeAttributes.
itemName
);
Evaluation\ProjectParser.cs (3)
66
private static readonly HashSet<string> ValidAttributesOnOutput = new HashSet<string> { XMakeAttributes.condition, XMakeAttributes.label, XMakeAttributes.taskParameter, XMakeAttributes.
itemName
, XMakeAttributes.propertyName };
687
XmlAttributeWithLocation itemNameAttribute = element.GetAttributeWithLocation(XMakeAttributes.
itemName
);
696
ProjectXmlUtilities.VerifyThrowProjectAttributeEitherMissingOrNotEmpty(element, itemNameAttribute, XMakeAttributes.
itemName
);