C#: Making an Installer that installs both a WPF application (ClickOnce) and a Windows Service

后端 未结 3 1465
栀梦
栀梦 2021-01-13 22:00

I currently have a VS Solution with 2 projects: a WPF application and a Windows Service.

Now, I have managed to get ClickOnce working in installing my WPF applicat

相关标签:
3条回答
  • 2021-01-13 22:27

    Please check DDay Update library it might give you ClickOnce stuff for updates, but first install you've got to do using another too.

    0 讨论(0)
  • 2021-01-13 22:50

    Can you execute a process during the ClickOnce install? You might be able to write the service using Topshelf and then execute MyService.exe /install from ClickOnce.

    0 讨论(0)
  • 2021-01-13 22:51

    I don't think you can deploy a windows service via ClickOnce in a normal fashion.

    http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/1bb64760-9622-4ca6-a1a6-3ce53e641f21

    ClickOnce deploy a Windows Service?

    0 讨论(0)
提交回复
热议问题