mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
Some updates that should have been committed with the last rename
This commit is contained in:
@@ -31,7 +31,7 @@ namespace mRemoteNG.App
|
||||
public static MessageCollector MessageCollector { get; set; }
|
||||
public static Controls.NotificationAreaIcon NotificationAreaIcon { get; set; }
|
||||
public static bool IsConnectionsFileLoaded { get; set; }
|
||||
public static SqlConnectionsProvider SqlConnProvider { get; set; }
|
||||
public static PeriodicConnectionsUpdateChecker SqlConnProvider { get; set; }
|
||||
public static DateTime LastSqlUpdate { get; set; }
|
||||
public static string LastSelected { get; set; }
|
||||
public static ArrayList ExternalTools { get; set; } = new ArrayList();
|
||||
|
||||
@@ -189,7 +189,7 @@ namespace mRemoteNG.App
|
||||
{
|
||||
if (Settings.Default.UseSQLServer)
|
||||
{
|
||||
SqlConnectionsProvider _sqlConnectionsProvider = new SqlConnectionsProvider();
|
||||
PeriodicConnectionsUpdateChecker _sqlConnectionsProvider = new PeriodicConnectionsUpdateChecker();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ namespace mRemoteNG.UI.Forms.OptionsPages
|
||||
frmMain.Default.AreWeUsingSqlServerForSavingConnections = Settings.Default.UseSQLServer;
|
||||
if (Settings.Default.UseSQLServer)
|
||||
{
|
||||
Runtime.SqlConnProvider = new SqlConnectionsProvider();
|
||||
Runtime.SqlConnProvider = new PeriodicConnectionsUpdateChecker();
|
||||
Runtime.SqlConnProvider.Enable();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -151,7 +151,7 @@
|
||||
<Compile Include="Config\DataProviders\IDataProvider.cs" />
|
||||
<Compile Include="Config\Connections\SqlCommandBuilder.cs" />
|
||||
<Compile Include="Config\Connections\SqlConnectionsUpdateChecker.cs" />
|
||||
<Compile Include="Config\Connections\SqlConnectionsProvider.cs" />
|
||||
<Compile Include="Config\Connections\PeriodicConnectionsUpdateChecker.cs" />
|
||||
<Compile Include="Config\Connections\SqlUpdateTimer.cs" />
|
||||
<Compile Include="Config\Serializers\XmlConnectionsDeserializer.cs" />
|
||||
<Compile Include="Config\Putty\PuttySessionChangedEventArgs.cs" />
|
||||
|
||||
Reference in New Issue
Block a user