Best way to store 3rd party DLLs in VS 2008 +
What is the standard practice to store DLLs in a solution ,where the dlls are used in multip开发者_如何学JAVAle projects.
I usually create a Library folder, put any third party dll's in there, and then reference the library dll's in projects.
Create a common store or folder for where the DLL's will be located, for example bin
and put those shared DLL's into that folder, and ensure the applications that are using those shared DLL's, to look into the bin
folder
MyAppFolder <-- Applications | +---- bin <-- Shared DLLs
精彩评论