Base:
property
Action
System.CommandLine.Option.Action
4 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)
143
helpOption.
Action
= new CustomizedHelpAction(helpOption, customizer);
dotnet (1)
Parser.cs (1)
114
helpOption.
Action
= new PrintHelpAction(helpOption, DotnetHelpBuilder.Instance.Value);
ilc (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
143
helpOption.
Action
= new CustomizedHelpAction(helpOption, customizer);
4 references to Action
crossgen2 (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
454
_helpAction = (HelpAction)helpOption.
Action
;
ilc (1)
src\runtime\src\coreclr\tools\Common\CommandLineHelpers.cs (1)
454
_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
)