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
pathToTool
Type: System.StringThe path to the tool.
commandLineCommands
Type: System.StringThe command line commands.
responseFileSwitch
Type: System.StringThe response file switch.
Return Value
Type: ProcessStartInfo
The information required to start the process.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.