为 .net 应用程序创建安装程序
我在.net 中创建了一个组件。它有多个 msi,所以我打算找一个主安装程序。如何创建主安装程序,如何开始?
I had created a component in .net. It has more than one msi's , so am planning to go for a master installer. How to create a master installer, how to start with that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建一个引导程序来安装多个 MSI,请尝试使用 dotNetInstaller 作为免费解决方案。
You need to create a bootstrapper to install multiple MSIs, try dotNetInstaller for a free solution.
您可以使用 Visual Studio 提供的安装项目模板。该项目模板可让您非常快速地创建安装项目。在那里,您必须添加不同的 MSI 作为依赖项才能安装它们。
或者查看“添加新项目”对话框中“其他项目类型 -> 设置和部署”下的不同设置和部署项目模板。
You can use the Setup Project template provided by Visual Studio. This project template lets you create setup projects very fast. There you have to add your different MSIs as dependencies to have them installed.
Alternatively have a look at the different setup and deployment project templates located under "Other Project Types -> Setup and Deployment" in the "Add new project" dialog.