aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.SQLiteGenerator.CLI/Program.cs10
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;