-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
# wix-test | ||
# Install with Wix | ||
|
||
Install extension: | ||
|
||
$ wix extension list | ||
$ wix extension add WixToolset.UI.wixext | ||
Install the wix software and install the extension: | ||
|
||
``` | ||
wix extension add WixToolset.UI.wixext | ||
``` | ||
|
||
Copy the cameo-server.jar, cameo-console.jar and cameo-file-transfer.jar files in the current directory. | ||
Compile msi: | ||
|
||
$ wix build -ext WixToolset.UI.wixext cameo.wxs | ||
|
||
Debug with log: | ||
``` | ||
wix build -ext WixToolset.UI.wixext cameo.wxs | ||
``` | ||
|
||
$ msiexec /i cameo.msi /l* cameo.log | ||
Debug the installation with log: | ||
|
||
``` | ||
msiexec /i cameo.msi /l* cameo.log | ||
``` |