ITaskItem.CopyMetadataTo Method

Copies the custom metadata entries to another item.

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

Syntax

'Declaration
Sub CopyMetadataTo ( _
    destinationItem As ITaskItem _
)
void CopyMetadataTo(
    ITaskItem destinationItem
)
void CopyMetadataTo(
    ITaskItem^ destinationItem
)
abstract CopyMetadataTo : 
        destinationItem:ITaskItem -> unit
function CopyMetadataTo(
    destinationItem : ITaskItem
)

Parameters

Remarks

Follow the guidelines below when implementing this method.

  • Do not overwrite the ItemSpec property.

  • Do not overwrite existing metadata entries.

  • Do not copy metadata entries that do not make sense on the destination item.

.NET Framework Security

See Also

Reference

ITaskItem Interface

Microsoft.Build.Framework Namespace