Soros Liu
Soros Liu

Reputation: 96

Where in what files does the binary reference information be saved in VS.NET 2010 web project?

I have a vendor help develop a web project using VS.NET 2010. I got the delivered source codes from source code control system and tried to build it. There is an error message showing that one namespace is unknown, which is due to missing the reference of a .dll.

However, the vendor did add that reference into the web project and successfully built it in his own development environment. I know that for class library project, those reference information is saved in .csproj file. What about a file system web project? I did not see this information either in the .sln or the web application folder. Does anyone know where it is? I need to manually add the reference every time, which does not make any sense.

Upvotes: 2

Views: 188

Answers (1)

Stephen Byrne
Stephen Byrne

Reputation: 7505

check the web.config file in the system.web/assemblies element

Upvotes: 0

Related Questions