3 writes to propertyGroupElement
Microsoft.Build.Engine (3)
Properties\BuildPropertyGroup.cs (3)
158this.propertyGroupElement = null; 215this.propertyGroupElement = propertyGroupElement; 303this.propertyGroupElement = ownerDocument.CreateElement(XMakeElements.propertyGroup, XMakeAttributes.defaultXmlNamespace);
13 references to propertyGroupElement
Microsoft.Build.Engine (13)
Properties\BuildPropertyGroup.cs (13)
180this.propertyGroupElement.SetAttribute(XMakeAttributes.condition, condition); 181this.conditionAttribute = this.propertyGroupElement.Attributes[XMakeAttributes.condition]; 229foreach (XmlAttribute propertyGroupAttribute in this.propertyGroupElement.Attributes) 252foreach (XmlNode propertyGroupChildNode in this.propertyGroupElement) 355this.conditionAttribute = ProjectXmlUtilities.SetOrRemoveAttribute(propertyGroupElement, XMakeAttributes.condition, value); 371this.conditionAttribute = ProjectXmlUtilities.SetOrRemoveAttribute(propertyGroupElement, XMakeAttributes.condition, condition); 398return this.propertyGroupElement; 446if (this.propertyGroupElement != null) 448if (this.propertyGroupElement.ParentNode is XmlElement) 450return (XmlElement)this.propertyGroupElement.ParentNode; 1021this.propertyGroupElement.AppendChild(propertyToAdd.PropertyElement); 1468get { return this.propertyGroupElement != null; } 1506error.VerifyThrowInvalidOperation(propertyElement.ParentNode == this.propertyGroupElement,