프로젝트에서 같은 dll의 x86과 x64를 동시에 참조합니다

3036 단어 dll
<ItemGroup Condition=" '$(Platform)' == 'x86' ">
    <Reference Include="System.Data.SQLite, Version=1.0.84.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\CommonDll\PhySec(x86)\System.Data.SQLite.dll</HintPath>
    </Reference>
</ItemGroup>
 <ItemGroup Condition=" '$(Platform)' == 'x64' ">
    <Reference Include="System.Data.SQLite, Version=1.0.84.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=AMD64">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\CommonDll\PhySec(x64)\System.Data.SQLite.dll</HintPath>
    </Reference>
</ItemGroup>

시스템은 자동으로 플랫폼에 따라 적합한 dll을 선택할 것이다

좋은 웹페이지 즐겨찾기