I am using TFS 2010 and trying to build a .NET 2.0 project on either of two Windows Server 2008 (x86) build machines. The build machines have .NET versions 1.0, 1.1, 2.0, 3.0, 3.5, 4.0, and Windows SDK 7.0A installed (along with TFS 2010 and Visual Studio 2010).

Since some seemingly minor refactoring changes this week, the project builds are now always marked as partially succeeded: although the compilation finishes with no errors, TFS encounters seven Tracker.exe errors. For example, in the build summary, the following report is shown:

Other Errors and Warnings
7 error(s), 0 warning(s)
Tracker.exe: Response file C:\Users\Builder\AppData\Local\Temp\5647f0a8ac7a4d53b87a8c2ebca3c4f5.rsp not found.
Tracker.exe: Response file C:\Users\Builder\AppData\Local\Temp\5647f0a8ac7a4d53b87a8c2ebca3c4f5.rsp not found.
Tracker.exe: Response file C:\Users\Builder\AppData\Local\Temp\5647f0a8ac7a4d53b87a8c2ebca3c4f5.rsp not found.
Tracker.exe: Response file C:\Users\Builder\AppData\Local\Temp\5647f0a8ac7a4d53b87a8c2ebca3c4f5.rsp not found.
Tracker.exe: Response file C:\Users\Builder\AppData\Local\Temp\5647f0a8ac7a4d53b87a8c2ebca3c4f5.rsp not found.
Tracker.exe: Response file C:\Users\Builder\AppData\Local\Temp\5647f0a8ac7a4d53b87a8c2ebca3c4f5.rsp not found.
Tracker.exe: Response file C:\Users\Builder\AppData\Local\Temp\5647f0a8ac7a4d53b87a8c2ebca3c4f5.rsp not found.

The conventional fix for Tracker.exe errors is to disable incremental builds by passing /p:TrackFileAccess=false to MSBuild or by adding TrackFileAccess=false to the configuration settings in the MSBuild project. In the past, this has always fixed Tracker.exe issues.

However, this time the Tracker.exe errors still occur, even though there is no longer a need to track changes after turning TrackFileAccess off. I even went as far as to rename C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\NETFX 4.0 Tools\Tracker.exe on the build machine -- and the error still occurred (I was expecting an error to say that Tracker.exe could not be found).

What could be going on here? I've searched the build machine's file system for other copies of Tracker.exe. Could it be that a build definition or MSBuild project settings are getting overridden? Thanks!

link|improve this question

75% accept rate
Information from further research: we branched the code and upgraded the solution from .NET 2.0 and Visual Studio 2005 to .NET 4.0 and Visual Studio 2010. The Tracker.exe errors no longer occur on the .NET 4.0 and VS2010 branch. – Steve HHH Jan 16 at 23:30
feedback

1 Answer

You state that you have renamed the only instance of 'Tracker.exe' of you build server, yet the build wasn't affected at all.
Can it be that the actual build happens on a different Computer (build agent), this is quite possible with the TFS 2010 build topology:
enter image description here

An easy way to determine the server where your actual build took place is to check your build log, hopefully one with verbosity=diagnostic. Open 'View Log' and search for "Run on Agent". You should get something like
Run On Agent (reserved build agent <agentName> - <serverName>)
obviously <serverName> is where it all happened.

Regarding your concern Could it be that a build definition or MSBuild project settings are getting overridden? : again, your best bet it to check the build log. Search for MSBuild Log File, this should send you to a region where the actual MSBuild callup is traced.

link|improve this answer
Thanks Pantelif. I had renamed Tracker.exe on a build machine, not the server, and forced the build to be run on that build machine. As error still occurred, Tracker.exe must be running on the server, rather than the build agent. I don't want to change Tracker.exe on the server because that will affect other projects, so I'm currently digging through thirty thousand lines of diagnostic build log output. (-: – Steve HHH Jan 9 at 20:31
feedback

Your Answer

 
or
required, but never shown

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