I'm using the Microsoft.SqlServer.Types library in an ASP.NET application. The library depends on a native DLL that has to be loaded with LoadLibrary()
via P/Invoke.
The documentation of the library suggests loading the native DLL from Server.MapPath("~/bin")
, but this causes the native DLL to be locked, preventing new deployments of the application.
I was therefore thinking of retrieving the shadow copy location of the main website DLL with Assembly.GetExecutingAssembly().Location
, copying the native DLL to that location, and then loading it from there.
Is it safe to do that? Or is there a safer method that should be used?
I've gone ahead and implemented this, it seems to work fine. No locking issues when deploying.
Sample code is below. You may need to modify this depending on your environment, it's written for Web API 2 hosted in OWIN.
The
CopyTo
method is a modified version of the code at https://learn.microsoft.com/en-us/dotnet/standard/io/how-to-copy-directories