ProjectRootElement.AddItem Method (String, String, IEnumerable<KeyValuePair<String, String>>)
Adds an item with metadata to this project.
MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Namespace: Microsoft.Build.Construction
Assembly: Microsoft.Build (in Microsoft.Build.dll)
Syntax
'Declaration
Public Function AddItem ( _
itemType As String, _
include As String, _
metadata As IEnumerable(Of KeyValuePair(Of String, String)) _
) As ProjectItemElement
public ProjectItemElement AddItem(
string itemType,
string include,
IEnumerable<KeyValuePair<string, string>> metadata
)
public:
ProjectItemElement^ AddItem(
String^ itemType,
String^ include,
IEnumerable<KeyValuePair<String^, String^>>^ metadata
)
member AddItem :
itemType:string *
include:string *
metadata:IEnumerable<KeyValuePair<string, string>> -> ProjectItemElement
public function AddItem(
itemType : String,
include : String,
metadata : IEnumerable<KeyValuePair<String, String>>
) : ProjectItemElement
Parameters
itemType
Type: System.StringThe item type of the item to be added.
include
Type: System.StringThe Include value of the item to be added.
Return Value
Type: Microsoft.Build.Construction.ProjectItemElement
Returns the added item.
Remarks
Creates an item, then adds it to an item group with no Condition attribute and at least one item of same item type. If no such item group is found, creates a new item group and adds the item to it. Items are ordered by Include values.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.