Reputation: 3538
I would like to create a Setup Project in Visual Studio 2008 that installs both a .Net Windows application and a Windows Service.
Is this possible or do I need to create two different Setup Projects?
Upvotes: 2
Views: 404
Reputation: 39296
Checkout Wix - it's the standard way to build installers and is very powerful:
The Windows Installer XML (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line environment that developers may integrate into their build processes to build MSI and MSM setup packages.
How to install a windows service via Wix:
http://blog.tentaclesoftware.com/archive/2009/01/01/21.aspx
Upvotes: 1