I have a Website Project in Visual Studio 2010 along with a Class Library Project. When I try to build the Solution from Visual Studio 2010 it builds successfully but fails in TFS 2010 Build. I have some custom .dll files added to website and it throws error in my class that following method is undefined. The same thing builds 100% ok in VS 2010. Earlier I had a different project structure but since then I even changed the project and file structure following this article on MSDN for TFS 2010 Version control.

The Build fails and it drops a log file in the drop folder.

EDIT

Some of the errors in the log files are related like this.

error BC30451: 'AutoCompleteExtender' is not declared. It may be inaccessible due to its protection level.

error BC30002: Type 'IFileNameGenerator' is not defined.

These errors don't show up in VS2010.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This problem could occur when you are referencing a DLL from your solution that is not installed on the server or is somewhere in your project structure but not included in your TFS source control.

If you look at your build summary in TFS you have a 'View Log' option that shows more details. You can also specify a log verbosity in your buil;d definition template. Increasing this could give you some hints.

link|improve this answer
I see your point. I noticed that in my local folder it shows .dll and .dll.refresh but in source control it only shows .dll.refresh. I cannot add just .dll to source control. Any idea on this? Thanks. – Mitul Nov 18 '11 at 15:58
Do you mean you don't now how to add a single file to TFS? You can do this in two ways. Or you include the file in your project so it gets automatically added to source control or you could manually add the file from Source Control in your Team Explorer. – Wouter de Kort Nov 18 '11 at 17:18
You Simply Rock. Adding directly from Source Control worked and Build passes smoothly. Thanks a Ton. – Mitul Nov 18 '11 at 18:11
feedback

Read the log file. Searching for :error usually helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.