Exemplo n.º 1
0
 public Bounce(LogOptions logOptions)
 {
     LogFactory    = new TaskLogFactory();
     LogOptions    = logOptions;
     ShellCommand  = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }
Exemplo n.º 2
0
 public Bounce(LogOptions logOptions)
 {
     LogFactory = new TaskLogFactory();
     LogOptions = logOptions;
     ShellCommand = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }
Exemplo n.º 3
0
 public Bounce()
 {
     LogFactory = new TaskLogFactory();
     LogOptions = new LogOptions {CommandOutput = false, LogLevel = LogLevel.Warning, ReportTargetEnd = true};
     ShellCommand = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }
Exemplo n.º 4
0
 public Bounce()
 {
     LogFactory = new TaskLogFactory();
     LogOptions = new LogOptions {
         CommandOutput = false, LogLevel = LogLevel.Warning, ReportTargetEnd = true
     };
     ShellCommand  = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }