I have some DLLs and want them to be installed on Windows. I packaged them to both .msi (using WiX) and .exe (using Inno Setup). However, when installed both .msi and .exe on one machine, they looks like two program. Since I check the uninstall, and there are two programs there (one is installed with .exe and other is .msi)
My goal is to make they looks like same program, i.e. when .exe is installed and then .msi is also installed, the program should overwrite .exe, i.e. there should only be one program in the uninstall tab.
How can I achieve this? Should I use same upgradeCode or productCode?