具有多个部署的 VS2010 数据库项目
我的 vs2010 解决方案中有一个数据库项目。工作数据库安装在我的机器本地。我想知道是否有办法设置该项目,以便它可以部署到多个数据库? (即每个构建配置,如“QA”版本和“生产”版本)
谢谢
I have a database project in my vs2010 solution. The working database is installed locally on my machine. I'm wondering if there is a way to setup the project so that it can deploy to multiple databases? (i.e., per build configuration like a 'QA' version and a 'Production' version)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过打开数据库项目的“属性”窗口来创建多个配置文件
并添加新的
部署配置文件
。您可以为每个配置指定不同的文件,即。 Debug可以部署到localhost,Release到测试环境。
You can create multiple configuration files by opening Properties window for Database project
and adding new
Deployment configuration file
.You can specify different files for each Configuration, ie. Debug can deploy to localhost, and Release to test environment.