DestinationFiles Property

MSBuild

Gets or sets the list of files to moved the source files to.


Namespace: MSBuild.Community.Tasks
Assembly: MSBuild.Community.Tasks (in MSBuild.Community.Tasks.dll)

Syntax

Visual Basic (Declaration)
<Output>
Public Property DestinationFiles As ITaskItem[]
C#
[Output]
public ITaskItem[] DestinationFiles { get; set; }
C++
[Output]
public property ITaskItem[] DestinationFiles sealed  {
    array<ITaskItem>^ get();
    void set(array<ITaskItem>^ value);
}
J#
/** @attribute Output() */
/** property */
public ITaskItem[] get_DestinationFiles();

/** property */
public void set_DestinationFiles(ITaskItem[] value);
JScript
public function get DestinationFiles() : ITaskItem[]

public function set DestinationFiles(value : ITaskItem[]);

Property Value

The destination files.

Remarks

This list is expected to be a one-to-one mapping with the list specified in the SourceFiles parameter. That is, the first file specified in SourceFiles will be moved to the first location specified in DestinationFiles, and so forth.

See Also

Syntax based on .NET Framework version 2.0.
Documentation version 1.0.0.0.