WIndows 10 main types of IOT projects, except UAP

I work with IOS RaspberryPi and Windows 10. I went through the Hello World samples and am ready to try some more advanced robot programming. I use Akka.Net a lot but can't load it via Nuget in UAP. I am getting installation error because it says Akka.Net does not contain assembly references for Windows Verison 8.1. Can I deploy console applications or services for Windows IOT? Or am I stuck until Akka.Net adds a Windows 8.1 build target?

Thank!

+3


source to share


3 answers


You're stuck (for now). Remember, you are mainly targeting the Windows Phone equivalent. There are many libraries that are not available in a particular .NET Framework on a device, including System.Net (which kills a lot, including Akka.net).



+2


source


Windows 10 IoT Core only supports UWP, you cannot use APIs and libraries that are not written for UWP. Someone needs to rewrite them for UWP.



For reference only (because of the title of the question):
The latest Windows 10 IoT Core (Build 10586) supports multiple project templates. A complete list of templates can be found at: https://visualstudiogallery.msdn.microsoft.com/55b357e1-a533-43ad-82a5-a88ac4b01dec

The Arduino Wiring project template is now supported on Windows 10 IOT Core. Refer to the project article to understand how Arduino Wiring for Windows 10 IoT Core: https://www.hackster.io/AnuragVasanwala/windows-10-iot-core-hydroflyer -f83190

0


source


I know this is a pretty old post, but a quick update to this question Windows IoT supports a console app, but it's limited to C ++ programming.

Follow the good tutorial here to learn how to do this.

0


source







All Articles