ToolTask.GetProcessStartInfo Method

Initializes the information required to spawn the process executing the tool.

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
Protected Function GetProcessStartInfo ( _
    pathToTool As String, _
    commandLineCommands As String, _
    responseFileSwitch As String _
) As ProcessStartInfo
protected ProcessStartInfo GetProcessStartInfo(
    string pathToTool,
    string commandLineCommands,
    string responseFileSwitch
)
protected:
ProcessStartInfo^ GetProcessStartInfo(
    String^ pathToTool, 
    String^ commandLineCommands, 
    String^ responseFileSwitch
)
member GetProcessStartInfo : 
        pathToTool:string * 
        commandLineCommands:string * 
        responseFileSwitch:string -> ProcessStartInfo
protected function GetProcessStartInfo(
    pathToTool : String, 
    commandLineCommands : String, 
    responseFileSwitch : String
) : ProcessStartInfo

Parameters

  • commandLineCommands
    Type: System.String

    The command line commands.

  • responseFileSwitch
    Type: System.String

    The response file switch.

Return Value

Type: ProcessStartInfo
The information required to start the process.

.NET Framework Security

See Also

Reference

ToolTask Class

Microsoft.Build.Utilities Namespace