You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
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:
Current Output:
It would be great to have a way to suppress the
Description:
section entirely, for example:Thanks for the great library!
The text was updated successfully, but these errors were encountered: