You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
618 B
17 lines
618 B
using CommandLine;
|
|
|
|
namespace OpenDBDiff.CLI
|
|
{
|
|
public class CommandlineOptions
|
|
{
|
|
[Option('b', "before", Required = true, HelpText = "Connection string of database before changes are applied.")]
|
|
public string Before { get; set; }
|
|
|
|
[Option('a', "after", Required = true, HelpText = "Connection string of database after changes are applied.")]
|
|
public string After { get; set; }
|
|
|
|
[Option('o', "outputfile", Required = false, HelpText = "Output file of action script. If omitted, script is written to the console.")]
|
|
public string OutputFile { get; set; }
|
|
}
|
|
}
|