Software management consultant and CTO, Headspring Systems
Previously, I posted how to support developers running Visual Studio 2008 and Visual Studio 2005 on the same .Net 2.0 solution on the same team, built, CI server, etc. The solution is to have 2 solution files. These files have to be kept in sync to keep a healthy build process.
It is very important to keep the VS2005 solution the main solution and the solution used in the continuous build because VS2008 supports everything there, but if you add a project using VS2008, VS2005 might not recognize some things. An example of this is with the path to the Microsoft.CSharp.targets file.
If you create a new project using VS2008, you'll see the following in the newly created project:
Note the $(MSBuildToolsPath) property. This was added in .Net 3.5, and Visual Studio 2005 and MSBuild for .Net 2.0 doesn't understand this property. Changing the project file to the following makes both versions of Visual Studio happy. (change it to $(MSBuildBinPath)

About Jeffrey Palermo
Jeffrey Palermo is a software management consultant and the CTO of Headspring Systems in Austin, TX. Jeffrey specializes in Agile coaching and helps companies double the productivity of software teams. Jeffrey is an MCSD.Net , Microsoft MVP, Certified Scrummaster, Austin .Net User Group leader, AgileAustin board member, INETA speaker, INETA Membership Mentor, Christian, husband, father, motorcyclist, Eagle Scout, U.S. Army Veteran, and Texas A&M University graduate.