9 references to DebugOption
aspire (5)
Commands\PipelineCommandBase.cs (1)
203var debugMode = parseResult.GetValue(RootCommand.DebugOption);
Commands\RootCommand.cs (3)
108(DebugOption, pr => pr.GetValue(DebugOption) ? ["--debug"] : null), 186Options.Add(DebugOption);
Commands\RunCommand.cs (1)
329Debug = parseResult.GetValue(RootCommand.DebugOption),
Aspire.Cli.Tests (4)
Commands\ParseResultHelperTests.cs (3)
199RootCommand.DebugOption); 223Assert.True(childParseResult.GetValue(RootCommand.DebugOption)); 246Assert.True(childParseResult.GetValue(RootCommand.DebugOption));
Commands\RunCommandTests.cs (1)
4483Assert.True(childParseResult.GetValue(RootCommand.DebugOption));