Reputation: 17140
My problem is with one simple application project and a class library project with some GAC references, that I add into the Files section (Primary output on the app project only). The problem is that the installer REALLY wants to add all the non-Net GAC'ed files from the project into the installer even though they are explicitly set to Copy Local false (false in the project file).
How do I tell InstallShield to only take the dependency files that has Copy Local true and not everything in the list?
Upvotes: 3
Views: 1527
Reputation: 17140
And I found the answer here: InstallShield LE (with Visual Studio 2012) completely fails to detect dependencies
Using the properties on the "Primary output" element under Files.
I just unchecked the GAC files from the that list.
Upvotes: 4