Until recently we were using Inno Setup for our installations, something I would like to continue doing, unless we can get an uninstall option in the start menu (thanks Giovanni Galbo), however we now need to GAC some external libraries, something I suspect is only doable (or at least only supported) though the .NET Setup Project.

Is it possible to call a GAC'ing library from another setup application?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

According to http://jrsoftware.org/files/is5-whatsnew.htm you should be able to do it with v5.3 and above

Added .NET support (these cause an internal error if used on a system with no .NET Framework present):

* Added new [Files] section flag: gacinstall.
* Added new [Files] section parameter: StrongAssemblyName.
* Added new constants: {regasmexe}, {regasmexe32}, {regasmexe64}.
link|improve this answer
feedback

Not sure about library, but you can call gacutil.exe to install/uninstall assemblies.

link|improve this answer
Not a good idea. gacutil.exe is part of the SDK and is not on a normal "Non-Devloper" machine. – Robert Love Jun 5 '11 at 12:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.