コード例 #1
0
ファイル: Bounce.cs プロジェクト: t3hc13h/bounce
 public Bounce(LogOptions logOptions)
 {
     LogFactory    = new TaskLogFactory();
     LogOptions    = logOptions;
     ShellCommand  = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }
コード例 #2
0
ファイル: Bounce.cs プロジェクト: nbucket/bounce
 public Bounce(LogOptions logOptions)
 {
     LogFactory = new TaskLogFactory();
     LogOptions = logOptions;
     ShellCommand = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }
コード例 #3
0
ファイル: Bounce.cs プロジェクト: nbucket/bounce
 public Bounce()
 {
     LogFactory = new TaskLogFactory();
     LogOptions = new LogOptions {CommandOutput = false, LogLevel = LogLevel.Warning, ReportTargetEnd = true};
     ShellCommand = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }
コード例 #4
0
ファイル: Bounce.cs プロジェクト: t3hc13h/bounce
 public Bounce()
 {
     LogFactory = new TaskLogFactory();
     LogOptions = new LogOptions {
         CommandOutput = false, LogLevel = LogLevel.Warning, ReportTargetEnd = true
     };
     ShellCommand  = new ShellCommandExecutor(() => Log);
     TargetInvoker = new TargetInvoker(this);
 }