dotnet-installer/scripts/Microsoft.DotNet.Cli.Build.Framework/BuildReporter.cs

28 lines
830 B
C#
Raw Normal View History

2016-02-02 10:04:50 -08:00
using System;
namespace Microsoft.DotNet.Cli.Build.Framework
{
public static class BuildReporter
{
public static void BeginSection(string type, string name)
{
Reporter.Output.WriteLine($"[{type.PadRight(10)} >]".Green() + $" [....] [{DateTime.Now:O}]".Blue() + $" {name}");
}
public static void EndSection(string type, string name, bool success)
{
var header = $"[{type.PadRight(10)} <]";
if(success)
{
header = header.Green();
}
else
{
header = header.Red();
}
var successString = success ? " OK " : "FAIL";
Reporter.Output.WriteLine(header + $" [{successString}] [{DateTime.Now:O}]".Blue() + $" {name}");
}
}
}