在Visual Studio項目中根據系統平台自動引用32或64位的DLL

來源:互聯網
上載者:User

最近在使用Noesis.Javascript.dll,但是這個DLL是有X86與X64二種版本的,我自己的電腦是64位的,但是別人的電腦是32位的。所以在別人那裡使用的時候出了問題。

在VS裡怎麼引用二個版本的DLL了。在網上搜尋了資料。我修改的對應代碼如下:(資料在後面,自己可以看)

    <Reference Condition=" '$(Platform)' == 'AnyCPU' " Include="Noesis.Javascript, Version=0.0.0.0, Culture=neutral, PublicKeyToken=ae36d046c7f89f85, processorArchitecture=AMD64">      <SpecificVersion>False</SpecificVersion>      <HintPath>lib\x86\Noesis.Javascript.dll</HintPath>    </Reference>    <Reference Condition=" '$(Platform)' == 'x86' " Include="Noesis.Javascript, Version=0.0.0.0, Culture=neutral, PublicKeyToken=ae36d046c7f89f85, processorArchitecture=AMD64">      <SpecificVersion>False</SpecificVersion>      <HintPath>lib\x86\Noesis.Javascript.dll</HintPath>    </Reference>    <Reference Condition=" '$(Platform)' == 'x64' " Include="Noesis.Javascript, Version=0.0.0.0, Culture=neutral, PublicKeyToken=ae36d046c7f89f85, processorArchitecture=AMD64">      <SpecificVersion>False</SpecificVersion>      <HintPath>lib\x64\Noesis.Javascript.dll</HintPath>    </Reference>



最近把系統從WIN2008(32位)更換成WIN2008R2,在64位系統下使用原來在32位系統下開發的程式出現了異常。經調試原來是由於在其中引用了“System.Data.SQLite”的32位的dll,導致在64位下程式無法運行(但是編譯可以通過) powered by 25175.net

解決步驟:

1.從http://sourceforge.net/projects/sqlite-dotnet2/files/ 下載最新的X64位DLL,編譯後在64位系統上可以正常運行了,但卻不能同時在32位的系統上運行。 


2.尋找如何能使項目自動適應不同的平台的解決方案。

解決方案: 



通過更改csproj(C#專案檔的副檔名)檔案配置進行對應平台的自適應,其中${Platform}代表對應的平台

方法1.HintPath中使用${Platform}做為變數替換路徑

假設你的DLL有兩個平台構建,以及他們在以下位置是:

C:\whatever\x86\whatever.dll  
C:\whatever\x64\whatever.dll 

您只需編輯這個協議的.csproj檔案:

<HintPath>C:\whatever\x86\whatever.dll</HintPath>  

為:

<HintPath>C:\whatever\${Platform}\whatever.dll</HintPath>  

然後,您應該能夠建立您的項目針對這兩個平台,和MSBuild會尋求其他選擇的平台,為正確的目錄。 



方法2:Reference節點增加Condition條件 

a.將32位平台Reference節點增加Condition條件

<Reference Condition=" '$(Platform)' == 'AnyCPU' "……

 b.複製32位平台Reference節點,並改為64位平台,將HintPath節點中DLL路徑更換為對應的64位版本

<Reference Condition=" '$(Platform)' == 'x64' ……

 方法3:ItemGroup節點增加Condition條件 ,其實現同方法2,只是使用的節點不同。這裡略過。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.