我已经实现了一个没有任何依赖的自定义命令,没有任何问题。
但这里是一个自定义命令,需要与其他四个 dll 链接才能工作。
<Binary Id="libeay32" SourceFile="..\bin\libeay32.dll"/>
<Binary Id="libintl" SourceFile="..\bin\libintl.dll"/>
<Binary Id="libpq" SourceFile="..\bin\libpq.dll"/>
<Binary Id="ssleay32" SourceFile="..\bin\ssleay32.dll"/>
<Binary Id="custom" SourceFile="..\bin\custom_cmd.dll"/>
<CustomAction Id="cc_postgres" BinaryKey="custom" DllEntry="on_postgres_cmd" Execute="immediate" Return="check" HideTarget="no" />
安装时出现以下错误
错误 1723。此 Windows 安装程序包有问题。无法运行完成此安装所需的 DLL。请联系您的支持人员或软件包供应商。动作 cc_postgres,条目:on_postgres_cmd,库:C:\Users\THE\AppData\Local\Temp\MSI17BB.tmp
如何在 Wix 中进行此操作,而无需重新编译静态中的所有内容。
谢谢。