I have a Windows service (written in .NET) for which I built an installer using WiX 3.7. It serves an infrastructure role, and anyone can write another Windows Service that uses it. Since my service is required to run when any other such services uses it, the installers of other services define my service as their "Service Dependency" during installation.
Unfortunately, Windows seems to allow removing a Windows service even when other services depend on it. I'd like to make my installer give an error and fail to uninstall my service when any other dependent service is still installed on that machine.
I don't know what other services will be built on top of mine, so I can't hard-code any checks.
Is there a way to do this with WiX?