Click here to Skip to main content
15,884,099 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I want to include a third party library in my project.
Some posts tell me to copy the dll directly in my bin folder.
Can I instead put it in a generic folder so that all the third party libraries are in one place and can be referenced in any project?
Posted

1 solution

You can use a VisualStudio Solution folder - see http://msdn.microsoft.com/en-us/library/haytww03(v=vs.80).aspx
This is good if you have more projects in one solution referencing your 3rd party lib.

If you want your lib to be used in different solutions it could be installed in the GAC and refenced from there (I don't like this, because I think every project should be independent from a special developer machine) - So I'd copy it to a special "include" folder for every solution.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900