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