I have a hybrid installer that removes binaries on the target machine (WIX) and also installs templates in Visual Studo (VSIX). VSIX is stored as a binary file in the installer and is installed using a custom action when the installation completes.
This works, but there are a few problems. I could get around these problems if I could completely skip WIX and install everything through VSIX.
The problem is that I need to drop some executables in the GAC. If I can flush the binary to the GAC on VSIX, then everything will be cool. But I can not find any information on how to do this.
Alternatively, is it possible to install binaries to a specific location on the target machine using VSIX?
Is it possible?
source
share