diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-06-23 20:57:43 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-06-23 20:57:43 +0300 |
| commit | 55c624cfa11e1c7998e5d3de0721aeee0814ce33 (patch) | |
| tree | adaad581c820aee174d559b6bae1075a78ea793b /Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs | |
| parent | 9488c1e116ffb61beb7bd581695605a75b2b7de9 (diff) | |
| download | Tango-55c624cfa11e1c7998e5d3de0721aeee0814ce33.tar.gz Tango-55c624cfa11e1c7998e5d3de0721aeee0814ce33.zip | |
Implemented TouchAutoComplete!
Refactored VSIX Tango Build Engine to use VS dialogs only.
Added SQLite generation to VSIX.
Implemented Job customer with auto complete on PPC job view.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs b/Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs index 92ab04ddf..1f28e4e89 100644 --- a/Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs +++ b/Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs @@ -22,6 +22,16 @@ namespace Tango.SQLiteGenerator.CLI { static void Main(string[] args) { + Console.Title = "Tango SQLite Generator"; + +#if DEBUG + args = new string[] + { + Path.GetFullPath( "..\\..\\..\\DB\\Tango.db"), + "CopyAll" + }; +#endif + String sqlitePath = args[0]; Config conf = args.Length > 1 ? (Config)Enum.Parse(typeof(Config), args[1]) : Config.Default; |
