Deprecate RombaSharp

This commit is contained in:
Matt Nadareski
2024-10-29 16:58:29 -04:00
parent 929dc28b6e
commit 396ae96ab0
3 changed files with 6 additions and 4 deletions

View File

@@ -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

View File

@@ -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