Topshelf Service and Wix Installer

We are developing a Windows service package and using topshelf, which helped us write them easily. But now we are implementing an installer for them and we are faced with a problem: Wix does not correctly install our services. As mentioned here , the problem is that the class that implements the base Installer class is somewhere in Topshelf and was not found using Wix to install the service. We cannot write installers for each service, and we do not want to implement our own custom actions for working with services (write down the registry entries, check if they are installed, etc.). So what can we do to solve this problem?

+3


source to share





All Articles