Alper Şaldırak
Alper Şaldırak

Reputation: 1054

Bamboo MsBuild .Net Framework 2.0

My project is .Net Framework 2.0 and I am use Visual Studio 2012. My project build success at my local but project is build error at bamboo server

enter image description here

Solution file error MSB5014: File format version is not recognized. MSBuild can only read solution files between versions 7.0 and 9.0, inclusive.

Upvotes: 1

Views: 782

Answers (1)

Paul Hunt
Paul Hunt

Reputation: 3555

You need to use version 4 of MSBuild in the "Executable" option as this determines the version of MSBuild tools used to compile the application. Do not confuse this with the version of the .NET framework you are targetting, which is controlled by your project files.

Upvotes: 1

Related Questions