Currently, I have a project with a Windows Service. I also created another \"Setup Project\" which installs the Windows Service.
My question is this: Can I add anot
I am a developer for an open source windows service hosting framework called Daemoniq. Running multiple services in one process is one of its features. You can download it from http://daemoniq.org
Current features include:
Thanks!
I know this is already answered, but if you'd like an example (code) of how to run two services in the same project please have a look at my answer to a similar question:
Can I have multiple services hosted in a single windows executable.
yes, you can have multiple services in the same project. Although they both use the same exe, they are loaded into different memory spaces and act independently of each other.