Change: Stop generating an XML declaration at the top of the WiX authoring

It's not needed anymore.
This commit is contained in:
JKarasti 2024-09-23 20:16:35 +03:00 committed by Alex Pyrgiotis
parent 8e57d81a74
commit adddb1ecb7
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -234,7 +234,6 @@ def main():
ET.SubElement(feature_el, "ComponentRef", Id=component_id) ET.SubElement(feature_el, "ComponentRef", Id=component_id)
ET.SubElement(feature_el, "ComponentRef", Id="ApplicationShortcuts") ET.SubElement(feature_el, "ComponentRef", Id="ApplicationShortcuts")
print('<?xml version="1.0" encoding="utf-8"?>')
print(f'<?define ProductVersion = "{version}"?>') print(f'<?define ProductVersion = "{version}"?>')
print('<?define ProductUpgradeCode = "12b9695c-965b-4be0-bc33-21274e809576"?>') print('<?define ProductUpgradeCode = "12b9695c-965b-4be0-bc33-21274e809576"?>')
ET.indent(root_el, space=" ") ET.indent(root_el, space=" ")