ICliRunAsyncWithContextAndReturn Interface
            An interface to add an async command handler with Task<int> RunAsync(CliContext) 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.
            
Namespace: DotMake.CommandLineAssembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 2.8.2
public interface ICliRunAsyncWithContextAndReturn
 | RunAsync | The async command handler that will be called when your command is invoked. Handler receives a CliContext instance. Handler can return an exit code. |