C# Class VSNDK.Tasks.AsyncExec

Inheritance: Microsoft.Build.Tasks.Exec
Show file Open project: blackberry/VSPlugin

Public Methods

Method Description
Decrypt ( string cipher ) : string

Helper Function to Decrypt Password

Protected Methods

Method Description
ExecuteTool ( string pathToTool, string responseFileCommands, string commandLineCommands ) : int

Execute given command asynchronously.

GetProcessStartInfo ( string executable, string arguments ) : ProcessStartInfo

Helper function to create the ProcessStartInfo object for the running process.

Method Details

Decrypt() public method

Helper Function to Decrypt Password
public Decrypt ( string cipher ) : string
cipher string
return string

ExecuteTool() protected method

Execute given command asynchronously.
protected ExecuteTool ( string pathToTool, string responseFileCommands, string commandLineCommands ) : int
pathToTool string Path of executable to be run.
responseFileCommands string Response file commands
commandLineCommands string Command Line Arguments
return int

GetProcessStartInfo() protected method

Helper function to create the ProcessStartInfo object for the running process.
protected GetProcessStartInfo ( string executable, string arguments ) : ProcessStartInfo
executable string Path of executable to be run.
arguments string Command Line Arguments
return System.Diagnostics.ProcessStartInfo