Table of Contents

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

fullPath string

Full 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

string

Include

Gets or sets the Include attribute value.

public string Include { get; set; }

Property Value

string

Methods

ToXml(XmlDocument)

Converts the item group element to an XML node.

public abstract XmlNode ToXml(XmlDocument xmlDocument)

Parameters

xmlDocument XmlDocument

The XML document to use for creating the node.

Returns

XmlNode

The XML node representing the item group element.