What is the impact of the MSBuild update on VS2010 for projects targeting the .NET Framework 2.0 and 3.5?

Im is working on a build process for VS 2010, and some projects in it target the .NET framework 4.0. As far as I know, for the solution of this type created by TFS 2008, we will have to change the version of the MSBuild.exe file used by the build agent - change the TFSBuildService.exe.config file, specifying the MSBuildPath entry accordingly.

Did you know that this will affect existing project builds targeting framework 2.0 and 3.5? Are you aware of any known issues with this type of setup?

+4
source share
1 answer

We made such an upgrade from VS2008 to VS2010 without TFS migration (so it is still in the 2008 version). The only problem we encountered was building a car (because we only have one), so we had to configure SideBySide assemblies. We had projects in VS2008 using MSBUILD scripts, some of which were ported to VS2010. Here's the solution http://www.codeproject.com/KB/architecture/SideBySideTfsBuild.aspx

After the change, we did not have any problems :)

+2
source

Source: https://habr.com/ru/post/1310050/


All Articles