I have noticed that when using the Enterprise edition, if I install an assembly into the GAC, or if I install a driver, the original copy of that file in the filepath, is not actually installed on the system.
Is there a proper way to do this?
For instance, if I have a appdir/drivers/mydriver.inf file, I would like to install it onto the system, and use it for the driver install part of the installer. This way, it will automatically store it on the system, but it will also be there in the directory in case the user needs to reinstall later.
The same goes for the GAC. I would like my assembly there so that it can be referenced by applications, but also in the application directory so that I can add the registry key so that users can reference the assembly in visual studio.
Right now, if I point the installer to the files as they exist in the directory structure, they are removed after they are added to the GAC or installed as a driver.
How can I fix this?
FOLLOW US