Setup for a dotNet deployment

  • Thread starter Thread starter meh
  • Start date Start date
M

meh

Where can I find more info on setting up an installation. For example I
have created my setup routines and the default stuff is working fine.
but..... I need to give the user some options of what he can install. I
have not found anything resembling that in the default setup wizard.


TIA
meh
 
You'll need to investigate the so-called "custom
actions". This allows you to extend your deployment setup
to include code of your own.

There are some good examples in the VS Help Collection.

Randy
 
This depends on what you are trying to do. Are you trying to have groups
of files installed if the user requests a certain feature? If so, the best
approach is to use a Condition on each of the files that is tied to a
Checkbox property on a CustomCheckboxesA dialog...
 
Back
Top