What do you call a DLL that is placed on the same directory as the EXE?

会有一股神秘感。 提交于 2019-12-13 03:41:10

问题


I need a little help in terminology.

You can put an assembly in the GAC to "share" these assembly globally in the machine. What do you call if you put the assembly in the same directory where the executable is?

I have been calling it "side-by-side" because the EXE and the DLL is "side-by-side". I've done some reading and it seems that "side-by-side" stands for something else

EDIT: Are those DLLs called "Private assemblies"?


回答1:


Side-by-side refers to two versions of the same assembly (i.e. 1.0.0.0, 1.1.0.0) being installed in the GAC at the same time.

Whether in the GAC or in the same local directory as the main application EXE assembly, this DLL assembly would be known as a dependency of the main assembly.




回答2:


One suggestion is using the terms local versions (NOT GAC) and system versions (GAC)



来源:https://stackoverflow.com/questions/5631491/what-do-you-call-a-dll-that-is-placed-on-the-same-directory-as-the-exe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!