I have a web project (MVC), which uses one native library (the ghostscript library).
Though my code, I am referencing this library with the DLLImport attribute
[DllImport("gsdll64.dll", EntryPoint = "gsapi_new_instance")]
private static extern int gsapi_new_instance (out IntPtr pinstance, IntPtr caller_handle);
Now I need to deploy this web application. How to deploy the native DLL as well? I am not referencing it like a normal managed library and I am a bit confused about the deploying.