- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Multiple Copies of DLLs
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Hi,
We have some dlls that are used by multiple exes in different folders. When these exes are built, the dependent dlls get placed in each folder that they are used. How do I deploy these dlls to the target system without copying the dlls to multiple folders? I tried putting them in the GAC. Seems easy enough and builds the install package without errors. Although when I try to install, I get:
Error 1936. An error occurred during the installation of assembly ‘MyDll,Version=”AA.BB.CC.0”,Culture=’neutral”,FileVersion=”AA.BB.CC.0”,ProcessorArchitecture=”x86”. The assembly is not strongly named or is not signed. I have ‘Sign Files in Package’ set to yes and files are getting signed.
Any help is greatly appreciated.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
There is a different "sign" process needed. See here:
.NET - How to Sign an Assembly in Visual Studio 2019 (christianfindlay.com)
regards
Markus
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Kicking this to the top of the list. Any ideas are appreciated.
Thanks
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
There is a different "sign" process needed. See here:
.NET - How to Sign an Assembly in Visual Studio 2019 (christianfindlay.com)
regards
Markus
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Thanks Markus. I would not have thought of that, but it makes sense. I will try that when I get time.