Class ItemGroupElement
- Namespace
- SunamoDevCode.Aps.Projs.Data.ItemGroup
- Assembly
- SunamoDevCode.dll
Base class for item group elements in a Visual Studio project file.
public abstract class ItemGroupElement
- Inheritance
-
ItemGroupElement
- Derived
- Inherited Members
- Extension Methods
Constructors
ItemGroupElement(string)
Initializes a new instance of the ItemGroupElement class.
public ItemGroupElement(string fullPath)
Parameters
fullPathstringFull path to the csproj file.
Properties
FullPath
Gets or sets the full path to the csproj file. Must exist. From it and relative structure, other properties are filled.
public string FullPath { get; set; }
Property Value
Include
Gets or sets the Include attribute value.
public string Include { get; set; }
Property Value
Methods
ToXml(XmlDocument)
Converts the item group element to an XML node.
public abstract XmlNode ToXml(XmlDocument xmlDocument)
Parameters
xmlDocumentXmlDocumentThe XML document to use for creating the node.
Returns
- XmlNode
The XML node representing the item group element.