diff --git a/src/Engage.Dnn.SqlServerTypes.dnn b/src/Engage.Dnn.SqlServerTypes.dnn
index 6f6cfb6..89ee5be 100644
--- a/src/Engage.Dnn.SqlServerTypes.dnn
+++ b/src/Engage.Dnn.SqlServerTypes.dnn
@@ -24,12 +24,12 @@
0.0.0
- bin/SqlServerTypes/x64
+ bin/x64
SqlServerSpatial160.dll
0.0.0
- bin/SqlServerTypes/x86
+ bin/x86
SqlServerSpatial160.dll
0.0.0
diff --git a/src/SqlServerTypes/Loader.cs b/src/SqlServerTypes/Loader.cs
index 6fd59d3..ce995f4 100644
--- a/src/SqlServerTypes/Loader.cs
+++ b/src/SqlServerTypes/Loader.cs
@@ -13,8 +13,8 @@ internal class Loader
public static void LoadNativeAssemblies(string rootApplicationPath)
{
var nativeBinaryPath = IntPtr.Size > 4
- ? Path.Combine(rootApplicationPath, @"SqlServerTypes\x64\")
- : Path.Combine(rootApplicationPath, @"SqlServerTypes\x86\");
+ ? Path.Combine(rootApplicationPath, @"x64\")
+ : Path.Combine(rootApplicationPath, @"x86\");
LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial160.dll");
}