inno-setupuninstallationregasm

Share registered .NET assembly between two applications installed with Inno Setup


I have application A.

Now, I have application B and I want it to use the same DLL. I understand that it is safe enough to simply perform the [Run] entry again. It just means it will point to the application B copy of the DLL. That should be alright.

My concern is about uninstalling. If you have both installed, and then uninstall just one, then the other is still using the DLL so it needs to still be registered, but maybe re-registered to the other apps location and vice versa.

I don't know how to go about this.


Solution