Error 1937.An error occurred during the installation of assembly...

工具:Installshield 2008

任务:
1. 创建一个 Merge Module 工程, 在 Merge Module 中包含若干 dll, 在安装过程中,dll 会被安装到指定路径。
2. 创建一个 MSI 工程,将编译后的 merge module 包含到 工程当中,编译,实现 dll 的正确安装。
 
 
问题: 在安装过程中,出现下面的error. 
 
Error 1937.An error occurred during the installation of assembly...
 
 
解决方案:

进入 %temp% 路径,查看安装日志。

在日志中找到error的主要信息,原来是相应的 dll 没有强签名。强签名之后,重新编译,安装通过。

MSI (s) (9C:40) [14:34:17:139]: Assembly Error:Strong name signature verification failed for assembly'%1'.  The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key.
上一篇:Doxygen生成C++中文文档配置注意事项


下一篇:asp.net 经常用到需要判断文本框是否输入的数字是小数,有无正负,几位小数,可以封装一起判断