Alex Watts
Alex Watts

Reputation: 567

SSDT not working with Visual Studio 2015

I'm running Visual Studio 2015 and imported a project which has a .rptproj file for the SSRS that it outputs, and it's consistently labeled as "incompatible." As per all the other posts about this kind of issue, I've updated the Database Tools in Visual Studio, as well as trying to get the download directly from the MSDN website. Every form of updating SSDT has left the file as incompatible still, so I'm not sure what might be going on in my setup that I could be missing.

Upvotes: 1

Views: 1385

Answers (1)

Panagiotis Kanavos
Panagiotis Kanavos

Reputation: 131704

You need both the latest SSDT version (14.0.60305) and Visual Studio Update 2 RC to work with SSRS and SSIS. Annoyingly, this wasn't mentioned in the blog post that announced the latest SSDT version.

After installing both I was able to move all my SSIS and SSRS projects targeting SQL Server 2014 to VS 2015. If I remember correctly, the latest SSDT version solved the script component incompatibiblity in SSIS, and VS Update 2 RC fixed incompatibility issues for SSRS.

Make sure you target SQL Server 2014 in your project properties, as by default they target SQL Server 2016

Upvotes: 1

Related Questions