Base:
property
Action
System.CommandLine.Option.Action
5 writes to Action
aspire (1)
Commands\RootCommand.cs (1)
250
helpOption.
Action
= new GroupedHelpAction(this, _ansiConsole);
crossgen2 (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
165
helpOption.
Action
= new CustomizedHelpAction(helpOption, customizer);
dotnet (1)
Parser.cs (1)
137
helpOption.
Action
= new PrintHelpAction(helpOption, DotnetHelpBuilder.Instance.Value);
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Parser.cs (1)
135
helpOption.
Action
= new AotPrintHelpAction(helpOption, DotnetHelpBuilder.Instance.Value, rootCommand.NewCommand, rootCommand.TestCommand);
ilc (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
165
helpOption.
Action
= new CustomizedHelpAction(helpOption, customizer);
4 references to Action
crossgen2 (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
476
_helpAction = (HelpAction)helpOption.
Action
;
ilc (1)
src\runtime\src\coreclr\tools\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
)