Пример #1
0
 public Bounce()
 {
     LogFactory = new TaskLogFactory();
     LogOptions = new LogOptions {CommandOutput = false, LogLevel = LogLevel.Warning, ReportTargetEnd = true};
     ShellCommand = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }
Пример #2
0
 public Bounce(LogOptions logOptions)
 {
     LogFactory = new TaskLogFactory();
     LogOptions = logOptions;
     ShellCommand = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }