Tool version "15.0" not recognized

I created a project with Visual Studio 2017 on my computer at home. But when I try to open it using SharpDevelop , it says:

"Tool version" 15.0 "not recognized."

My SharpDevelop is located on a USB drive, so I use it on different computers. Is there any way to fix this, or can I somehow change the version of the tool?

Enter a description of the image here.

+5
source share
1 answer

It depends on whether you use any function related to the tool chain 15, but if you do not, you must open the text editor .csproj and change the version of the tools to 14.

 <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 

If the above does not work for you, recreate the project in Visual Studio 2015; which will use version 14 of the tools. You should be able to open the project in Visual Studio 2017 and in SharpDevelop.

+7
source

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


All Articles