Using the v120 Platform Toolkit in Visual Studio 2015

I am using Visual Studio 2015 (Update 3) on Windows 10. I have one solution consisting of several projects. One of these projects should be built using the tools of the Visual Studio 2013 platform (v120). Unfortunately, it is not installed on my machine. I know how to change the platform toolkit for projects or Retarget Solution, but I do not want to do this. I want to install the Visual Studio 2013 platform toolkit (v120) for Visual Studion 2015. The only way I have found so far is to install the entire version of Visual Studio 2013 besides version 2015, which is not a good solution.

I tried another solution for this problem, for example, install the v120 build tools separately and have a look at this link . But that did not work for me. Any solution other than installing Visual Studio 2013 is welcome.

+3
visual-studio msbuild
source share
1 answer

You can install the VS2013 kit version from the VS2015 installer without installing visual studio 2013. From the 2015 installer, select Windows 8.1 and Windows Phone 8.0 / 8.1 Tools and General Tools for Visual C ++ 2015:

enter image description here

After installation is complete, you will find the Toolset platform below:

enter image description here

Then you can create your project using the tools of the Visual Studio 2013 platform (v120).

We hope that these clouds will help you.

+5
source share

All Articles