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)
64
public ICollection<
ProjectPropertyGroupElement
> PropertyGroups => GetChildrenOfType<
ProjectPropertyGroupElement
>();
Construction\ProjectPropertyElement.cs (2)
40
internal ProjectPropertyElement(XmlElementWithLocation xmlElement,
ProjectPropertyGroupElement
parent, ProjectRootElement containingProject)
135
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
>();
1061
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroupsReversed)
1144
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroupsReversed)
1163
public
ProjectPropertyGroupElement
AddPropertyGroup()
1165
ProjectPropertyGroupElement
reference = null;
1167
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroupsReversed)
1173
ProjectPropertyGroupElement
newPropertyGroup = CreatePropertyGroupElement();
1188
ProjectPropertyGroupElement
matchingPropertyGroup = null;
1191
foreach (
ProjectPropertyGroupElement
propertyGroup in PropertyGroups)
1417
public
ProjectPropertyGroupElement
CreatePropertyGroupElement()
1419
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)
60
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)
486
private static ProjectPropertyGroupTaskInstance ReadPropertyGroupUnderTargetElement(
ProjectPropertyGroupElement
propertyGroupElement)
581
case
ProjectPropertyGroupElement
propertyGroup:
918
case
ProjectPropertyGroupElement
propertyGroup:
998
private void EvaluatePropertyGroupElement(
ProjectPropertyGroupElement
propertyGroupElement)
1498
case
ProjectPropertyGroupElement
propertyGroup:
1989
var
propertyGroup = project.AddPropertyGroup();
2514
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)
2394
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)