为 .NET 应用程序创建单个文件安装程序
我的 .NET 应用程序的安装程序由两个文件 MyApp.msi 和 setup.exe 组成。 我想要一个带有指定图标的安装程序 MyApp.exe(自解压存档即可)。 我怎样才能做到这一点? 有没有免费的工具可用?
The installer for my .NET app consists of two file MyApp.msi and setup.exe.
I want to have a single installer MyApp.exe (self extracting archive will do) with a specified icon.
How can I do that? Is there any free tool available?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
InnoSetup 和 NSIS 是用于创建应用程序设置的免费工具。
对于 InnoSetup,ISTool 使创建安装脚本变得非常容易。
InnoSetup and NSIS are free tools for creating application setups.
For InnoSetup, ISTool makes it very easy to create setup scripts.
从技术上讲,MSI 是一个单文件安装程序。 可以双击它来安装该应用程序。 Setup.exe 只是启动 MSI。
Technically the MSI is a single-file installer. It can be double-clicked to install the application. Setup.exe just launches the MSI.
我见过的几个:
A couple that I've seen: