From 55c624cfa11e1c7998e5d3de0721aeee0814ce33 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Sat, 23 Jun 2018 20:57:43 +0300 Subject: 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. --- .../Utilities/Tango.SQLiteGenerator.CLI/Program.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs') 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; -- cgit v1.3.1