25

I'm getting error like this after updating sql server to 2016. I have opened the project in VS2015 & while rebuilding Database project I'm getting error like below:

Unsupported This version of Visual Studio is unable to open the following projects. The project types may not be installed or this version of Visual Studio may not support them. For more information on enabling these project types or otherwise migrating your assets, please see the details in the "Migration Report" displayed after clicking OK.enter image description here

Averla Team
  • 407
  • 1
  • 6
  • 16
  • Since I didn't upgrade to 2016 by now I am not sure, but maybe you have to do some additional installation? Such as Data Tools 2016 or something? By the way, in which VS did you create the project initially? – Tyron78 Aug 10 '17 at 12:06
  • Install Sql Server Data Tools. Similar question to this: https://stackoverflow.com/questions/18148445/cannot-open-sqlproj-because-it-is-not-supported – Carra Aug 10 '17 at 12:08
  • @Tyron78 I have created project in vs 2015 and currently using same – Averla Team Aug 10 '17 at 12:13
  • Then it is most certainly that you need to install / update the SQL Server Data Tools - they are dependent on the SQL Server Version – Tyron78 Aug 10 '17 at 12:24

3 Answers3

30

I got the same error when opening Old (VS2015) project on Visual Studio 2017

These actions solved my problem:

  • Install the latest version of SSDT
  • Open Visual Studio 2017: Go to: Tools > Extensions And Updates > Search: Microsoft Integration Services Projects > Click: Enable
  • In SSIS Project On Solution: Right Click > Reload Project
Refael
  • 6,753
  • 9
  • 35
  • 54
5

I got the same error when opening old projects in Visual Studio 2019.

These actions solved my problem:

Open Visual Studio 2019 and go to Tools > Extensions > Download to download these three tools:

  1. SQL Server Integration Services Project
  2. Microsoft reporting service project
  3. Microsoft analysis service project

Close VS and update package, then restart VS by double-click an old .sln file.

Adrian Mole
  • 49,934
  • 160
  • 51
  • 83
-4
  • Uninstall all SQL Data Tools from Programs and Features
  • Uninstall Analysis Services and Reporting Services
  • Install SSDT for Visual Studio from Microsoft website
  • Right click Visual Studio solution file and 'Open With' MS Visual Studio 2017
  • Right click and choose 'Reload Project'
Programmer
  • 86
  • 3