Skip to content

Commit

Permalink
Fix loader for new DLL name
Browse files Browse the repository at this point in the history
  • Loading branch information
bdukes committed Apr 17, 2024
1 parent 341bbb6 commit 30dc050
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/SqlServerTypes/Loader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ public static void LoadNativeAssemblies(string rootApplicationPath)
? Path.Combine(rootApplicationPath, @"SqlServerTypes\x64\")
: Path.Combine(rootApplicationPath, @"SqlServerTypes\x86\");

LoadNativeAssembly(nativeBinaryPath, "msvcr120.dll");
LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial140.dll");
LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial160.dll");
}

private static void LoadNativeAssembly(string nativeBinaryPath, string assemblyName)
Expand Down

0 comments on commit 30dc050

Please sign in to comment.