我正在开发一个应该在运行Windows 10 IoT核心的Raspberry Pi 2上运行的C#应用程序。我想使用Exchange Web服务访问我们的Exchange服务器。我的问题是我不能让EWS与应该在Raspberry上运行的通用Windows应用程序一起工作。当我尝试在NuGet中添加包时,我收到以下错误消息:
sort: [
// sort by "category" in descending order and then by "name" in ascending order
{ field: "category", dir: "desc" },
{ field: "name", dir: "asc" }
]
如果我从Microsoft手动下载DLL并在Visual Studio中添加它,我可以编译和部署代码但是一旦应用程序启动并尝试运行第一行:
Microsoft.Exchange.WebServices 2.2.0 is not compatible with UAP,Version=v10.0 (win10-arm).
我收到以下错误:
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
我不明白为什么它无法加载System.Core。我甚至试图添加System.Core作为参考,但VS显然不会让我,因为它从一开始就存在。
有没有人知道如何让EWS与我的应用程序一起使用?
问候