MSBuild is now equipped with Visual Studio, and its version control is the same as Visual Studio. It is also provided as a standalone installer (Microsoft Build Tools 2013), as shown here: http://www.visualstudio.com/en-us/downloads
Due to the fix that Microsoft released in Visual Studio 2013 Update 3, I'm trying to find the equivalent MSBuild assembly to install on the build server. The version of MSBuild indicated in the download link above is 12.0.21005.1, which corresponds to the original version of VS2013.
I can not find anywhere with the Microsoft Build Tools 2013 installer version that was created after the release of version 3. The build number of VS2013 Update 3 is 12.0.30723.0.
Does anyone know where to find this? Or is there an alternative way to copy an updated version of MSBuild from my development computer (which has update VS2013 3) to the build server?
I do not want to fully install Visual Studio on the build server.
Additional Information
The reason I need VS2013 3 build tasks is because the SignFile task has been updated to accept the targetframeworkversion parameter, which bypasses the error when signing ClickOnce applications. See http://msdn.microsoft.com/en-us/library/ms164304.aspx .
source
share