コード例 #1
0
ファイル: Notifier.cs プロジェクト: wurdum/deployer
 public void NotifyActionStep(ActionStepContext context)
 {
     _expectedSteps[context.Name].Status = context.Status;
     _renderer.ClearCursorPos();
     foreach (var step in _expectedSteps.Select(s => s.Value))
         _renderer.RenderRow(new[] {
             new Tuple<ConsoleColor, string>(Colorize(step.Status), step.Status.ToString()),
             new Tuple<ConsoleColor, string>(ConsoleColor.White, step.Name),
         });
 }
コード例 #2
0
 public void NotifyActionStep(ActionStepContext context)
 {
     _expectedSteps[context.Name].Status = context.Status;
     _renderer.ClearCursorPos();
     foreach (var step in _expectedSteps.Select(s => s.Value))
     {
         _renderer.RenderRow(new[] {
             new Tuple <ConsoleColor, string>(Colorize(step.Status), step.Status.ToString()),
             new Tuple <ConsoleColor, string>(ConsoleColor.White, step.Name),
         });
     }
 }
コード例 #3
0
ファイル: Response.cs プロジェクト: wurdum/deployer
 public void NotifyStepState(ActionStepContext context)
 {
     _writer.NotifyActionStep(context);
 }
コード例 #4
0
 public void NotifyStepState(ActionStepContext context)
 {
 }
コード例 #5
0
 public void NotifyStepState(ActionStepContext context)
 {
     _writer.NotifyActionStep(context);
 }