Must remove InstallExecuteSequence for Wix package to build

This commit is contained in:
Micah Lee 2021-06-22 12:03:29 -07:00
parent c6c011f235
commit e8a348419f
No known key found for this signature in database
GPG key ID: 403C2657CD994F73

View file

@ -213,14 +213,6 @@ def main():
build_dir_xml(product_el, data)
component_ids = build_components_xml(product_el, data)
install_exec_seq_el = ET.SubElement(
product_el,
"InstallExecuteSequence",
)
ET.SubElement(
install_exec_seq_el, "RemoveExistingProducts", After="InstallValidate"
)
feature_el = ET.SubElement(product_el, "Feature", Id="DefaultFeature", Level="1")
for component_id in component_ids:
ET.SubElement(feature_el, "ComponentRef", Id=component_id)