3 instantiations of UsingTaskParameterGroupElement
Microsoft.Build (3)
Construction\UsingTaskParameterGroupElement.cs (1)
105return new UsingTaskParameterGroupElement(element, containingProject);
Evaluation\ProjectParser.cs (1)
480UsingTaskParameterGroupElement parameterGroup = new UsingTaskParameterGroupElement(element, parent, _project);
ObjectModelRemoting\LinkedObjectFactory.cs (1)
232return new UsingTaskParameterGroupElement(link);
38 references to UsingTaskParameterGroupElement
Microsoft.Build (17)
Construction\ProjectRootElement.cs (2)
1450public UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement() 1452return 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) 193ErrorUtilities.VerifyThrowInvalidOperation(parent is UsingTaskParameterGroupElement, "OM_CannotAcceptParent");
Construction\UsingTaskParameterGroupElement.cs (1)
101internal 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)
1625UsingTaskParameterGroupElement parameterGroupElement = projectUsingTaskXml.ParameterGroup; 1674private void ParseUsingTaskParameterGroupElement<P, I>(UsingTaskParameterGroupElement usingTaskParameterGroup, Expander<P, I> expander, ExpanderOptions expanderOptions)
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementContainerLink.cs (1)
128/// Allow for creating a local representation to external object of type <see cref="UsingTaskParameterGroupElement"/>
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
168public abstract UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement();
ObjectModelRemoting\LinkedObjectFactory.cs (1)
230public UsingTaskParameterGroupElement Create(UsingTaskParameterGroupElementLink link)
Microsoft.Build.Engine.OM.UnitTests (16)
Construction\UsingTaskParameterElement_Tests.cs (1)
230UsingTaskParameterGroupElement parameterGroup = usingTask.ParameterGroup;
Construction\UsingTaskParameterGroup_Tests.cs (3)
65UsingTaskParameterGroupElement parameterGroup = GetParameterGroupXml(s_contentEmptyParameterGroup); 77UsingTaskParameterGroupElement parameterGroup = GetParameterGroupXml(s_contentMultipleParameters); 136private static UsingTaskParameterGroupElement GetParameterGroupXml(string contents)
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
747public static void Verify(UsingTaskParameterGroupElement viewXml, UsingTaskParameterGroupElement realXml, ValidationContext context = null)
ObjectModelRemoting\Helpers\ViewValidation.cs (1)
174if (VerifyCheckType<UsingTaskParameterGroupElement>(view, real, context, Verify))
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (4)
129xmlPair.CreateWithVerify<UsingTaskParameterGroupElement>((p) => p.CreateUsingTaskParameterGroupElement()); 505var pg = usingTaskFile.AddNewChaildWithVerify<UsingTaskParameterGroupElement>(ObjectType.View, "pg", (ut, e) => ut.AddParameterGroup(), (ut, e) => true); 540var taskParamGroup = usingTask.AddNewChaildWithVerify<UsingTaskParameterGroupElement>(ObjectType.View, "pg", (ut, e) => ut.AddParameterGroup(), (ut, e) => true); 560var taskParamGroup = usingTask.AddNewChaildWithVerify<UsingTaskParameterGroupElement>(ObjectType.View, "pg", (ut, e) => ut.AddParameterGroup(), (ut, e) => true);
ObjectModelRemoting\LinkedConstructionReadOnly_Tests.cs (2)
310var realCollection = preReal.AllChildren.OfType<UsingTaskParameterGroupElement>().ToList(); 311var viewCollection = preView.AllChildren.OfType<UsingTaskParameterGroupElement>().ToList();
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (2)
298public override UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement() 300return (UsingTaskParameterGroupElement)this.Proxy.CreateUsingTaskParameterGroupElement().Import(this.Linker);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\ProjectElemetExportHelper.cs (1)
73ElementInfo.New<UsingTaskParameterGroupElement , MockUsingTaskParameterGroupElementLinkRemoter>(),
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TaskRegistry_Tests.cs (4)
1301UsingTaskParameterGroupElement parameterGroup = element.AddParameterGroup(); 1671UsingTaskParameterGroupElement parameterGroup = element.AddParameterGroup(); 1926var parameterGroup = taskbyFile1.AddParameterGroup(); 2143UsingTaskParameterGroupElement parameterGroup = element.AddParameterGroup();
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (1)
TargetTests.cs (1)
961var taskParams = task.AddParameterGroup();