Convert / downgrade Visual Studio 2015 solution to 2013

How can I override the Visual Studio 2015 solution file to the 2013 solution file that opens initially in Windows? Or, how can I get the Visual Studio version selector to open the solution file 2015 after I remove the 2015 2015 RC?

+6
source share
2 answers

Have you tried this solution ? Just try changing the โ€œFormat Versionโ€ in the first line of the .sln file (Visual Studio 2012 has 12.00, so I guess 2013 is 13:00).

+4
source

For a C ++ project, the procedure is similar:

Modify the .vcxproj file and change ToolsVersion to 13.0 and all instances of <PlatformToolset>v140</PlatformToolset> to v120

 <Project DefaultTargets="Build" ToolsVersion="13.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> ... <PlatformToolset>v120</PlatformToolset> 

Edit: I found that you can change the platform toolkit through project properties (perhaps less error prone)

Right-click on your project and go to General โ†’ Platform Toolbox, change to Visual Studio 2013 (v120).

0
source

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


All Articles