5 references to outputs
Microsoft.Build (5)
Construction\ProjectTargetElement.cs (4)
150return GetAttributeValue(XMakeAttributes.outputs); 155ErrorUtilities.VerifyThrowArgumentNull(value, XMakeAttributes.outputs); 156SetOrRemoveAttribute(XMakeAttributes.outputs, value, "Set target Outputs {0}", value); 303public ElementLocation OutputsLocation => GetAttributeLocation(XMakeAttributes.outputs);
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 };