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