2 instantiations of DebugSessionOptions
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" });
9 references to DebugSessionOptions
aspire (5)
Backchannel\BackchannelJsonSerializerContext.cs (1)
40[JsonSerializable(typeof(DebugSessionOptions))]
Backchannel\ExtensionBackchannel.cs (2)
46Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options, CancellationToken cancellationToken); 689DebugSessionOptions? options, CancellationToken cancellationToken)
Interaction\ExtensionInteractionService.cs (2)
23Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null); 453public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null)
Aspire.Cli.Tests (4)
Projects\ExtensionGuestLauncherTests.cs (1)
153public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null) => throw new NotImplementedException();
TestServices\TestExtensionBackchannel.cs (2)
80public Func<string, string?, bool, DebugSessionOptions?, Task>? StartDebugSessionAsyncCallback { get; set; } 263DebugSessionOptions? options, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (1)
106public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug, DebugSessionOptions? options = null)