Buck Hodges

Azure DevOps (formerly VSTS and Team Foundation Server)

Perf counters in TFS 11

Jim Szubryt has written a post listing the perf counters available in all versions of TFS and calls out the new ones in TFS 11.  Check it out if you are looking at the performance of your server. New Perfmon Counters With TFS 11 Beta Whether you are a small company running TFS or a large Enterprise there may come a time for you too ...

TFS 11 Beta upgrade: Existing workflows that have custom workflow activities using the TFS client OM

Duat, a developer on Team Foundation Build, has written a blog post on how to resolve post-upgrade issues with your build workflow if your 2010 build workflow uses custom workflow activities that use the TFS client object model. Your custom assemblies need update, or else, redirecting Loading your custom assemblies in the TFS 11 build ...

Running only impacted tests in TFS 2010 Build

Richard Hundhausen pointed out this blog post recently, and I thought I’d mention it here.  Rob Maher walks through the process of setting up a build definition to run only the tests that involve the code that was changed. TFS 2010 Build - Only run impacted tests If your tests take a long time to run, you may wish to only run ...

A tool to find duplicate copies in a build

As part of our builds, quite a few projects copy files to the binaries directory or other locations.  These can be anything from image files to test scripts.  To have our builds complete more quickly, we use the multi-process option (/maxcpucount) of msbuild to build projects in parallel. This all sounds normal, so what’s the ...