When we break compatibility in a vb6 dll I have to do the following:
- Set to no binary compatibility
- Recompile
- Set compatibility again
- Remove reference to changed dll from all projects that use it
- Add reference back to all projects that use it
- Recompile all those projects
- Do the same for any projects that use those projects, etc.
Of course that's a little bit simplified but anyone who's done it before should know what I'm talking about.
My question is: Have you found a better way to do this, or have you found any (not too expensive) tools to facilitate this process? Or better yet, have you created one that you can share with me :)
Note that I'm asking how to make this process easier, not how to avoid it. So please don't give answers about how bad it is to break compatibility and that we shouldn't do that. I live in the real world where there are things outside of my control and I'm just trying to deal with what I've got.