3 instantiations of UsingTaskParameterGroupElement
Microsoft.Build (3)
Construction\UsingTaskParameterGroupElement.cs (1)
99
return new
UsingTaskParameterGroupElement
(element, containingProject);
Evaluation\ProjectParser.cs (1)
480
UsingTaskParameterGroupElement parameterGroup = new
UsingTaskParameterGroupElement
(element, parent, _project);
ObjectModelRemoting\LinkedObjectFactory.cs (1)
232
return new
UsingTaskParameterGroupElement
(link);
17 references to UsingTaskParameterGroupElement
Microsoft.Build (17)
Construction\ProjectRootElement.cs (2)
1474
public
UsingTaskParameterGroupElement
CreateUsingTaskParameterGroupElement()
1476
return Link != null ? RootLink.CreateUsingTaskParameterGroupElement() :
UsingTaskParameterGroupElement
.CreateDisconnected(this);
Construction\ProjectUsingTaskElement.cs (5)
160
public
UsingTaskParameterGroupElement
ParameterGroup
164
UsingTaskParameterGroupElement
parameterGroup = FirstChild as
UsingTaskParameterGroupElement
;
208
public
UsingTaskParameterGroupElement
AddParameterGroup()
210
UsingTaskParameterGroupElement
newParameterGroup = ContainingProject.CreateUsingTaskParameterGroupElement();
Construction\ProjectUsingTaskParameterElement.cs (2)
31
internal ProjectUsingTaskParameterElement(XmlElementWithLocation xmlElement,
UsingTaskParameterGroupElement
parent, ProjectRootElement containingProject)
187
ErrorUtilities.VerifyThrowInvalidOperation(parent is
UsingTaskParameterGroupElement
, "OM_CannotAcceptParent");
Construction\UsingTaskParameterGroupElement.cs (1)
95
internal static
UsingTaskParameterGroupElement
CreateDisconnected(ProjectRootElement containingProject)
Evaluation\ProjectParser.cs (2)
475
private
UsingTaskParameterGroupElement
ParseUsingTaskParameterGroupElement(XmlElementWithLocation element, ProjectElementContainer parent)
480
UsingTaskParameterGroupElement
parameterGroup = new UsingTaskParameterGroupElement(element, parent, _project);
Instance\TaskRegistry.cs (2)
1685
UsingTaskParameterGroupElement
parameterGroupElement = projectUsingTaskXml.ParameterGroup;
1734
private 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)
166
public abstract
UsingTaskParameterGroupElement
CreateUsingTaskParameterGroupElement();
ObjectModelRemoting\LinkedObjectFactory.cs (1)
230
public
UsingTaskParameterGroupElement
Create(UsingTaskParameterGroupElementLink link)