3 instantiations of ProjectPropertyGroupElement
Microsoft.Build (3)
Construction\ProjectPropertyGroupElement.cs (1)
101
return new
ProjectPropertyGroupElement
(element, containingProject);
Evaluation\ProjectParser.cs (1)
220
ProjectPropertyGroupElement propertyGroup = new
ProjectPropertyGroupElement
(element, parent, _project);
ObjectModelRemoting\LinkedObjectFactory.cs (1)
200
return new
ProjectPropertyGroupElement
(link);
48 references to ProjectPropertyGroupElement
installer.tasks (1)
GenerateFileVersionProps.cs (1)
151
var
propertyGroup = props.AddPropertyGroup();
Microsoft.Build (47)
Construction\ProjectOtherwiseElement.cs (2)
63
public ICollection<
ProjectPropertyGroupElement
> PropertyGroups => GetChildrenOfType<
ProjectPropertyGroupElement
>();
Construction\ProjectPropertyElement.cs (2)
39
internal ProjectPropertyElement(XmlElementWithLocation xmlElement,
ProjectPropertyGroupElement
parent, ProjectRootElement containingProject)
134
ErrorUtilities.VerifyThrowInvalidOperation(parent is
ProjectPropertyGroupElement
, "OM_CannotAcceptParent");
Construction\ProjectPropertyGroupElement.cs (1)
97
internal static
ProjectPropertyGroupElement
CreateDisconnected(ProjectRootElement containingProject)
Construction\ProjectRootElement.cs (14)
346
public ICollection<
ProjectPropertyGroupElement
> PropertyGroups => GetChildrenOfType<
ProjectPropertyGroupElement
>();
382
public ICollection<
ProjectPropertyGroupElement
> PropertyGroupsReversed => GetChildrenReversedOfType<
ProjectPropertyGroupElement
>();
1067
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroupsReversed)
1150
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroupsReversed)
1169
public
ProjectPropertyGroupElement
AddPropertyGroup()
1171
ProjectPropertyGroupElement
reference = null;
1173
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroupsReversed)
1179
ProjectPropertyGroupElement
newPropertyGroup = CreatePropertyGroupElement();
1194
ProjectPropertyGroupElement
matchingPropertyGroup = null;
1197
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroups)
1423
public
ProjectPropertyGroupElement
CreatePropertyGroupElement()
1425
return Link != null ? RootLink.CreatePropertyGroupElement() :
ProjectPropertyGroupElement
.CreateDisconnected(this);
Construction\ProjectTargetElement.cs (4)
64
public ICollection<
ProjectPropertyGroupElement
> PropertyGroups => GetChildrenOfType<
ProjectPropertyGroupElement
>();
366
public
ProjectPropertyGroupElement
AddPropertyGroup()
368
ProjectPropertyGroupElement
propertyGroup = ContainingProject.CreatePropertyGroupElement();
Construction\ProjectWhenElement.cs (2)
59
public ICollection<
ProjectPropertyGroupElement
> PropertyGroups => GetChildrenOfType<
ProjectPropertyGroupElement
>();
Construction\Solution\SolutionProjectGenerator.cs (8)
238
ProjectPropertyGroupElement
solutionConfigurationProperties = msbuildProject.CreatePropertyGroupElement();
959
ProjectPropertyGroupElement
directorySolutionPropsPropertyGroup = traversalProject.CreatePropertyGroupElement();
977
ProjectPropertyGroupElement
directorySolutionTargetsPropertyGroup = traversalProject.CreatePropertyGroupElement();
2295
ProjectPropertyGroupElement
configurationDefaultingPropertyGroup = traversalProject.CreatePropertyGroupElement();
2301
ProjectPropertyGroupElement
platformDefaultingPropertyGroup = traversalProject.CreatePropertyGroupElement();
2329
ProjectPropertyGroupElement
venusConfiguration = traversalProject.CreatePropertyGroupElement();
2341
ProjectPropertyGroupElement
globalProperties = traversalProject.CreatePropertyGroupElement();
2358
ProjectPropertyGroupElement
frameworkVersionProperties = traversalProject.CreatePropertyGroupElement();
Evaluation\Evaluator.cs (7)
479
private static ProjectPropertyGroupTaskInstance ReadPropertyGroupUnderTargetElement(
ProjectPropertyGroupElement
propertyGroupElement)
574
case
ProjectPropertyGroupElement
propertyGroup:
908
case
ProjectPropertyGroupElement
propertyGroup:
988
private void EvaluatePropertyGroupElement(
ProjectPropertyGroupElement
propertyGroupElement)
1485
case
ProjectPropertyGroupElement
propertyGroup:
1976
var
propertyGroup = project.AddPropertyGroup();
2501
if (element is
ProjectPropertyGroupElement
|| element is ProjectImportElement || element is ProjectImportGroupElement)
Evaluation\LazyItemEvaluator.cs (1)
109
if (element is
ProjectPropertyGroupElement
|| element is ProjectImportElement || element is ProjectImportGroupElement)
Evaluation\ProjectParser.cs (2)
216
private
ProjectPropertyGroupElement
ParseProjectPropertyGroupElement(XmlElementWithLocation element, ProjectElementContainer parent)
220
ProjectPropertyGroupElement
propertyGroup = new ProjectPropertyGroupElement(element, parent, _project);
Instance\ProjectInstance.cs (1)
2409
ProjectPropertyGroupElement
propertyGroupElement = rootElement.AddPropertyGroup();
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementContainerLink.cs (1)
102
/// Allow for creating a local representation to external object of type <see cref="
ProjectPropertyGroupElement
"/>
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
141
public abstract
ProjectPropertyGroupElement
CreatePropertyGroupElement();
ObjectModelRemoting\LinkedObjectFactory.cs (1)
198
public
ProjectPropertyGroupElement
Create(ProjectPropertyGroupElementLink link)