Link to home
Start Free TrialLog in
Avatar of Easwaran Paramasivam
Easwaran ParamasivamFlag for India

asked on

How to know in which projects a particular DLL is referred?

I would like to know in what projects a particular dll (in my case it is System.Data.SQLite.dll) is referred in a solution?

Is there any easy way to achieve this instead of going and searching manually in all of the projects? If so, please do share with me.
ASKER CERTIFIED SOLUTION
Avatar of Luis Pérez
Luis Pérez
Flag of Spain image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
when you prepare .net Setup. it will automatic add dependent Dll in Setup Project.
Avatar of Easwaran Paramasivam

ASKER

I would like to know while debugging the project.

Searching in csproj in VS 2010 is not giving the result.

After compiling, seeing the bin is not fair. Because sometimes the build may get failed.

Please do provide alternate solution.
you can put cursor on function name and Press F12. F12 key redirect you to function source and assembly name dispaly on the top.
I am searching for the DLL name and in which projects exist in my solution.
Thanks.