Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我制作了一个 .net dll(类库),如果它在同一个文件夹中,它与我的 EXE 一起工作。但是有没有办法让 DLL “全局”,所以它安装在系统的某个地方,我仍然可以在我的 exe 中使用它?
在 VB6 和 activex 时代,我使用了 regsvr32 - 是否有类似于 regsvr32 但用于 .net dll 的东西?
有全局程序集缓存。
您必须将程序集发布/安装到全局程序集缓存。请参阅此链接了解操作方法。
是的,您可以从安装路径引用 DLL。
否则你可以使用GAC