5 implementations of LaunchProcessWithDebuggerAttached
Microsoft.TestPlatform.CommunicationUtilities (1)
EventHandlers\TestRunEventsHandler.cs (1)
95public int LaunchProcessWithDebuggerAttached(TestProcessStartInfo? testProcessStartInfo)
Microsoft.TestPlatform.CrossPlatEngine (3)
Client\Parallel\ParallelRunEventsHandler.cs (1)
190public int LaunchProcessWithDebuggerAttached(TestProcessStartInfo testProcessStartInfo)
Client\ProxyExecutionManager.cs (1)
398public virtual int LaunchProcessWithDebuggerAttached(TestProcessStartInfo testProcessStartInfo)
DataCollection\DataCollectionTestRunEventsHandler.cs (1)
180public int LaunchProcessWithDebuggerAttached(TestProcessStartInfo testProcessStartInfo)
Microsoft.VisualStudio.TestPlatform.Client (1)
Execution\TestRunRequest.cs (1)
643public int LaunchProcessWithDebuggerAttached(TestProcessStartInfo testProcessStartInfo)
5 references to LaunchProcessWithDebuggerAttached
Microsoft.TestPlatform.CommunicationUtilities (1)
TestRequestSender.cs (1)
568int processId = testRunEventsHandler.LaunchProcessWithDebuggerAttached(testProcessStartInfo!);
Microsoft.TestPlatform.CrossPlatEngine (4)
Adapter\FrameworkHandle.cs (1)
96return _testRunEventsHandler.LaunchProcessWithDebuggerAttached(processInfo);
Client\Parallel\ParallelRunEventsHandler.cs (1)
192return _actualRunEventsHandler.LaunchProcessWithDebuggerAttached(testProcessStartInfo);
Client\ProxyExecutionManager.cs (1)
400return _baseTestRunEventsHandler?.LaunchProcessWithDebuggerAttached(testProcessStartInfo) ?? -1;
DataCollection\DataCollectionTestRunEventsHandler.cs (1)
182return _testRunEventsHandler.LaunchProcessWithDebuggerAttached(testProcessStartInfo);