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