Hi there
There is a small "typing mistake" in the code upper in this page.
The following line of code will produce an error because there is a quote too much or missing depending on your path.
<Exec Command=""C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv""$(SolutionRoot)\HelloWorldTest\HelloWorldTestInstaller\HelloWorldTestInstaller.vdproj /Build "Debug|Any CPU""/>
If your path (Team Build Name + Project name and folder) contains a space then you should add a quote between .vdproj and /build as shown below (underlined)
<Exec Command=""C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv" "$(SolutionRoot)\HelloWorldTest\HelloWorldTestInstaller\HelloWorldTestInstaller.vdproj" /Build "Debug|Any CPU""/>
The above one is the safer because it would work as well without spaces. Otherwise if you have no spaces in your path, this should be sufficient.
<Exec Command=""C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv" $(SolutionRoot)\HelloWorldTest\HelloWorldTestInstaller\HelloWorldTestInstaller.vdproj /Build "Debug|Any CPU""/>
That was it.
Thx for this nice article anyway, and keep up the good work