Reputation: 4526
Hello I'm trying to build a website using Team Build 2010 (TFS and stuff), but it gives me this error:
The type or namespace name 'something_ascx' does not exist in the namespace 'ASP' (are you missing an assembly reference?)
As I went to google, I found out that ASP is a 'pseudo' namespace which can't be referenced while compiling... but what I am supposed to do to make it work ?
Upvotes: 0
Views: 622
Reputation: 11493
Does your program builds locally? What about if you get latest version on a new machine? You may forget to check-in/update something.
Upvotes: 0
Reputation: 5358
dlls are not checked-in by default so if your building the application after several user check-ins, the dlls must be manually synchronized. I usully create a shared folder and add all the applications dlls there so that all users have the same version of them.
Upvotes: 1