Skip to content

Commit 30dc050

Browse files
committed
Fix loader for new DLL name
1 parent 341bbb6 commit 30dc050

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/SqlServerTypes/Loader.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ public static void LoadNativeAssemblies(string rootApplicationPath)
1616
? Path.Combine(rootApplicationPath, @"SqlServerTypes\x64\")
1717
: Path.Combine(rootApplicationPath, @"SqlServerTypes\x86\");
1818

19-
LoadNativeAssembly(nativeBinaryPath, "msvcr120.dll");
20-
LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial140.dll");
19+
LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial160.dll");
2120
}
2221

2322
private static void LoadNativeAssembly(string nativeBinaryPath, string assemblyName)

0 commit comments

Comments
 (0)