CommandLineBuilder.AppendSwitchUnquotedIfNotNull Method (String, String)

Appends the command line with a switch that takes a single string parameter, without attempting to encapsulate the switch parameter with quotation marks.

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 AppendSwitchUnquotedIfNotNull ( _
    switchName As String, _
    parameter As String _
)
public void AppendSwitchUnquotedIfNotNull(
    string switchName,
    string parameter
)
public:
void AppendSwitchUnquotedIfNotNull(
    String^ switchName, 
    String^ parameter
)
member AppendSwitchUnquotedIfNotNull : 
        switchName:string * 
        parameter:string -> unit
public function AppendSwitchUnquotedIfNotNull(
    switchName : String, 
    parameter : String
)

Parameters

  • switchName
    Type: System.String

    The name of the switch to append to the command line. This value cannot be nulla null reference (Nothing in Visual Basic).

  • parameter
    Type: System.String

    The switch parameter to append to the command line. Quotation marks will not be added. If this value is nulla null reference (Nothing in Visual Basic), then this method has no effect.

Remarks

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

Examples

AppendSwitchUnquotedIfNotNull("/source:", "File Name.cs") yields /source:File Name.cs.

.NET Framework Security

See Also

Reference

CommandLineBuilder Class

AppendSwitchUnquotedIfNotNull Overload

Microsoft.Build.Utilities Namespace