0
votes

I have written some smart mirror code based on Windows 10 IoT core running on a rasberry pi3. It's all working apart from Google Calender code. I wrote a desktop UWP app that successfully downloads google calendar data. When I tried to port it to the IoT core UWP project I was unable to install the Google api nuget packages. I get the error:

Error NU1202 Package Google.Apis.Auth.AspNetCore 1.38.0 is not compatible with uap10.0.10586 (UAP,Version=v10.0.10586) / win10-arm-aot. Package Google.Apis.Auth.AspNetCore 1.38.0 supports: netstandard2.0 (.NETStandard,Version=v2.0)

Is this just not supported or there is there something I can change or upgrade?

1

1 Answers

1
votes

You will need to set the minversion in the project settings of your UWP project to 16299 (or higher), in order to enable netstandard2.0 libraries.

This of course requires you to run OS build 16299 or higher on Raspberry PI (which I hope you already do).

enter image description here