4 instantiations of DebugSessionOptions
aspire (3)
Commands\PipelineCommandBase.cs (1)
188
new
DebugSessionOptions
Commands\RunCommand.cs (1)
238
new
DebugSessionOptions
Commands\StartCommand.cs (1)
92
new
DebugSessionOptions
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
4979
var options = new
DebugSessionOptions
29 references to DebugSessionOptions
aspire (11)
Backchannel\BackchannelJsonSerializerContext.cs (1)
40
[JsonSerializable(typeof(
DebugSessionOptions
))]
Backchannel\ExtensionBackchannel.cs (2)
48
Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug,
DebugSessionOptions
? options, CancellationToken cancellationToken);
833
DebugSessionOptions
? options, CancellationToken cancellationToken)
Commands\PipelineCommandBase.cs (2)
193
?
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
194
:
DebugSessionOptions
.DefaultDiscoveryAppHostSelectionOrigin,
Commands\RunCommand.cs (2)
243
?
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
244
:
DebugSessionOptions
.DefaultDiscoveryAppHostSelectionOrigin
Commands\StartCommand.cs (2)
97
?
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
98
:
DebugSessionOptions
.DefaultDiscoveryAppHostSelectionOrigin
Interaction\ExtensionInteractionService.cs (2)
29
Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug,
DebugSessionOptions
? options = null);
672
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)
4979
var
options = new DebugSessionOptions
4981
AppHostSelectionOrigin =
DebugSessionOptions
.ExplicitCliAppHostSelectionOrigin
5003
DebugSessionOptions
? options = null;
5051
DebugSessionOptions
? options = null;
5116
DebugSessionOptions
? options = null;
5144
DebugSessionOptions
? options = null;
Commands\StartCommandTests.cs (4)
390
DebugSessionOptions
? options = null;
456
DebugSessionOptions
? options = null;
496
DebugSessionOptions
? options = null;
526
DebugSessionOptions
? options = null;
Projects\ExtensionGuestLauncherTests.cs (1)
219
public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug,
DebugSessionOptions
? options = null) => throw new NotImplementedException();
TestServices\TestExtensionBackchannel.cs (2)
82
public Func<string, string?, bool,
DebugSessionOptions
?, Task>? StartDebugSessionAsyncCallback { get; set; }
280
DebugSessionOptions
? options, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (2)
27
public Action<string, string?, bool,
DebugSessionOptions
?>? StartDebugSessionCallback { get; set; }
185
public Task StartDebugSessionAsync(string workingDirectory, string? projectFile, bool debug,
DebugSessionOptions
? options = null)
Utils\CliTestHelper.cs (1)
62
Action<string, string?, bool,
DebugSessionOptions
?> startDebugSessionCallback,