我正在努力將使用InstallShield 2014的安裝程序放在一個內部開發的64位應用程序中。我的工作站是32位。我遇到了下面的一些警告。如何在32位PC上創建64位InstallShield安裝程序?
ISDEV : warning -6248: Could not find dependent file Microsoft.VisualBasic, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file mscorlib, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file Oracle.DataAccess, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file System, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file System.ComponentModel.DataAnnotations, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file System.Core, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file System.Data, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file System.Xml, or one of its dependencies of component AWP.Models.dll
ISDEV : warning -6248: Could not find dependent file Microsoft.VisualBasic, or one of its dependencies of component AWP.Shared.Cryptomatic.dll
ISDEV : warning -6248: Could not find dependent file mscorlib, or one of its dependencies of component AWP.Shared.Cryptomatic.dll
ISDEV : warning -6248: Could not find dependent file System, or one of its dependencies of component AWP.Shared.Cryptomatic.dll
當我使用dependency walker在一些文件上檢查依賴關係時,依賴關係助步出現空。
是否可以在32位機器上創建64位安裝程序?如果是這樣,我錯過了什麼?有人能指引我朝着正確的方向嗎?謝謝。
編輯:我發現一個可能的解決方案在頁面的底部,這說明要更改組件上的「.NET掃描」屬性的組件警告爲「僅屬性」。
https://community.flexerasoftware.com/archive/index.php?t-155066.html
謝謝Michael! – GhostHunterJim