views:

135

answers:

3

How to add an entry into 'add/remove programs' for a .net windows app?

+4  A: 

Use a deployment project to create a MSI file and have the users execute that rather than xcopy deployment.

Wyatt Barnett
A: 

In addition to a deployment project, ClickOnce deployment will also achieve this.

Jamie Ide
A: 

ClickOnce deployment with option "Available online only" removed will also do this. Or create a MSI package.

blntechie