.NET Windows Service - multiple services in one project

前端 未结 3 2014
迷失自我
迷失自我 2020-12-28 15:23

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

3条回答
  •  执笔经年
    2020-12-28 16:13

    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:

    • container agnostic service location via the CommonServiceLocator
    • set common service properties like serviceName, displayName, description and serviceStartMode via app.config
    • run multiple windows services on the same process
    • set recovery options via app.config
    • set services depended on via app.config
    • set service process credentials via command-line
    • install, uninstall, debug services via command-line

    Thanks!

提交回复
热议问题