10 references to StartDebugSessionOption
aspire (6)
Commands\PipelineCommandBase.cs (1)
206
var startDebugSession = ExtensionHelper.IsExtensionHost(InteractionService, out _, out _) && parseResult.GetValue(RootCommand.
StartDebugSessionOption
);
Commands\RootCommand.cs (1)
195
Options.Add(
StartDebugSessionOption
);
Commands\RunCommand.cs (2)
180
startDebugSession = parseResult.GetValue(RootCommand.
StartDebugSessionOption
);
229
RootCommand.
StartDebugSessionOption
,
Commands\StartCommand.cs (2)
79
var startDebugSession = parseResult.GetValue(RootCommand.
StartDebugSessionOption
);
85
RootCommand.
StartDebugSessionOption
,
Aspire.Cli.Tests (4)
Commands\RootCommandTests.cs (2)
281
Assert.DoesNotContain(normalCommand.Options, option => ReferenceEquals(option, RootCommand.
StartDebugSessionOption
));
291
Assert.Contains(extensionCommand.Options, option => ReferenceEquals(option, RootCommand.
StartDebugSessionOption
));
Commands\StartCommandTests.cs (2)
58
Assert.Contains(command.Options, option => ReferenceEquals(option, RootCommand.
StartDebugSessionOption
));
59
Assert.False(RootCommand.
StartDebugSessionOption
.Hidden);