ICliRun Interface
Definition
- Namespace
- DotMake.CommandLine
- Assembly
- DotMake.CommandLine.dll
An interface to add a command handler with void Run() signature to a command class.
Normally you don't need an interface for a handler method as the source generator can detect it automatically,
but the interface can be used to prevent your IDE complain about unused method in class.
public interface ICliRun
Methods
| Run() |
The command handler that will be called when your command is invoked. |