23 references to CreatePropertyGroupElement
Microsoft.Build (12)
Construction\ProjectPropertyGroupElement.cs (1)
116return owner.CreatePropertyGroupElement();
Construction\ProjectRootElement.cs (1)
1149ProjectPropertyGroupElement newPropertyGroup = CreatePropertyGroupElement();
Construction\ProjectTargetElement.cs (1)
368ProjectPropertyGroupElement propertyGroup = ContainingProject.CreatePropertyGroupElement();
Construction\Solution\SolutionProjectGenerator.cs (8)
238ProjectPropertyGroupElement solutionConfigurationProperties = msbuildProject.CreatePropertyGroupElement(); 912ProjectPropertyGroupElement directorySolutionPropsPropertyGroup = traversalProject.CreatePropertyGroupElement(); 930ProjectPropertyGroupElement directorySolutionTargetsPropertyGroup = traversalProject.CreatePropertyGroupElement(); 2225ProjectPropertyGroupElement configurationDefaultingPropertyGroup = traversalProject.CreatePropertyGroupElement(); 2231ProjectPropertyGroupElement platformDefaultingPropertyGroup = traversalProject.CreatePropertyGroupElement(); 2259ProjectPropertyGroupElement venusConfiguration = traversalProject.CreatePropertyGroupElement(); 2271ProjectPropertyGroupElement globalProperties = traversalProject.CreatePropertyGroupElement(); 2288ProjectPropertyGroupElement frameworkVersionProperties = traversalProject.CreatePropertyGroupElement();
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
141/// Facilitate remoting the <see cref="ProjectRootElement.CreatePropertyGroupElement"/>.
Microsoft.Build.Engine.OM.UnitTests (11)
Construction\ConstructionEditing_Tests.cs (3)
1554ProjectPropertyGroupElement propertyGroup1 = project.CreatePropertyGroupElement(); 1555ProjectPropertyGroupElement propertyGroup2 = project.CreatePropertyGroupElement(); 1641project.AppendChild(project.CreatePropertyGroupElement());
Construction\ProjectRootElement_Tests.cs (1)
1192when1.AppendChild(pre.CreatePropertyGroupElement());
Definition\ProjectCollection_Tests.cs (3)
1355pre.AppendChild(pre.CreatePropertyGroupElement()); 1365pre.AppendChild(pre.CreatePropertyGroupElement()); 1411pre.AppendChild(pre.CreatePropertyGroupElement());
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (3)
120xmlPair.CreateWithVerify<ProjectPropertyGroupElement>((p) => p.CreatePropertyGroupElement()); 426when.Append2NewLabeledChildrenWithVerify<ProjectPropertyGroupElement>("propGroup", (p, l) => p.CreatePropertyGroupElement(), out var propGroup1, out var propGroup2); 464otherwise.Append2NewLabeledChildrenWithVerify<ProjectPropertyGroupElement>("propGroup", (p, l) => p.CreatePropertyGroupElement(), out var propGroup1, out var propGroup2);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
100return (MockProjectPropertyGroupElementLinkRemoter)this.Export(this.ProjectXml.CreatePropertyGroupElement());