| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Sign every executable that the NSIS installer writes to disk. GitHub Actions |
| 3 | wraps the flat payload directory in this zip before SignPath receives it. --> |
| 4 | <artifact-configuration xmlns="http://signpath.io/artifact-configuration/v1"> |
| 5 | <zip-file> |
| 6 | <pe-file path="reasonix-desktop.exe"> |
| 7 | <authenticode-sign /> |
| 8 | </pe-file> |
| 9 | <pe-file path="reasonix-guard.exe"> |
| 10 | <authenticode-sign /> |
| 11 | </pe-file> |
| 12 | <pe-file path="reasonix-launcher.exe"> |
| 13 | <authenticode-sign /> |
| 14 | </pe-file> |
| 15 | <pe-file path="reasonix-update-helper.exe"> |
| 16 | <authenticode-sign /> |
| 17 | </pe-file> |
| 18 | <pe-file path="reasonix-cli.exe"> |
| 19 | <authenticode-sign /> |
| 20 | </pe-file> |
| 21 | <pe-file path="reasonix-uninstall.exe"> |
| 22 | <authenticode-sign /> |
| 23 | </pe-file> |
| 24 | </zip-file> |
| 25 | </artifact-configuration> |
| 26 |