コード例 #1
0
 public CommandExecutor(
     CommandArguments args,
     IScriptProvider scriptProvider,
     IFlubuSession flubuSession,
     ILogger <CommandExecutor> log,
     IFlubuTemplateTasksExecutor flubuTemplateTasksExecutor)
     : base(flubuSession, args, flubuTemplateTasksExecutor)
 {
     _scriptProvider = scriptProvider;
     _log            = log;
 }
コード例 #2
0
 public CommandExecutorInteractive(
     CommandArguments args,
     IScriptProvider scriptProvider,
     IFlubuSession flubuSession,
     IScriptProperties scriptProperties,
     ILogger <CommandExecutorInteractive> log,
     IFlubuTemplateTasksExecutor flubuTemplateTasksExecutor)
     : base(flubuSession, args, flubuTemplateTasksExecutor)
 {
     _scriptProvider   = scriptProvider;
     _flubuSession     = flubuSession;
     _scriptProperties = scriptProperties;
     _log = log;
 }
コード例 #3
0
 protected InternalCommandExecutor(IFlubuSession flubuSession, CommandArguments args, IFlubuTemplateTasksExecutor flubuTemplateTasksExecutor)
 {
     FlubuSession = flubuSession;
     Args         = args;
     FlubuTemplateTasksExecutor = flubuTemplateTasksExecutor;
 }