I\'m trying to build an msi project in my VS2015 solution. I had installed the VS Installer Projects Extension.
Everything was working great just a few days ago.
I had the same problem with VS 2015 asking for VS 2008 installation package.
Found this which solved my problem:
Open a cmd as admin.
Go to directory C:\Program Files (x86)\Common Files\microsoft shared\MSI Tools
run: regsvr32.exe /u mergemod.dll"
run: regsvr32.exe mergemod.dll"
Link to the hint
Self-Repair: What you are seeing is Windows Installer Self-Repair (also known as resiliency or self-healing). Essentially Windows Installer detectes that the wrong file or resource is on disk or in the registry and starts a a repair operation to correct the situation. Failing to correct the situation (for various technical reasons described below), this process may repeat itself endlessly whenever an application is launcher or a COM server is invoked, or a file association is triggered (and a few other triggers).
Here is a previous answer which describes the essence in a minimal sense: Why does the MSI installer reconfigure if I delete a file?
Self-Repair In Detail: More than anyone wants to know about self-repair:
Thanks @stuartd and @PhilDW for your help. Posting the answer here in case someone else experiences this. Your suggestion in turning on Logging gave me more to search on.
I had to install Orca from the Windows SDK to update a DLL.
Found the answer here