部署 vb.net 项目应遵循的步骤
我已准备好将 vb.net 项目部署到我的客户端计算机。
在我的开发计算机中,我安装了 Crystal Report 9、SQL Server Express 和 .NET Framework 3.5。
我的客户端计算机还没有安装任何东西...
我正在尝试制作 msi 安装程序,以便我的客户端可以轻松安装。
我创建了新的解决方案 ->安装类型项目,在其上添加项目并构建它。
它成功创建了 msi 安装程序,但没有安装 sql server express 和 crystal reports。
我如何使用水晶报表和 SQL Server 以及数据库来制作安装程序
I am ready to deploy my vb.net project to my client computer.
In my development computer I have crystal report 9, sql server express and .net framework 3.5 installed.
My Client computer hasn't got anything installed there...
I am trying to making msi installer so that it will be easy for my client to install.
I created the new solutions -> setup type project, added the project on it and build it.
it successfully created the msi installer but it doesn't installs the sql server express and crystal report.
How do i make the installer with crystal report and sql server and also with db
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您使用的是哪个版本的 Visual Studio,但假设您使用的是 2008:
将水晶报告文件添加到安装项目:
或者搜索适合您的 Crystal Reports 版本的正确合并模块。
我还没有看到包含 Crystal Reports 的“简单”安装,但你永远不知道。
您必须单独部署数据库,只需安装 SQL Server Express 并在数据库上执行备份还原即可。
I'm not sure what version of Visual Studio you are using but assuming you have 2008:
To add the crystal reports files to the setup project:
Alternatively search for the correct Merge Modules for your Crystal Reports version.
I am yet to see an 'easy' install that includes Crystal Reports but you never know.
You'll have to deploy the database seperately, just install SQL Server Express and do a backup-restore on the database.