将 apitron 集成到 c# 项目中
Integrate apitron to c# project
我无法将 apitron pdf kit
dll 文件集成到我的 C# 项目中。
我已经从该站点下载了 pdf 工具包,在提取时我得到了许多对应于不同 DotNet Framerworks
的 dll 文件,例如 2.0、4.0、4.5 等
我的是4.0,当我尝试将framework 4.0对应的dll文件添加为reference时,报错如下:
Warning 1 The referenced assembly "Apitron.PDF.Kit" could not be resolved because it has a dependency on "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project. ExtractPDFText
尝试将目标框架从 Client Profile 更改为完整的 .NET Framework 4.0:
我无法将 apitron pdf kit
dll 文件集成到我的 C# 项目中。
我已经从该站点下载了 pdf 工具包,在提取时我得到了许多对应于不同 DotNet Framerworks
的 dll 文件,例如 2.0、4.0、4.5 等
我的是4.0,当我尝试将framework 4.0对应的dll文件添加为reference时,报错如下:
Warning 1 The referenced assembly "Apitron.PDF.Kit" could not be resolved because it has a dependency on "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project. ExtractPDFText
尝试将目标框架从 Client Profile 更改为完整的 .NET Framework 4.0: