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