Visual Studio 64位應用程式編譯

來源:互聯網
上載者:User

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上部署應用程式所碰到的問題的總結,折騰了將近一天的時間,希望對今後碰到類似問題的同學有協助,可以節省更多的時間。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.