3 implementations of StartDebugSessionAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
560public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null)
Aspire.Cli.Tests (2)
Projects\ExtensionGuestLauncherTests.cs (1)
157public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null) => throw new NotImplementedException();
TestServices\TestExtensionInteractionService.cs (1)
142public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null)
3 references to StartDebugSessionAsync
aspire (3)
Commands\PipelineCommandBase.cs (1)
184await extensionInteractionService.StartDebugSessionAsync(
Commands\RunCommand.cs (1)
232await extensionInteractionService.StartDebugSessionAsync(
Commands\StartCommand.cs (1)
88await extensionInteractionService.StartDebugSessionAsync(