Windows 10 IoT核心(UAP)上的Exchange Web服务

时间:2015-09-30 12:55:53

标签: c# exchange-server exchangewebservices windows-10-iot-core

我正在开发一个应该在运行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与我的应用程序一起使用?

问候

0 个答案:

没有答案