使用 Visual Studio 创建链式安装
我创建了一个 Windows 窗体 C# 应用程序。但我在为我的应用程序创建设置时遇到问题。
我的问题是
我想将先决条件安装为具有公共进度条的一系列安装程序。
- .NET Framework 3.5
- SQL Server Express Edition SP2(可选,即仅当 SQL Server 未安装时才安装)已安装)
- Crystal Reports 可再发行包。
所有这些先决条件必须嵌入到安装文件中。我已经创建了一个引导程序来安装 SQL Server Express Edition(如果尚未安装)。
- 安装后,它应该使用 SQL Server Express Edition 实例的连接字符串数据源更新
exe.config
文件。
I have created a Windows Forms C# application. But I am facing problems in creating a setup for my application.
My problem is
I want to install the prerequisites as a chain of installers with a common progress bar.
- .NET Framework 3.5
- SQL Server Express Edition SP2 (optional, that is, install only if SQL Server is not installed)
- Crystal Reports redistributable package.
All these prerequisites must be embedded in the setup file. I have created a bootstrapper to install the SQL Server Express Edition if it not already installed.
- After installation, it should update the
exe.config
file with the connection string datasource with the SQL Server Express Edition instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 WiX 3 轻松引导先决条件。 以下说明展示了如何针对 .NET 3.5 和 Windows Installer 执行此操作。
您应该能够对 SQL Server Express Edition 和 Crystal Reports 使用相同的原理。
You can get WiX 3 to bootstrap prerequisites quite easily. Here is an explanation showing how to do it for .NET 3.5 and Windows Installer.
You should be able to use the same principle for SQL Server Express Edition and Crystal Reports.