Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

asp.net

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 ?

like image 385
user310291 Avatar asked Mar 18 '10 11:03

user310291


2 Answers

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.

like image 142
Geoff Avatar answered Oct 04 '22 07:10

Geoff


If you actually have them referenced, they should be "stored" in the project files (*.csproj for C#, *.vbproj for Visual Basic).

like image 31
R. Martinho Fernandes Avatar answered Oct 04 '22 06:10

R. Martinho Fernandes