0

我正在尝试通过 rfc 在 sap 和 .net 之间建立连接。SAP 提供点网库 nco3 来建立连接。

当我编译应用程序时,它说缺少程序集,即使它们是导入的。你可以在图片上看到这个

在此处输入图像描述

和组件

在此处输入图像描述

代码没有出现红线 在此处输入图像描述

两个重要的库是导入的 sapnco 和 sapnco_utils。为什么我不能编译应用程序?

4

1 回答 1

4

您为 x86 架构编译,但引用了 x64 sap 库。

使用正确版本的 sapnco 和 sapnco_utils 库。您需要为解决方案创建 x86 和 x64 配置。然后根据您选择的配置链接正确的库。我在项目文件中使用它:

<Reference Include="sapnco" Condition="'$(Platform)' == 'x86'">
  <HintPath>..\Libs\sapnco\x86\sapnco.dll</HintPath>
</Reference>
<Reference Include="sapnco" Condition="'$(Platform)' == 'x64'">
  <HintPath>..\Libs\sapnco\x64\sapnco.dll</HintPath>
</Reference>
<Reference Include="sapnco_utils" Condition="'$(Platform)' == 'x86'">
  <HintPath>..\Libs\sapnco\x86\sapnco_utils.dll</HintPath>
</Reference>
<Reference Include="sapnco_utils" Condition="'$(Platform)' == 'x64'">
  <HintPath>..\Libs\sapnco\x64\sapnco_utils.dll</HintPath>
</Reference>

通常我还需要将程序集标记为“复制本地”为真。我将库安装到 GAC 的实验没有成功。

于 2015-02-12T13:32:02.853 回答