3 implementations of StartDebugSessionAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
453public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null)
Aspire.Cli.Tests (2)
Projects\ExtensionGuestLauncherTests.cs (1)
153public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null) => throw new NotImplementedException();
TestServices\TestExtensionInteractionService.cs (1)
106public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null)
2 references to StartDebugSessionAsync
aspire (2)
Commands\PipelineCommandBase.cs (1)
149await extensionInteractionService.StartDebugSessionAsync(ExecutionContext.WorkingDirectory.FullName, passedAppHostProjectFile?.FullName, debug: true, new DebugSessionOptions { Command = Name, Args = commandArgs.Length > 0 ? commandArgs : null });
Commands\RunCommand.cs (1)
173await extensionInteractionService.StartDebugSessionAsync(ExecutionContext.WorkingDirectory.FullName, passedAppHostProjectFile?.FullName, startDebugSession, new DebugSessionOptions { Command = "run" });