-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathProgram.cs
More file actions
37 lines (32 loc) · 1020 Bytes
/
Program.cs
File metadata and controls
37 lines (32 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using JenkinsNET.Console.Internal;
using System;
using System.Threading.Tasks;
using SysConsole = System.Console;
namespace JenkinsNET.Console
{
internal static class Program
{
public static async Task<int> Main(string[] args)
{
SysConsole.ForegroundColor = ConsoleColor.White;
SysConsole.WriteLine("Jenkins.NET Console");
SysConsole.WriteLine();
try {
var arguments = new Arguments();
arguments.Parse(args);
await arguments.RunAsync();
return 0;
}
catch (Exception error) {
SysConsole.ForegroundColor = ConsoleColor.Red;
SysConsole.WriteLine("[ERROR] ");
SysConsole.ForegroundColor = ConsoleColor.DarkRed;
SysConsole.WriteLine(error.UnfoldMessages());
return 1;
}
finally {
SysConsole.ResetColor();
}
}
}
}