4 instantiations of DebugSessionOptions
aspire (3)
Commands\PipelineCommandBase.cs (1)
188
new
DebugSessionOptions
Commands\RunCommand.cs (1)
236
new
DebugSessionOptions
Commands\StartCommand.cs (1)
92
new
DebugSessionOptions
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
4299
var options = new
DebugSessionOptions
29 references to DebugSessionOptions
aspire (11)
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);
793
DebugSessionOptions
? options, CancellationToken cancellationToken)
Commands\PipelineCommandBase.cs (2)
193
?
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
194
:
DebugSessionOptions
.DefaultDiscoveryAppHostSelectionOrigin,
Commands\RunCommand.cs (2)
241
?
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
242
:
DebugSessionOptions
.DefaultDiscoveryAppHostSelectionOrigin
Commands\StartCommand.cs (2)
97
?
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
98
:
DebugSessionOptions
.DefaultDiscoveryAppHostSelectionOrigin
Interaction\ExtensionInteractionService.cs (2)
25
Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug,
DebugSessionOptions
? options = null);
560
public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug,
DebugSessionOptions
? options = null)
Aspire.Cli.Tests (18)
Commands\DeployCommandTests.cs (2)
40
DebugSessionOptions
? capturedOptions = null;
94
DebugSessionOptions
? capturedOptions = null;
Commands\RunCommandTests.cs (6)
4299
var
options = new DebugSessionOptions
4301
AppHostSelectionOrigin =
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
4323
DebugSessionOptions
? options = null;
4371
DebugSessionOptions
? options = null;
4436
DebugSessionOptions
? options = null;
4464
DebugSessionOptions
? options = null;
Commands\StartCommandTests.cs (4)
389
DebugSessionOptions
? options = null;
455
DebugSessionOptions
? options = null;
495
DebugSessionOptions
? options = null;
525
DebugSessionOptions
? options = null;
Projects\ExtensionGuestLauncherTests.cs (1)
157
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; }
266
DebugSessionOptions
? options, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (2)
24
public Action<string, string?, bool,
DebugSessionOptions
?>? StartDebugSessionCallback { get; set; }
142
public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug,
DebugSessionOptions
? options = null)
Utils\CliTestHelper.cs (1)
62
Action<string, string?, bool,
DebugSessionOptions
?> startDebugSessionCallback,