Base:
property
Action
System.CommandLine.Option.Action
5 writes to Action
aspire (2)
Commands\ResourceCommand.cs (1)
96
Options.Add(new HelpOption {
Action
= new ResourceCommandHelpAction(this) });
Commands\RootCommand.cs (1)
276
helpOption.
Action
= new GroupedHelpAction(this, _ansiConsole);
crossgen2 (1)
parent\parent\Common\CommandLineHelpers.cs (1)
165
helpOption.
Action
= new CustomizedHelpAction(helpOption, customizer);
dotnet-aot (1)
parent\dotnet\Parser.cs (1)
135
helpOption.
Action
= new AotPrintHelpAction(helpOption, DotnetHelpBuilder.Instance.Value, rootCommand.NewCommand, rootCommand.TestCommand);
ilc (1)
parent\parent\Common\CommandLineHelpers.cs (1)
165
helpOption.
Action
= new CustomizedHelpAction(helpOption, customizer);
4 references to Action
crossgen2 (1)
parent\parent\Common\CommandLineHelpers.cs (1)
476
_helpAction = (HelpAction)helpOption.
Action
;
ilc (1)
parent\parent\Common\CommandLineHelpers.cs (1)
476
_helpAction = (HelpAction)helpOption.
Action
;
System.CommandLine (2)
Invocation\ParseErrorAction.cs (2)
73
if (availableHelpOptions.FirstOrDefault(o => o is not null) is {
Action
: not null } helpOption)
75
switch (helpOption.
Action
)