首页 > 代码库 > visual studio installer 打包123

visual studio installer 打包123

  1. 下载安装visual studio installer

    技术分享

  2. 新建SetUp项目(前提是已有一个CS项目,这里使用WPF项目测试)

        技术分享

 3.打开文件视图

技术分享

4.复制release目录下的文件到Application Folder

技术分享

5.创建两个快捷方式,一个放到DeskTop,另一个放到Program Menu.

技术分享     

粘贴快捷方式到DeskTop和Program Menu

   技术分享

6.添加卸载功能:

找到C:\Windows\System32\Msiexec.exe,将其复制到Application folder目录下,为其创建方式,并复制到Programs Menu目录下

技术分享

找到productcode

技术分享

设置卸载参数:

技术分享

7.添加自定义用户界面,这里演示添加License AgreementUI.

技术分享     

右键Start,Add Dialog。

技术分享

OK之后,在License Agreement右键属性 ,可以选择LicenseFile :

技术分享

 

8.Custom Action,

新建一个C#类库项目,然后新建Installer文件,这里重写了Install和Uninstall两个方法,

技术分享

关联Custome Action 和 Setup 。

技术分享

这里在Install和Uninstall分别引用Custom Action项目的Primary output.

技术分享

这样在卸载和安装的时候就会自定调用对应的方法。

9.打包.net环境。

setup项目右键属性,

  技术分享

勾选需要的组件,选择下载方式,

技术分享

第一种下载方式从官网下载,如果机器没有安装会提示下载,

第二种方式是直接将.net环境直接打包进安装包。

10.生成单独的exe可执行文件,使用winrar的创建自解压方式来创建。

 http://jingyan.baidu.com/article/597035523d9ec28fc00740a7.html

 

visual studio installer 打包123