Where are components (dll) references stored in ASP.NET?

asp.net

Solution

The answer depends on if your project is a Web Site or a Web Application. In a Web Site all the assemblies in the bin directory are automatically referenced. A Web Application has the project references that you are looking for.

Problem

I have dlls in bin directory. I can't see where they are referenced in either solution or web.config files. So where are the references stored ?

Original source