forked from LeanKit/LeanKit.API.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
40 lines (36 loc) · 933 Bytes
/
Program.cs
File metadata and controls
40 lines (36 loc) · 933 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
38
39
40
//------------------------------------------------------------------------------
// <copyright company="LeanKit Inc.">
// Copyright (c) LeanKit Inc. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using PowerArgs;
namespace LeanKitCmdQuery
{
class Program
{
static void Main(string[] args)
{
try
{
// Parse command line parameters
var cmdArgs = Args.Parse<QueryArgs>(args);
// Initialize mappings
var mappings = new Mappings.Mappings();
mappings.Init();
// Run the query
new LeanKitQuery(cmdArgs).RunQuery();
}
catch (ArgException aex)
{
// Invalid arguments were passed, write out help
Console.WriteLine(aex.Message);
ArgUsage.GetStyledUsage<QueryArgs>().Write();
}
catch (Exception ex)
{
Console.WriteLine("Unexpected error: " + ex.Message);
}
}
}
}