Compartir a través de


FileTracker.StartProcess Method (String, String, ExecutableType, String, String, String, String)

Start the process; tracking the command.

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 Shared Function StartProcess ( _
    command As String, _
    arguments As String, _
    toolType As ExecutableType, _
    dllName As String, _
    intermediateDirectory As String, _
    rootFiles As String, _
    cancelEventName As String _
) As Process
public static Process StartProcess(
    string command,
    string arguments,
    ExecutableType toolType,
    string dllName,
    string intermediateDirectory,
    string rootFiles,
    string cancelEventName
)
public:
static Process^ StartProcess(
    String^ command, 
    String^ arguments, 
    ExecutableType toolType, 
    String^ dllName, 
    String^ intermediateDirectory, 
    String^ rootFiles, 
    String^ cancelEventName
)
static member StartProcess : 
        command:string * 
        arguments:string * 
        toolType:ExecutableType * 
        dllName:string * 
        intermediateDirectory:string * 
        rootFiles:string * 
        cancelEventName:string -> Process
public static function StartProcess(
    command : String, 
    arguments : String, 
    toolType : ExecutableType, 
    dllName : String, 
    intermediateDirectory : String, 
    rootFiles : String, 
    cancelEventName : String
) : Process

Parameters

  • dllName
    Type: System.String

    The name of the dll that will do the tracking

  • intermediateDirectory
    Type: System.String

    Intermediate directory where tracking logs will be written

  • cancelEventName
    Type: System.String

    If Tracker should be listening on a particular event for cancellation, pass its name here

Return Value

Type: Process
Process instance

.NET Framework Security

See Also

Reference

FileTracker Class

StartProcess Overload

Microsoft.Build.Utilities Namespace