Tyrrrz / CliFx

Class-first framework for building command-line interfaces
MIT License
1.5k stars 61 forks source link

Fix ordering of parameters within command help usage #118

Closed TAGC closed 2 years ago

TAGC commented 2 years ago

In certain cases, such as when defining parameters within base command classes that other command classes inherit from, the command help documentation may list parameters in an incorrect order.

This PR ensures that parameters are always listed based on their Order property when displaying the help documentation for a command.

Closes #117

Tyrrrz commented 2 years ago

Thanks!