The error “This project is incompatible with the current version of visual studio” displayed

后端 未结 10 1010
别跟我提以往
别跟我提以往 2020-12-30 22:34

I installed Vs 2010 Express in my PC, and created a poject named myproject with .net 4.0, it works well in Vs 2010 Express.

Now I installed Vs 2012 Express in my

相关标签:
10条回答
  • 2020-12-30 23:20

    If the message "This project is incompatible with the current version of Visual Studio" is due to an attempt to open a project targeting .Net 4.5 with Visual Studio 2010, then the "solution" or workaround is to edit the .csproj file and change the TargetFrameworkVersion from "v4.5" to "v4.0". That at least allows the project to be loaded, although it may result in compiler errors if the program is dependent on 4.5 features.

    0 讨论(0)
  • 2020-12-30 23:25

    I faced out with this problem, the solution was:

    1. Open VS2017
    2. Go to Tools
    3. Go to Extensions and updates
    4. Search for Reporting Services Project and then "Enable"; close your VS.
    5. Open again your project/solution.

    -- MT

    0 讨论(0)
  • 2020-12-30 23:27

    I received this error because during the BizTalk install I did not check the Developer Tools and SDK checkbox. I went back and modified my installation and that error went away for me now.

    0 讨论(0)
  • 2020-12-30 23:28

    Trying to load a BizTalk Project in VS2012 without BizTalk installed on your developer machine, will result in this error and the projects will load. This should be the first thing you check.

    0 讨论(0)
提交回复
热议问题