DLL Directory/ Folder

ayozzhero

Well-known member
Joined
Apr 6, 2005
Messages
186
Location
Malaysia
Programming Experience
1-3
I just learned to create DLL. When I add the DLL as reference to my new project, the DLL is copied to the application directory (bin).

Let's say, I want to put all DLLs (for the project) in one specific directory instead of the application directory, how would I do that?

Any help, idea or clue is much appreciated. Thank you.
 
All the binary files, i.e. executables and libraries, that make up your application should generally be kept together in the program folder unless you have a good reason for doing otherwise. A good reason might be that you have a very large number of libraries that you want to categorise, or you want to put common libraries in a common folder. If you still want to go ahead then I suggest you read this.
 
Back
Top