是否可以在我的C#项目中添加对x86和x64中不同dll版本的引用(并在更改配置模式时自动切换它们)?
答案 0 :(得分:7)
我认为IDE中没有任何内容可以执行此操作,但您可以通过手动编辑C#项目文件来实现此目的。
看起来像:<Reference Include="ThirdPartyAssembly" />
可以更改为:
<Reference Include="ThirdPartyAssembly.x86" Condition="'$(Platform)' == 'x86' />
<Reference Include="ThirdPartyAssembly.x64" Condition="'$(Platform)' == 'x64' />