visual-studio 无法在 Visual Studio 中构建 dtproj [SSIS] 项目
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 
原文地址: http://stackoverflow.com/questions/1075766/
Warning: these are provided under cc-by-sa 4.0 license.  You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Can't build dtproj [SSIS] project in Visual Studio
提问by Walter
When I try to build a project in Visual Studio 2005 that has a .dtproj file, I get the error message:
当我尝试在具有 .dtproj 文件的 Visual Studio 2005 中构建项目时,我收到错误消息:
Make sure the application for the project type (.dtproj) is installed.
确保安装了项目类型 (.dtproj) 的应用程序。
This project was build on another system, but even after installing SQL Server 2005 & and SQL SP3, it still does not build.
这个项目是在另一个系统上构建的,但即使在安装了 SQL Server 2005 & 和 SQL SP3 之后,它仍然没有构建。
回答by The Matt
You need to install the Business Intelligence Studio that is a part of the SQL Server Installation.
您需要安装作为 SQL Server 安装一部分的 Business Intelligence Studio。
回答by Shiraz Bhaiji
You may be missing development tools from your installation of SQL Server.
您可能缺少 SQL Server 安装中的开发工具。
回答by Anthony Tristan
On my workstation at work I have VS.NET 2005, 2008 and 2010 loaded and needed to modify a package created in a 2005 environment. I only had SQL Server 2008 installed and therefore the BIDS environment for 2008 SSIS development. I had to go back and get the install for SQL Server 2005 and installed only the Integration Services component (instead of the entire SQL Server 2005 setup) and it resolved the issue mentioned above.
在我工作的工作站上,我加载了 VS.NET 2005、2008 和 2010,需要修改在 2005 环境中创建的包。我只安装了 SQL Server 2008,因此安装了用于 2008 SSIS 开发的 BIDS 环境。我不得不回去安装 SQL Server 2005 并只安装了集成服务组件(而不是整个 SQL Server 2005 安装程序),它解决了上述问题。

