1 implementation of LaunchProcess
Microsoft.TestPlatform.PlatformAbstractions (1)
common\System\ProcessHelper.cs (1)
52
public object
LaunchProcess
(string processPath, string? arguments, string? workingDirectory, IDictionary<string, string?>? envVariables, Action<object?, string?>? errorCallback, Action<object?>? exitCallBack, Action<object?, string?>? outputCallBack)
4 references to LaunchProcess
Microsoft.TestPlatform.CrossPlatEngine (2)
DataCollection\DefaultDataCollectionLauncher.cs (1)
71
var dataCollectorProcess = _processHelper.
LaunchProcess
(dataCollectorProcessPath, argumentsString, Directory.GetCurrentDirectory(), environmentVariables, ErrorReceivedCallback, ExitCallBack, null);
DataCollection\DotnetDataCollectionLauncher.cs (1)
105
var dataCollectorProcess = _processHelper.
LaunchProcess
(currentProcessFileName, argumentsString, Directory.GetCurrentDirectory(), environmentVariables, ErrorReceivedCallback, ExitCallBack, null);
Microsoft.TestPlatform.Extensions.BlameDataCollector (2)
ProcDumpDumper.cs (2)
148
_procDumpProcess = (Process)_processHelper.
LaunchProcess
(
318
var procDumpProcess = (Process)_processHelper.
LaunchProcess
(