Share via


CommandLineBuilder.AppendFileNamesIfNotNull Method (array<ITaskItem , String)

Appends the command line with the list of file names in the specified ITaskItem array, separated by the specified delimiter.

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

Syntax

'Declaration
Public Sub AppendFileNamesIfNotNull ( _
    fileItems As ITaskItem(), _
    delimiter As String _
)
public void AppendFileNamesIfNotNull(
    ITaskItem[] fileItems,
    string delimiter
)
public:
void AppendFileNamesIfNotNull(
    array<ITaskItem^>^ fileItems, 
    String^ delimiter
)
member AppendFileNamesIfNotNull : 
        fileItems:ITaskItem[] * 
        delimiter:string -> unit
public function AppendFileNamesIfNotNull(
    fileItems : ITaskItem[], 
    delimiter : String
)

Parameters

  • fileItems
    Type: array<Microsoft.Build.Framework.ITaskItem[]

    The task item specifications to append. If the array is nulla null reference (Nothing in Visual Basic), then this method has no effect.

  • delimiter
    Type: System.String

    The delimiter to put between task item specifications in the command line.

Remarks

This method appends the command line with file names, and surrounds the file names with quotation marks as necessary. The file names are separated by the specified delimiter.

If the command line is not empty, then this method also appends the command line with a space, before the file names.

Examples

See example in AppendFileNamesIfNotNull.

.NET Framework Security

See Also

Reference

CommandLineBuilder Class

AppendFileNamesIfNotNull Overload

Microsoft.Build.Utilities Namespace