We have an off the shelf application with hooks built in to handle customer specific needs.
The custom code uses the same core libraries as our standard application.
Our current process is ship the standard app via an MSI and then separately send along the custom dll.
How is this typically handled?
- create a setup project for each customer with the custom dll included with the main app(this seems unmaintainable)
- keep sending the standard msi and send the dll separately (this has already proven to be terrible idea)
- send the standard msi in addition to a custom code msi
- other