I use third party library in my project. Call it like MainLibNET.dll
. I added this library in References
of my project. This dll has dependencies w
ASP.NET uses shadow copying, which:
enables assemblies that are used in an application domain to be updated without unloading the application domain.
You can add the following item to your Web.config file to disable this sandboxing feature:
...
...
This should allow you to load native DLL as you would for a .NET console application.