3 instantiations of UsingTaskParameterGroupElement
Microsoft.Build (3)
Construction\UsingTaskParameterGroupElement.cs (1)
99return new UsingTaskParameterGroupElement(element, containingProject);
Evaluation\ProjectParser.cs (1)
480UsingTaskParameterGroupElement parameterGroup = new UsingTaskParameterGroupElement(element, parent, _project);
ObjectModelRemoting\LinkedObjectFactory.cs (1)
232return new UsingTaskParameterGroupElement(link);
17 references to UsingTaskParameterGroupElement
Microsoft.Build (17)
Construction\ProjectRootElement.cs (2)
1474public UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement() 1476return Link != null ? RootLink.CreateUsingTaskParameterGroupElement() : UsingTaskParameterGroupElement.CreateDisconnected(this);
Construction\ProjectUsingTaskElement.cs (5)
160public UsingTaskParameterGroupElement ParameterGroup 164UsingTaskParameterGroupElement parameterGroup = FirstChild as UsingTaskParameterGroupElement; 208public UsingTaskParameterGroupElement AddParameterGroup() 210UsingTaskParameterGroupElement newParameterGroup = ContainingProject.CreateUsingTaskParameterGroupElement();
Construction\ProjectUsingTaskParameterElement.cs (2)
31internal ProjectUsingTaskParameterElement(XmlElementWithLocation xmlElement, UsingTaskParameterGroupElement parent, ProjectRootElement containingProject) 187ErrorUtilities.VerifyThrowInvalidOperation(parent is UsingTaskParameterGroupElement, "OM_CannotAcceptParent");
Construction\UsingTaskParameterGroupElement.cs (1)
95internal static UsingTaskParameterGroupElement CreateDisconnected(ProjectRootElement containingProject)
Evaluation\ProjectParser.cs (2)
475private UsingTaskParameterGroupElement ParseUsingTaskParameterGroupElement(XmlElementWithLocation element, ProjectElementContainer parent) 480UsingTaskParameterGroupElement parameterGroup = new UsingTaskParameterGroupElement(element, parent, _project);
Instance\TaskRegistry.cs (2)
1685UsingTaskParameterGroupElement parameterGroupElement = projectUsingTaskXml.ParameterGroup; 1734private void ParseUsingTaskParameterGroupElement<P, I>(UsingTaskParameterGroupElement usingTaskParameterGroup, Expander<P, I> expander, ExpanderOptions expanderOptions)
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementContainerLink.cs (1)
126/// Allow for creating a local representation to external object of type <see cref="UsingTaskParameterGroupElement"/>
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
166public abstract UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement();
ObjectModelRemoting\LinkedObjectFactory.cs (1)
230public UsingTaskParameterGroupElement Create(UsingTaskParameterGroupElementLink link)