我可以在Windows 10 IoT核心版上安装Google.Apis.Auth或Google.Auth.Calendar吗?

时间:2019-02-05 04:27:07

标签: .net uwp google-calendar-api iot windows-10-iot-core

我已经基于rasberry pi3上运行的Windows 10 IoT核心编写了一些智能镜像代码。所有这些都与Google Calender代码分开。我写了一个桌面UWP应用程序,可以成功下载Google日历数据。当我尝试将其移植到IoT核心UWP项目时,无法安装Google api nuget软件包。我收到错误消息:

  

错误NU1202软件包Google.Apis.Auth.AspNetCore 1.38.0与uap10.0.10586(UAP,Version = v10.0.10586)/ win10-arm-aot不兼容。软件包Google.Apis.Auth.AspNetCore 1.38.0支持:netstandard2.0(.NETStandard,Version = v2.0)

这是否仅受支持,或者有什么我可以更改或升级的?

1 个答案:

答案 0 :(得分:1)

要启用netstandard2.0库,您需要将UWP项目的项目设置中的minversion设置为16299(或更高)。

这当然需要您在Raspberry PI上运行OS build 16299或更高版本(希望您已经这样做)。

enter image description here