Reputation: 37460
I have a .sln file created in Visual Studio 2010:
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
This has a single Project which is a .dtproj file. The header of this file looks like:
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DeploymentModel>Project</DeploymentModel>
<ProductVersion>11.0.2100.60</ProductVersion>
<SchemaVersion>9.0.1.0</SchemaVersion>
I have VS 2010 Professional installed, but when I try to open this solution I get an error that the project type is not supported.
This machine also has VS2008, VS2012, and SQL Server 2008R2 with the BI Dev Studio.
What am I missing? How can I get support for this .dtproj project type?
Upvotes: 12
Views: 15645
Reputation: 779
You need to install the project extension for this purpose. Here is the download link from marketplace.
https://marketplace.visualstudio.com/items?itemName=SSIS.SqlServerIntegrationServicesProjects
For VS 2022, you should go to https://marketplace.visualstudio.com/items?itemName=SSIS.MicrosoftDataToolsIntegrationServices
After that you need to restart the visual studio and you should be open up the project without any issue.
Upvotes: 8
Reputation: 35400
Looks like MS has a solution for you (from Microsoft Support):
To resolve the issue in which you cannot open the project in SQL Server BIDS after you upgrade the project, follow these steps:
You can read more about it here.
Upvotes: 0