commandlineparser/commandline

Extended help information

开放

#337 创建于 2018年9月26日

 (4 条评论) (0 个反应) (0 位负责人)C# (461 个派生)batch import
enhancementgood first issue

仓库指标

星标
 (4,280 个星标)
PR 合并指标
 (30 天内没有已合并 PR)

描述

I think that it would be nice if we could display additional text about application if someone types MyApp --help, and additional help for verb if someone types MyApp Verb --help.

I know there is HelpText property on BaseAttribute. It is nice for communicating what given option does, however I think that it is not suitable for extended, in-depth explanation. I would see it like that:

MyApp.exe help
MyApp 1.0.0
Copyright (C) 2018 MyApp 

  verb1    Help text for verb 1
  verb2    Help text for verb 2
  help             Display more information on a specific command.
  version          Display version information.

Long explanation about app
MyApp.exe help verb1
MyApp 1.0.0
Copyright (C) 2018 MyApp 

  verb1    Help text for verb 1
  verb2    Help text for verb 2
  help             Display more information on a specific command.
  version          Display version information.

Long explanation about verb1

贡献者指南