Replies: 1 comment
-
Hi @geocine you can hide commands with the app.Configure(config =>
{
config.CaseSensitivity(CaseSensitivity.None)
.SetApplicationName("SpectreConsoleTemplate")
.ValidateExamples();
config.AddCommand<DefaultCommand>("default")
.IsHidden(); I'm not sure how you would call a command from within another command. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This would be my desired output
So I start with a prompt
How do I pass this
passToInteractive
so that it goes through one of my branches e.g.And lastly I want to hide this
"interactive" branch from
help` , I will only use it for the interactive shell.Beta Was this translation helpful? Give feedback.
All reactions