How to convert Visual Studio 2015 solution (.sln) to Visual Studio 2017.
In the past, when a solution from a previous version was opened in the newer VS there was a wizard doing the conversion, but it seems it's not the case in with these versions.
How to convert Visual Studio 2015 solution (.sln) to Visual Studio 2017.
In the past, when a solution from a previous version was opened in the newer VS there was a wizard doing the conversion, but it seems it's not the case in with these versions.
Edit the .sln file with a text editor like notepad. Change the first 3 lines to
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15
The first line is empty.
When you save the changes, the icon of the .sln file is changed and the solution will be opened by VS 2017 when double-clicked.
I cannot find Retarget Solution. What I did instead:
Actually I got the idea from here: Upgrade Visual Studio 2013 solutions to Visual Studio 2015
In my case, I've searched and applied all solutions.
What was the solution? There was a global.json next to the solution and it contained an sdk parameter, I changed it to 2.1.413 (the latest as of today 25/10), and it now compiles!!!