1 implementation of LaunchProcess
Microsoft.TestPlatform.PlatformAbstractions (1)
common\System\ProcessHelper.cs (1)
45public object LaunchProcess(string processPath, string? arguments, string? workingDirectory, IDictionary<string, string?>? envVariables, Action<object?, string?>? errorCallback, Action<object?>? exitCallBack, Action<object?, string?>? outputCallBack)
6 references to LaunchProcess
Microsoft.TestPlatform.CrossPlatEngine (2)
DataCollection\DefaultDataCollectionLauncher.cs (1)
71var dataCollectorProcess = _processHelper.LaunchProcess(dataCollectorProcessPath, argumentsString, Directory.GetCurrentDirectory(), environmentVariables, ErrorReceivedCallback, ExitCallBack, null);
DataCollection\DotnetDataCollectionLauncher.cs (1)
105var dataCollectorProcess = _processHelper.LaunchProcess(currentProcessFileName, argumentsString, Directory.GetCurrentDirectory(), environmentVariables, ErrorReceivedCallback, ExitCallBack, null);
Microsoft.TestPlatform.Extensions.BlameDataCollector (2)
ProcDumpDumper.cs (2)
148_procDumpProcess = (Process)_processHelper.LaunchProcess( 318var procDumpProcess = (Process)_processHelper.LaunchProcess(
vstest.console (1)
Processors\AeDebuggerArgumentProcessor.cs (1)
177if (_processHelper.LaunchProcess(procDumpPath, install ? "-ma -i" : "-u", procDumpInstallUnistallArgument, null,
vstest.console.arm64 (1)
parent\vstest.console\Processors\AeDebuggerArgumentProcessor.cs (1)
177if (_processHelper.LaunchProcess(procDumpPath, install ? "-ma -i" : "-u", procDumpInstallUnistallArgument, null,