Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
How to add reference of a particular dll in bin folder.I right click the bin folder->then add reference-> now how to find a particular dll...

I want to add Telerik dll reference..
Posted
Comments
Sampath Lokuge 28-Jan-14 7:45am    
Is this for VS 2012 ?
Member 10435696 28-Jan-14 7:56am    
no 2010
ZurdoDev 28-Jan-14 7:46am    
Click browse.
Member 10435696 28-Jan-14 7:57am    
after clicking browse where to search my dll...where are all dll..whether i have to use google
ZurdoDev 28-Jan-14 8:12am    
Do you have the dlls? If not, you have to buy them.

In Visual Studio 2012 (may be the same for others)

Click On your References Menu item and

Add reference --> Click Browse --> And select your dll from the Bin Folder


Now with the Convenience of NuGet
 
Share this answer
 
v2
Comments
Member 10435696 28-Jan-14 7:56am    
Could not load file or assembly 'Telerik.Web.UI, Version=4.0.0.0, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
I have added refernce but it is giving this error
Sampath Lokuge 28-Jan-14 8:01am    
Yep,Best way is to get that dlls from the 'nugget package'.Then it'll update your references properly.
Member 10435696 28-Jan-14 8:04am    
what is nugget package?
Sampath Lokuge 28-Jan-14 8:08am    
I have updated the url on above post.Please check that.
Visual Studio:

Copy the DLL into the folder of the project you may want to use, e.g. if your project is located under "C:\Temp\MyProject" and your DLL is located at "C:\DLLS\Mydll.dll", you need to copy "Mydll.dll" to "C:\Temp\MyProject".
Then, Start Visual Studio and go to the Project, Right Click the project name -> Add Reference -> Browse -> Browse... [Button in the bottom right corner] -> Select the Dll file at "C:\Temp\MyProject\Mydll.dll". Done.
 
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