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