2 writes to ExpressedAsAttribute
Microsoft.Build (2)
Construction\ProjectMetadataElement.cs (1)
72base.ExpressedAsAttribute = value;
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementLink.cs (1)
128public static void SetExpressedAsAttribute(ProjectElement xml, bool value) => xml.ExpressedAsAttribute = value;
11 references to ExpressedAsAttribute
Microsoft.Build (11)
Construction\ProjectElement.cs (1)
393_expressedAsAttribute = element.ExpressedAsAttribute;
Construction\ProjectElementContainer.cs (7)
444Debug.Assert(child.ExpressedAsAttribute, nameof(SetElementAsAttributeValue) + " method requires that " + 445nameof(child.ExpressedAsAttribute) + " property of child is true"); 460if (child.ExpressedAsAttribute) 476if (child.ExpressedAsAttribute) 496if (child.ExpressedAsAttribute) 520bool SiblingIsExplicitElement(ProjectElement _) => !_.ExpressedAsAttribute; 602if (child.ExpressedAsAttribute)
Construction\ProjectMetadataElement.cs (1)
65get => base.ExpressedAsAttribute;
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementLink.cs (2)
69/// Access to remote <see cref="ProjectElement.ExpressedAsAttribute"/>. 127public static bool GetExpressedAsAttribute(ProjectElement xml) => xml.ExpressedAsAttribute;