0
我有一個Web項目(MVC),它使用一個本地庫(ghostscript庫)。部署使用本機DLL的Web應用程序
雖然我的代碼,我引用這個庫與DllImport屬性
[DllImport("gsdll64.dll", EntryPoint = "gsapi_new_instance")]
private static extern int gsapi_new_instance (out IntPtr pinstance, IntPtr caller_handle);
現在我需要部署的Web應用程序。如何部署本地DLL以及?我沒有像普通託管庫那樣引用它,我對部署有點困惑。