Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageVersion Include="FluentFTP" Version="53.0.1" />
<PackageVersion Include="HIC.SynthEHR" Version="2.0.1" />
<!-- FAnsiSql.Legacy 3.3.1 (replaces older FAnsi 3.2.7 references) -->
<PackageVersion Include="FAnsiSql.Legacy" Version="3.3.1" />
<PackageVersion Include="FAnsiSql.Legacy" Version="3.3.4" />
<PackageVersion Include="LibArchive.Net" Version="0.1.5" />
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.7" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
Expand Down
3 changes: 3 additions & 0 deletions Rdmp.Core/Startup/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,12 @@ private static void LoadMEF(ICatalogueRepository catalogueRepository, ICheckNoti
/// </summary>
public static void PreStartup()
{
// ImplementationManager.Load() is marked obsolete but is still required at runtime for explicit registration of DBMS implementations.
#pragma warning disable CS0618 // ImplementationManager.Load() is obsolete but required
ImplementationManager.Load<MicrosoftSQLImplementation>();
ImplementationManager.Load<MySqlImplementation>();
ImplementationManager.Load<OracleImplementation>();
ImplementationManager.Load<PostgreSqlImplementation>();
#pragma warning restore CS0618
}
}
Loading