-
Hi, Is there a structure that contains all the commands and parameters that I can access thought a command ? I try to add a command like "myapp gen-markdown-help" to create a markdown file from the cli commands for documentation purpose. Regards, Michel |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi. The structure of the app/commands is detailed by these types: https://github.com/Tyrrrz/CliFx/tree/master/CliFx/Schema But they are internal by design since it would involve exposing too many implementation details to make them public. The future version of CliFx will not be using these types anymore, as it'll be running on source generators (no release date yet). |
Beta Was this translation helpful? Give feedback.
Hi. The structure of the app/commands is detailed by these types: https://github.com/Tyrrrz/CliFx/tree/master/CliFx/Schema
But they are internal by design since it would involve exposing too many implementation details to make them public. The future version of CliFx will not be using these types anymore, as it'll be running on source generators (no release date yet).