forked from sethreno/schemazen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseCommand.cs
44 lines (40 loc) · 1.36 KB
/
BaseCommand.cs
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
41
42
43
44
using ManyConsole;
using Mono.Options;
namespace SchemaZen.Console;
public abstract class BaseCommand : ConsoleCommand {
protected BaseCommand(string command, string oneLineDescription) {
IsCommand(command, oneLineDescription);
Options = new OptionSet();
SkipsCommandSummaryBeforeRunning();
HasOption("s|server=", "server", o => Server = o);
HasOption("b|database=", "database", o => DbName = o);
HasOption("c|connectionString=", "connection string", o => ConnectionString = o);
HasOption("u|user=", "user", o => User = o);
HasOption("p|pass=", "pass", o => Pass = o);
HasRequiredOption(
"d|scriptDir=",
"Path to database script directory.",
o => ScriptDir = o);
HasOption(
"o|overwrite",
"Overwrite existing target without prompt.",
o => Overwrite = o != null);
HasOption(
"v|verbose",
"Enable verbose log messages.",
o => Verbose = o != null);
HasOption(
"f|databaseFilesPath=",
"Path to database data and log files.",
o => DatabaseFilesPath = o);
}
protected string Server { get; set; }
protected string DbName { get; set; }
protected string ConnectionString { get; set; }
protected string User { get; set; }
protected string Pass { get; set; }
protected string ScriptDir { get; set; }
protected bool Overwrite { get; set; }
protected bool Verbose { get; set; }
protected string DatabaseFilesPath { get; set; }
}