What are the minimum version requirements for Windows Installer ("Schema" version?) version that WiX imposes in the created setup databases?
I.e. for the following versions of WiX, what (database "Schema") version of Windows Installer is the minimum requirement on the target system?
- WiX 2.0
- WiX 3.0
- WiX 3.5
- WiX 3.6
- WiX 3.7
- WiX 3.8
NB: What I am referring to is, I think, called "Schema" in the "Summary Information" for a setup database:
Okay, found the answer. It appears all of the mentioned WiX versions support at least
InstallerVersion="200"
in the<Package />
element. To quote the relevant part of the above documentation page:According to the Wikipedia article linked in the question this version of Windows Installer (i.e. 2.0) was included with:
and is available for:
So in conclusion we can say that the minimum supported version of Windows Installer for a WiX-authored setup is: 2.0 (==
InstallerVersion="200"
).