Visual Studio的編譯選項 build下的platform有X64、Any CPU和x86。X86表示只能在32位環境下運行,X64表示只能在64位環境下運行,Any CPU表示你的程式集可以根據環境變化適應32位還是64位,但是如果你的程式集依賴於一個x86選項編譯的程式集,哪麼你的程式集只能選擇X86進行編譯,而不能選擇Any CPU編譯,如果使用Any CPU編譯,運行就會出現如下的錯誤:
Unhandled Exception: System.BadImageFormatException: Could not load file or asse
mbly 'SourceCode.HostClientAPI, Version=4.0.0.0, Culture=neutral, PublicKeyToken
=16a2c5aaaa1b130d' or one of its dependencies. An attempt was made to load a pro
gram with an incorrect format.
File name: 'SourceCode.HostClientAPI, Version=4.0.0.0, Culture=neutral, PublicKe
yToken=16a2c5aaaa1b130d'
原因是如果用Any CPU編譯,那麼在64位機器預設的運行就是64位的,通常這情況十assembly需要調用一個32的COM庫,只要用x86編譯,那麼程式就是以32位的程式,依靠wow64來啟動並執行,就可以在64位系統上運行。所以,如果assembly需要使用win32庫的話,那麼編譯選項就不能使用預設的Any CPU就需要注意了。
如果你的程式集還有調用VC++編寫的程式集,如果沒有安裝Microsoft Visual C++ 2005/2008/SP1 Redistributable Package (x86)更新包,還會出現類似的錯誤:
Unhandled Exception: System.IO.FileLoadException: Could not load file or assembl
y 'SourceCode.HostClientAPI, Version=4.0.0.0, Culture=neutral, PublicKeyToken=16
a2c5aaaa1b130d' or one of its dependencies. The application has failed to start
because its side-by-side configuration is incorrect. Please see the application
event log or use the command-line sxstrace.exe tool for more detail. (Exception
from HRESULT: 0x800736B1)
File name: 'SourceCode.HostClientAPI, Version=4.0.0.0, Culture=neutral, PublicKe
yToken=16a2c5aaaa1b130d' ---> System.Runtime.InteropServices.COMException (0x800
736B1): The application has failed to start because its side-by-side configurati
on is incorrect. Please see the application event log or use the command-line sx
strace.exe tool for more detail. (Exception from HRESULT: 0x800736B1)
具體使用Microsoft Visual C++ Redistributable Package 的2005,2008,2008 SP1版本,取決於你開發的應用程式所使用Visual Studio的版本。
Microsoft Visual C++ 2008 SP1 Redistributable Package (x86)。
上述問題發生在我準備在Windows Server 2008 R2 Server Core上部署應用程式所碰到的問題的總結,折騰了將近一天的時間,希望對今後碰到類似問題的同學有協助,可以節省更多的時間。