9 references to OutputProperty
Microsoft.Build.Engine (9)
Engine\TaskEngine.cs (3)
1038lookup.SetProperty(new BuildProperty(propertyName, joinedOutputs.ToString(), PropertyType.OutputProperty)); 1088lookup.SetProperty(new BuildProperty(propertyName, joinedOutputs.ToString(), PropertyType.OutputProperty)); 1170lookup.SetProperty(new BuildProperty(propertyName, taskParameterValue, PropertyType.OutputProperty));
ItemsAndProperties\Lookup.cs (1)
652ErrorUtilities.VerifyThrow(property.Type == PropertyType.OutputProperty, "Expected output property");
Properties\BuildPropertyGroup.cs (4)
814(newProperty.Type != PropertyType.OutputProperty)) 830if (newProperty.Type == PropertyType.OutputProperty) 840error.VerifyThrow(existingProperty.Type == PropertyType.OutputProperty, "If we've overriden this property before, it must be stored as an output property in the main property table."); 844error.VerifyThrow((existingProperty == null) || (existingProperty.Type != PropertyType.OutputProperty),
Tasks\IntrinsicTask.cs (1)
47backingPropertyGroup = new BuildPropertyGroup(null /* no parent project */, taskNodeXmlElement, PropertyType.OutputProperty);