mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Rename Database helper class to DBTools so there's no confusion about naming later
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
<Compile Include="Helper\Converters.cs" />
|
||||
<Compile Include="Core\Generate.cs" />
|
||||
<Compile Include="Core\Import.cs" />
|
||||
<Compile Include="Helper\Database.cs" />
|
||||
<Compile Include="Helper\DBTools.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Helper\Remapping.cs" />
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.IO;
|
||||
|
||||
namespace DATabase.Helper
|
||||
{
|
||||
class Database
|
||||
class DBTools
|
||||
{
|
||||
public static void EnsureDatabase(string db, string connectionString)
|
||||
{
|
||||
@@ -15,7 +15,7 @@ namespace DATabase
|
||||
static void Main(string[] args)
|
||||
{
|
||||
// Perform initial setup and verification
|
||||
Database.EnsureDatabase(_dbName, _connectionString);
|
||||
DBTools.EnsureDatabase(_dbName, _connectionString);
|
||||
Remapping.CreateRemappings();
|
||||
Console.Clear();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user