In the application I found such a class looking for suitable files
namespace SqlServerTypes
{
/// <summary>
/// Utility methods related to CLR Types for SQL Server
/// </summary>
public class Utilities
{
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr LoadLibrary(string libname);
/// <summary>
/// Loads the required native assemblies for the current architecture (x86 or x64)
/// </summary>
/// <param name="rootApplicationPath">
/// Root path of the current application. Use Server.MapPath(".") for ASP.NET applications
/// and AppDomain.CurrentDomain.BaseDirectory for desktop applications.
/// </param>
public static void LoadNativeAssemblies(string rootApplicationPath)
{
var nativeBinaryPath = IntPtr.Size > 4
? Path.Combine(rootApplicationPath, @"SqlServerTypes\x64\")
: Path.Combine(rootApplicationPath, @"SqlServerTypes\x86\");
LoadNativeAssembly(nativeBinaryPath, "msvcr120.dll");
LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial140.dll");
}
private static void LoadNativeAssembly(string nativeBinaryPath, string assemblyName)
{
var path = Path.Combine(nativeBinaryPath, assemblyName);
var ptr = LoadLibrary(path);
if (ptr == IntPtr.Zero)
{
throw new Exception(string.Format(
"Error loading {0} (ErrorCode: {1})",
assemblyName,
Marshal.GetLastWin32Error()));
}
}
}
}
When I call the following command in a project:
Install-Package Microsoft.SqlServer.Types -Version 14.0.1016.290
These files are installed in:
myapp\packages\Microsoft.SqlServer.Types.14.0.1016.290\nativeBinaries\x64
myapp\packages\Microsoft.SqlServer.Types.14.0.1016.290\nativeBinaries\x86
And the application tries to look for them in the catalog:
myapp\mynameApp\SqlServerTypes\x64
myapp\mynameApp\SqlServerTypes\x86
What's wrong here?
As you can see by the method above, it tries to look in a different place than it is installed
Nuget doesn't install correctly, or does SqlServerTypes have a wrong function?
What can you do about it?
Manually adding files in the right place is out