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
I tried the following two ways but it didn't work (following above example commands).
Spaced Verb
[Verb("image ls"]
public class ImageListOptions {}
Nested Verbs
[Verb("image"]
public class ImageOptions {
[Verb("ls"]
public class ListOptions{ }
}
If this is not supported, then I suggest adding it - I could contribute to getting it done as well. I would suggest going with the Nested Verbs approach if the current code base would allow it.
The text was updated successfully, but these errors were encountered:
Thanks @Olympic1 for pointing me to the discussions #13 seems to be pretty old and outdated by now. #353 seems to be a discussions that got lost but has multiple ideas to implement
I've tried to create nested verbs like many CLIs
Example (from docker CLI)
docker image ls
anddocker image rm
I tried the following two ways but it didn't work (following above example commands).
If this is not supported, then I suggest adding it - I could contribute to getting it done as well. I would suggest going with the Nested Verbs approach if the current code base would allow it.
The text was updated successfully, but these errors were encountered: