I am working on a project in which we use type types Geo SqlServer.
To do this, I had to add some DLL files to the solution, which is copied during the build process:
SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~/bin"));
This works fine on my machine, but because of this, the guys from my team have build errors. We use our local IIS to host the solution, and once IIS is launched, they can no longer work.
The only solution we found now is to restart the application pool (but to be honest, we just type iisreset)
Here is the part of the error message (I stripped the solution / project name)
Error 15 Could not copy "C:\Workspace\code-...Error 15 Could not copy "C:\Workspace\My-Awesome-Project\Web\MyAwesomeProject.Web\packages\Microsoft.SqlServer.Types.11.0.1\nativeBinaries\x64\msvcr100.dll" to "bin\SqlServerTypes\x64\msvcr100.dll". Exceeded retry count of 10. Failed.
I believe that there is a difference between my computer and my colleague, but we cannot point out one difference that can affect the problem.
Any clue?
source share