public Bounce() { LogFactory = new TaskLogFactory(); LogOptions = new LogOptions {CommandOutput = false, LogLevel = LogLevel.Warning, ReportTargetEnd = true}; ShellCommand = new ShellCommandExecutor(() => Log); TargetInvoker = new TargetInvoker(this); }
public Bounce(LogOptions logOptions) { LogFactory = new TaskLogFactory(); LogOptions = logOptions; ShellCommand = new ShellCommandExecutor(() => Log); TargetInvoker = new TargetInvoker(this); }