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