Visual Studio 2010 数据库项目可以与 .Net 3.5 一起使用吗?
我注意到 Visual Studio 2010 数据库项目有一个可重新分发的组件来支持最终用户系统上的部署。
该组件是否适用于 .Net 3.5,还是需要 .Net 4.0?
I notice that Visual Studio 2010 database projects have a re-distributable component to support the deployment on end-user systems.
Will this component work against .Net 3.5, or does it require .Net 4.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,Visual Studio 2010 数据库项目需要目标计算机上安装 .Net 4.0。如果您使用 Reflector 检查 %ProgramFiles%\Microsoft Visual Studio 10.0\VSTSDB\Deploy 中的可再发行组件,您会发现它们都依赖于 4.0.0.0 版本的框架库。
除此之外,.deploymanifest 文件(实际上是伪装的 MSBuild 文件)指定 4.0 作为 MSBuild 工具版本。
看起来您需要使用
From what I can tell, Visual Studio 2010 database projects will require .Net 4.0 on the target machine. If you inspect the redistributable components in %ProgramFiles%\Microsoft Visual Studio 10.0\VSTSDB\Deploy using Reflector, you'll see that they all depend on version 4.0.0.0 of the framework libraries.
In addition to this, the .deploymanifest files (which are really MSBuild files in disguise) specify 4.0 as the MSBuild tools version.
It looks like you would need to use Visual Studio Team System 2008 Database Edtion GDR R2 (which of course requires VS 2008) if you want to target .Net 3.5 on the database server.