With my installer, I ship a dll file that contains a version number (mycomponent13.dll, mycomponent14.dll, etc.).
I need to write the path to this dll to the registry, which I do by creating a Registry Value in Advanced installer.
Whenever I update the version of the dll, I need to remove the old dll (mycomponent13.dll), then add the new dll (mycomponent14.dll) and again create a registry value.
Does Advanced installer provide a better way to do it? I currently use a script that replaces the version in the aip file with the new version number, but that is not an elegant solution.