Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flag to hide description #2537

Open
TheBigNeo opened this issue Apr 3, 2025 · 2 comments
Open

Flag to hide description #2537

TheBigNeo opened this issue Apr 3, 2025 · 2 comments

Comments

@TheBigNeo
Copy link

Hi,

It would be helpful to have a flag or property to control whether the description is included in the generated HelpText output.

In our use case, we are using the HelpText in our documentation, and we don’t want to include the description section—especially when the description is empty.

Here’s a minimal example:

RootCommand              rootCommand = new RootCommand();
CommandLineConfiguration config      = new(rootCommand) {Output = new StringWriter()};
config.Invoke("--help");
Console.Out.WriteLine(config.Output);

Current Output:

Description:

Usage:
  ConsoleApp1 [options]

Options:
  -?, -h, --help  Show help and usage information
  --version       Show version information

It would be great to have a way to suppress the Description: section entirely, for example:

rootCommand.HideDescription = true;

Thanks for the great library!

@KalleOlaviNiemitalo
Copy link

In System.CommandLine 2.0.0-beta4.22272.1, this can be done by using CommandLineBuilderExtensions.UseHelp to register an Action<HelpContext> that calls HelpBuilder.CustomizeLayout to register a Func<HelpContext, IEnumerable<HelpSectionDelegate>> that calls HelpBuilder.Default.GetLayout() and removes HelpBuilder.Default.SynopsisSection() from the result.

@TheBigNeo
Copy link
Author

Many thanks for the tip! ❤
It works as a temporary solution. A flag would be more elegant for later.

I saw that beta5 has many changes compared to beta4, and so I used beta5 (2.0.0-beta5.25174.1) straight away.

Example with beta5:

RootCommand              rootCommand = new RootCommand();
CommandLineConfiguration config      = new(rootCommand) {Output = new StringWriter()};

Option     helpOption = rootCommand.Options.First(option => option is HelpOption);
HelpAction helpAction = helpOption.Action as HelpAction;

helpAction.Builder.CustomizeLayout(context =>
{
    IEnumerable<Func<HelpContext, bool>> layout = HelpBuilder.Default.GetLayout();
    List<Func<HelpContext, bool>> list = layout.ToList();
    list.Remove(HelpBuilder.Default.SynopsisSection());
    layout = list;
    return layout;
});

config.Invoke("--help");
Console.Out.WriteLine(config.Output);

Output:

Usage:
  ConsoleApp1 [options]

Options:
  -?, -h, --help  Show help and usage information
  --version       Show version information

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants