如何基于一组文件创建 MSI 安装程序 (Visual Studio 2008)
我有一个大型 Visual Studio 2008 解决方案,其中包含多个 .NET 项目。当我进行 Relase 构建时,我会在输出文件夹中获得一堆文件(ddls、图像等)和文件夹。我现在想做的是获取这些文件并生成 MSI 安装程序包。
然后,当我运行 MSI 时,我想将文件和文件夹复制到用户在安装程序向导中指定的文件夹中。
我应该怎么做才能实现这个目标?我可以在构建后运行一些生成 msi 的脚本吗?
I have a large Visual Studio 2008 solution with several .NET-projects. When I do a Relase build I get a bunch of files (ddls, images, etc) and folders in a output folder. What I want to do now is to take those files and generate a MSI-installer package.
Then, when I run the MSI I want to copy the files and folder to the folder that the user specifies in the installer wizard.
What should I do to accomplish this? Could I run some script on post-build that generates a msi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个,一个非常流行的开源安装程序:
http://nsis.sourceforge.net/Main_Page
Take a look at this, a very popular open source installer:
http://nsis.sourceforge.net/Main_Page