mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Deprecate RombaSharp
This commit is contained in:
@@ -473,7 +473,7 @@ Possible values are: Verbose, User, Warning, Error");
|
||||
System.IO.File.Create(db);
|
||||
|
||||
// Open the database connection
|
||||
SqliteConnection dbc = new SqliteConnection(connectionString);
|
||||
var dbc = new SqliteConnection(connectionString);
|
||||
dbc.Open();
|
||||
|
||||
// Make sure the database has the correct schema
|
||||
|
||||
@@ -49,7 +49,7 @@ namespace RombaSharp
|
||||
_help = RetrieveHelp();
|
||||
|
||||
// Credits take precidence over all
|
||||
if ((new List<string>(args)).Contains("--credits"))
|
||||
if (new List<string>(args).Contains("--credits"))
|
||||
{
|
||||
FeatureSet.OutputCredits();
|
||||
LoggerImpl.Close();
|
||||
@@ -104,7 +104,7 @@ namespace RombaSharp
|
||||
if (!Console.IsOutputRedirected && feature.ScriptMode)
|
||||
{
|
||||
Console.Clear();
|
||||
Globals.SetConsoleHeader("SabreTools");
|
||||
Globals.SetConsoleHeader("RombaSharp [Deprecated]");
|
||||
}
|
||||
|
||||
// Now process the current feature
|
||||
|
||||
Reference in New Issue
Block a user