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