Share via


CreateItem.Exclude Property

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets or sets the items to exclude from the output item collection.

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.Tasks
Assembly:  Microsoft.Build.Tasks.Core (in Microsoft.Build.Tasks.Core.dll)

Syntax

'Declaration
Public Property Exclude As ITaskItem()
public ITaskItem[] Exclude { get; set; }
public:
property array<ITaskItem^>^ Exclude {
    array<ITaskItem^>^ get ();
    void set (array<ITaskItem^>^ value);
}
member Exclude : ITaskItem[] with get, set
function get Exclude () : ITaskItem[]
function set Exclude (value : ITaskItem[])

Property Value

Type: array<Microsoft.Build.Framework.ITaskItem[]
The items to exclude from the output item collection.

Remarks

This property can contain wildcard specifications. For more information, see MSBuild Items and How To: Build all Files in a Directory Except One.

.NET Framework Security

See Also

Reference

CreateItem Class

Microsoft.Build.Tasks Namespace