6

I want to install v140 build tools in visual studio 2013, as my project has been upgraded to vs 2015. I dont want to install vs 2015. is there a way to install v140 in vs 2013. Thanks

raju
  • 191
  • 1
  • 3
  • 12

3 Answers3

4

I tried to install the build tools, but the installation failed. I asked the same question on the MSDN forums and was told that VS is backward compatible but not forward compatible with build tool installs.

So, no—it is not possible to install v140 of the build tools on VS 2013, as this is an older version of Visual Studio than v140.

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
theSparky
  • 440
  • 3
  • 13
1

No, it is not possible! It is that simple, but I am forced to write at least 30 characters.

thewhiteambit
  • 1,365
  • 16
  • 31
0

You can download and install the Visual C++ 2015 build tools from here.

You can then change your toolset (as described here):

  • Right click your project, go to Properties.
  • Under Configuration Properties, go to General.
  • Change your Platform Toolset to one of the available ones.
Community
  • 1
  • 1
Peter K
  • 1,372
  • 8
  • 24
  • 4
    Thanks for a quick response! I had downloaded and installed build tools from the link given by you, but when i want to change platform toolset v140 toolset isn't showing up in the drop down menu. – raju Aug 17 '16 at 12:21
  • 2
    It is not possible. Build tools are for backwards compatibility, like VS2017 compiling VS2015. But it is not possible forward so I downvoted your answer. – thewhiteambit Oct 04 '17 at 21:06