Laz
Laz

Reputation: 3538

How Do I Create A Setup Project With A Windows Application and A Windows Service?

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

Answers (1)

bryanmac
bryanmac

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.

http://wix.sourceforge.net/

How to install a windows service via Wix:

http://blog.tentaclesoftware.com/archive/2009/01/01/21.aspx

Upvotes: 1

Related Questions