-
Book Overview & Buying
-
Table Of Contents
WiX 3.6: A Developer's Guide to Windows Installer XML
By :
A small update is like a minor upgrade except that it's usually smaller in scope. You might use it when only a few files have changed and you don't intend to change the Product element's version number.
The steps to create it are the same as when creating a minor upgrade patch with the exception of not changing the Product element's Version. They are as follows:
Using Candle and Light, compile and link your original installer into a .wixout file.
Make changes to your software's files and then create a second .wixout file. Do not change the Product element's Id or Version attribute.
Make a Patch.wxs file and, using Candle and Light, compile and link it to create a .wixmsp file. Set the PatchFamily element's Version attribute so that this patch will be sequenced correctly related to other patches.
Use Torch to create a .wixmst file that contains the differences between your two .wixout files.
Use Pyro to combine the .wixmsp and .wixmst files into a final .msp patch file.
This gives...