WIndows UAP 以外的 10 个核心物联网项目类型
WIndows 10 Core IOT Project Types other than UAP
我正在使用 RaspberryPi 和 Windows 10 IOT。我已经 运行 完成了 Hello World 示例,并准备尝试更深入的机器人编程。我在这里经常使用 Akka.Net 但无法通过 UAP 中的 Nuget 加载它。我收到无法安装错误,因为它说 Akka.Net 不包含 Windows Verison 8.1 的程序集引用。我可以将控制台应用程序或服务部署到 windows IOT 吗?还是我一直在等 Akka.Net 添加 Windows 8.1 构建目标?
谢谢!
你卡住了(暂时)。请记住,您的目标基本上相当于 Windows Phone。设备上的特定 .Net Framework 中有大量库不可用,包括 System.Net(这会杀死很多库,包括 Akka.net)
Windows 10 IoT Core 仅支持 UWP,不能使用 API 和非为 UWP 编写的库。有人必须为 UWP 重写它们。
Just, for the reference (due to question title):
Latest version of Windows 10 IoT Core (Build 10586) supports multiple project templates. You can find complete list of templates at: https://visualstudiogallery.msdn.microsoft.com/55b357e1-a533-43ad-82a5-a88ac4b01dec
Arduino Wiring project template is now supported into Windows 10 IoT Core. Refer following project article to understand Arduino Wiring for Windows 10 IoT Core: https://www.hackster.io/AnuragVasanwala/windows-10-iot-core-hydroflyer-f83190
我知道这是一个相当老的问题 post,但是对这个问题的快速更新是
Windows IoT 确实支持控制台应用程序,但仅限于 C++ 编程。
按照 here 中的精彩教程了解操作方法。
我正在使用 RaspberryPi 和 Windows 10 IOT。我已经 运行 完成了 Hello World 示例,并准备尝试更深入的机器人编程。我在这里经常使用 Akka.Net 但无法通过 UAP 中的 Nuget 加载它。我收到无法安装错误,因为它说 Akka.Net 不包含 Windows Verison 8.1 的程序集引用。我可以将控制台应用程序或服务部署到 windows IOT 吗?还是我一直在等 Akka.Net 添加 Windows 8.1 构建目标?
谢谢!
你卡住了(暂时)。请记住,您的目标基本上相当于 Windows Phone。设备上的特定 .Net Framework 中有大量库不可用,包括 System.Net(这会杀死很多库,包括 Akka.net)
Windows 10 IoT Core 仅支持 UWP,不能使用 API 和非为 UWP 编写的库。有人必须为 UWP 重写它们。
Just, for the reference (due to question title):
Latest version of Windows 10 IoT Core (Build 10586) supports multiple project templates. You can find complete list of templates at: https://visualstudiogallery.msdn.microsoft.com/55b357e1-a533-43ad-82a5-a88ac4b01decArduino Wiring project template is now supported into Windows 10 IoT Core. Refer following project article to understand Arduino Wiring for Windows 10 IoT Core: https://www.hackster.io/AnuragVasanwala/windows-10-iot-core-hydroflyer-f83190
我知道这是一个相当老的问题 post,但是对这个问题的快速更新是 Windows IoT 确实支持控制台应用程序,但仅限于 C++ 编程。
按照 here 中的精彩教程了解操作方法。