5 references to inputs
Microsoft.Build (5)
Construction\ProjectTargetElement.cs (4)
130return GetAttributeValue(XMakeAttributes.inputs); 135ErrorUtilities.VerifyThrowArgumentNull(value, XMakeAttributes.inputs); 136SetOrRemoveAttribute(XMakeAttributes.inputs, value, "Set target Inputs {0}", value); 298public ElementLocation InputsLocation => GetAttributeLocation(XMakeAttributes.inputs);
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 };