How to create an installation and deployment project that can be executed any number of times on a machine without the need for removal?
I created an installer to install the WCF service in the IIS directory. It does more than just xcopy, it asks users questions about the proper configuration of web.config.
The problem is that it can only be installed once on the server without asking for removal.
"Another version of this product is already installed ..."
Typically, a service will have 10-15 separate instances per server (each instance most likely points to a separate database or other security context)
I cannot figure out how to configure the installer for this.
source
share