Home
last modified time | relevance | path

Searched refs:ProjectItemGroupElement (Results 1 – 25 of 42) sorted by relevance

12

/dports/devel/msbuild/msbuild-0.06/src/Build.OM.UnitTests/Construction/
H A DProjectMetadataElement_Tests.cs295ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in AddMetadataAsAttributeIllegalName()
397ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in ReadMetadataAsAttribute()
430ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in ReadMetadataAsAttributeWithSpecialCharacters()
478ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in UpdateMetadataValueAsAttribute()
546ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in UpdateMetadataValueAsAttributeWithSpecialCharacters()
625ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in ChangeMetadataToAttribute()
692ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in ChangeAttributeToMetadata()
755ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in AddMetadataAsAttribute()
819ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in AddMetadataAsAttributeAndAsElement()
868ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)Helpers.GetFirst(project.Children); in GetMetadataXml()
H A DProjectItemGroupElement_tests.cs50ProjectItemGroupElement group = (ProjectItemGroupElement)Helpers.GetFirst(project.Children); in ReadEmptyItemGroup()
71ProjectItemGroupElement group = (ProjectItemGroupElement)Helpers.GetFirst(project.Children); in ReadItemGroupTwoItems()
90 ProjectItemGroupElement itemGroup = Helpers.GetFirst(project.ItemGroups); in SetCondition()
107 ProjectItemGroupElement itemGroup = Helpers.GetFirst(project.ItemGroups); in SetLabel()
H A DConstructionEditing_Tests.cs2411 ProjectItemGroupElement group1 = xml.AddItemGroup(); in DeleteAllChildren()
2417 ProjectItemGroupElement group2 = xml.AddItemGroup(); in DeleteAllChildren()
2434 ProjectItemGroupElement group1 = xml.AddItemGroup(); in DeleteAllChildren2()
2440 ProjectItemGroupElement group2 = xml.AddItemGroup(); in DeleteAllChildren2()
2457 ProjectItemGroupElement group1 = xml.AddItemGroup(); in DeleteAllChildren3()
2463 ProjectItemGroupElement group2 = xml.AddItemGroup(); in DeleteAllChildren3()
2480 ProjectItemGroupElement group1 = xml.AddItemGroup(); in DeleteAllChildren4()
2486 ProjectItemGroupElement group2 = xml.AddItemGroup(); in DeleteAllChildren4()
2503 ProjectItemGroupElement group1 = xml.AddItemGroup(); in DeleteAllChildren5()
2509 ProjectItemGroupElement group2 = xml.AddItemGroup(); in DeleteAllChildren5()
[all …]
H A DProjectItemElement_Tests.cs350ProjectItemGroupElement itemGroup = (ProjectItemGroupElement) projectElement.AllChildren.FirstOrDe… in ReadBasic()
402ProjectItemGroupElement itemGroup = (ProjectItemGroupElement)projectElement.AllChildren.FirstOrDef… in ReadMetadata()
/dports/devel/msbuild/msbuild-0.06/src/Build/Construction/
H A DProjectItemGroupElement.cs24 public class ProjectItemGroupElement : ProjectElementContainer class
36 …internal ProjectItemGroupElement(XmlElementWithLocation xmlElement, ProjectElementContainer parent… in ProjectItemGroupElement() method in Microsoft.Build.Construction.ProjectItemGroupElement
45 …private ProjectItemGroupElement(XmlElementWithLocation xmlElement, ProjectRootElement containingPr… in ProjectItemGroupElement() method in Microsoft.Build.Construction.ProjectItemGroupElement
168 … internal static ProjectItemGroupElement CreateDisconnected(ProjectRootElement containingProject) in CreateDisconnected()
172 return new ProjectItemGroupElement(element, containingProject); in CreateDisconnected()
H A DProjectOtherwiseElement.cs62 public ICollection<ProjectItemGroupElement> ItemGroups
66 return new ReadOnlyCollection<ProjectItemGroupElement>
68 new FilteringEnumerable<ProjectElement, ProjectItemGroupElement>(Children)
H A DProjectWhenElement.cs61 public ICollection<ProjectItemGroupElement> ItemGroups
65 return new ReadOnlyCollection<ProjectItemGroupElement>
67 new FilteringEnumerable<ProjectElement, ProjectItemGroupElement>(Children)
H A DProjectTargetElement.cs53 public ICollection<ProjectItemGroupElement> ItemGroups
57 return new ReadOnlyCollection<ProjectItemGroupElement>
59 new FilteringEnumerable<ProjectElement, ProjectItemGroupElement>(Children)
407 public ProjectItemGroupElement AddItemGroup() in AddItemGroup()
409 ProjectItemGroupElement itemGroup = ContainingProject.CreateItemGroupElement(); in AddItemGroup()
H A DProjectRootElement.cs335 …public ICollection<ProjectItemGroupElement> ItemGroups => new ReadOnlyCollection<ProjectItemGroupE…
337 new FilteringEnumerable<ProjectElement, ProjectItemGroupElement>(Children)
402 …public ICollection<ProjectItemGroupElement> ItemGroupsReversed => new ReadOnlyCollection<ProjectIt…
404 new FilteringEnumerable<ProjectElement, ProjectItemGroupElement>(ChildrenReversed)
1077 ProjectItemGroupElement itemGroupToAddTo = null; in AddItem()
1079 foreach (ProjectItemGroupElement itemGroup in ItemGroups) in AddItem()
1118 public ProjectItemGroupElement AddItemGroup() in AddItemGroup()
1131 ProjectItemGroupElement newItemGroup = CreateItemGroupElement(); in AddItemGroup()
1384 public ProjectItemGroupElement CreateItemGroupElement() in CreateItemGroupElement()
1386 return ProjectItemGroupElement.CreateDisconnected(this); in CreateItemGroupElement()
H A DProjectItemElement.cs56 …internal ProjectItemElement(XmlElementWithLocation xmlElement, ProjectItemGroupElement parent, Pro… in ProjectItemElement()
450 ProjectItemGroupElement groupParent = parent as ProjectItemGroupElement; in OnAfterParentChanged()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Construction/
H A DProjectRootElement.cs124 public ICollection<ProjectItemGroupElement> ItemGroups {
125 get { return new CollectionFromEnumerable<ProjectItemGroupElement> (
126 new FilteredEnumerable<ProjectItemGroupElement> (Children)); }
129 public ICollection<ProjectItemGroupElement> ItemGroupsReversed {
130 get { return new CollectionFromEnumerable<ProjectItemGroupElement> (
131 … new FilteredEnumerable<ProjectItemGroupElement> (ChildrenReversed)); }
280 public ProjectItemGroupElement AddItemGroup () in AddItemGroup()
371 public ProjectItemGroupElement CreateItemGroupElement () in CreateItemGroupElement()
373 return new ProjectItemGroupElement (this); in CreateItemGroupElement()
H A DProjectOtherwiseElement.cs55 public ICollection<ProjectItemGroupElement> ItemGroups {
56 get { return new CollectionFromEnumerable<ProjectItemGroupElement> (
57 new FilteredEnumerable<ProjectItemGroupElement> (Children)); }
H A DProjectWhenElement.cs50 public ICollection<ProjectItemGroupElement> ItemGroups {
51 get { return new CollectionFromEnumerable<ProjectItemGroupElement> (
52 new FilteredEnumerable<ProjectItemGroupElement> (Children)); }
H A DProjectTargetElement.cs66 public ICollection<ProjectItemGroupElement> ItemGroups {
67 get { return new CollectionFromEnumerable<ProjectItemGroupElement> (
68 new FilteredEnumerable<ProjectItemGroupElement> (Children)); }
93 public ProjectItemGroupElement AddItemGroup () in AddItemGroup()
H A DProjectItemGroupElement.cs38 public class ProjectItemGroupElement : ProjectElementContainer class
74 internal ProjectItemGroupElement (ProjectRootElement containingProject) in ProjectItemGroupElement() method in Microsoft.Build.Construction.ProjectItemGroupElement
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Execution/
H A DProjectTargetInstance.cs47 if (c is ProjectItemGroupElement) in ProjectTargetInstance()
48 return new ProjectItemGroupTaskInstance ((ProjectItemGroupElement) c); in ProjectTargetInstance()
H A DProjectItemGroupTaskInstance.cs37 internal ProjectItemGroupTaskInstance (ProjectItemGroupElement xml) in ProjectItemGroupTaskInstance()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Test/
H A DFunctionalTest.cs97 void GenerateCompileIncludes (ProjectItemGroupElement itemGroup) in GenerateCompileIncludes()
109 void GenerateReferences (ProjectItemGroupElement itemGroup) in GenerateReferences()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Conversion/
H A DProjectFileConverter.cs1106 ProjectItemGroupElement referencesItemGroup = xmakeProject.Items in FSharpSpecificConversions()
1108 .Select(projectItem => (ProjectItemGroupElement)projectItem.Parent) in FSharpSpecificConversions()
2446 ProjectItemGroupElement referencesItemGroup = null; in ProcessReferencesElement()
2495 ProjectItemGroupElement referencesItemGroup in ProcessReferenceElement()
2969 ProjectItemGroupElement importsItemGroup = null; in ProcessImportsElement()
3019 ProjectItemGroupElement importsItemGroup in ProcessImportElement()
3155 ProjectItemGroupElement filesItemGroup = null; in ProcessIncludeElement()
3209 ProjectItemGroupElement filesItemGroup in ProcessFileElement()
3399 ProjectItemGroupElement filesItemGroup in ProcessFolderElement()
3564 ProjectItemGroupElement startupServicesItemGroup = null; in ProcessStartupServicesElement()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Build/Evaluation/
H A DEvaluator.cs108 private readonly List<ProjectItemGroupElement> _itemGroupElements;
236 _itemGroupElements = new List<ProjectItemGroupElement>(); in Evaluator()
531 …tic ProjectItemGroupTaskInstance ReadItemGroupUnderTargetElement(ProjectItemGroupElement itemGroup… in ReadItemGroupUnderTargetElement()
620ProjectItemGroupElement itemGroup = targetChildElement as ProjectItemGroupElement; in ReadNewTargetElement()
769 foreach (ProjectItemGroupElement itemGroup in _itemGroupElements) in Evaluate()
958 ProjectItemGroupElement itemGroup = element as ProjectItemGroupElement; in PerformDepthFirstPass()
1115 …private void EvaluateItemGroupElement(ProjectItemGroupElement itemGroupElement, LazyItemEvaluator<… in EvaluateItemGroupElement()
1903 ProjectItemGroupElement itemGroup = element as ProjectItemGroupElement; in EvaluateWhenOrOtherwiseChildren()
H A DProjectParser.cs296 …private ProjectItemGroupElement ParseProjectItemGroupElement(XmlElementWithLocation element, Proje… in ParseProjectItemGroupElement()
300ProjectItemGroupElement itemGroup = new ProjectItemGroupElement(element, parent, _project); in ParseProjectItemGroupElement()
315 …ItemElement ParseProjectItemElement(XmlElementWithLocation element, ProjectItemGroupElement parent) in ParseProjectItemElement()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DMicrosoft.Build.cs106 …public partial class ProjectItemGroupElement : Microsoft.Build.Construction.ProjectElementContainer class
108 internal ProjectItemGroupElement() { } in ProjectItemGroupElement() method in Microsoft.Build.Construction.ProjectItemGroupElement
132 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
179 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
180 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
198 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
216 …public Microsoft.Build.Construction.ProjectItemGroupElement CreateItemGroupElement() { throw null;… in CreateItemGroupElement()
250 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
258 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
316 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A DMicrosoft.Build.cs128 …public partial class ProjectItemGroupElement : Microsoft.Build.Construction.ProjectElementContainer class
130 internal ProjectItemGroupElement() { } in ProjectItemGroupElement() method in Microsoft.Build.Construction.ProjectItemGroupElement
155 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
203 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
204 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
222 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
240 …public Microsoft.Build.Construction.ProjectItemGroupElement CreateItemGroupElement() { throw null;… in CreateItemGroupElement()
278 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
290 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
354 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DMicrosoft.Build.cs134 …public partial class ProjectItemGroupElement : Microsoft.Build.Construction.ProjectElementContainer class
136 internal ProjectItemGroupElement() { } in ProjectItemGroupElement() method in Microsoft.Build.Construction.ProjectItemGroupElement
162 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
215 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
216 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
238 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
256 …public Microsoft.Build.Construction.ProjectItemGroupElement CreateItemGroupElement() { throw null;… in CreateItemGroupElement()
295 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
307 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
384 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.2/
H A DMicrosoft.Build.cs134 …public partial class ProjectItemGroupElement : Microsoft.Build.Construction.ProjectElementContainer class
136 internal ProjectItemGroupElement() { } in ProjectItemGroupElement() method in Microsoft.Build.Construction.ProjectItemGroupElement
162 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
215 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
216 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
238 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
256 …public Microsoft.Build.Construction.ProjectItemGroupElement CreateItemGroupElement() { throw null;… in CreateItemGroupElement()
295 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…
307 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } in AddItemGroup()
384 …tem.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGrou…

12