windows 10 个物联网上的 UWP

UWP on windows 10 IoT

我有一个 UWP 应用程序 运行 在 raspberry 上处理一些东西。

Raspberry 没有连接显示器,也不可能。但是每天有几次需要更改某些设置或访问应用程序日志。我想通过 phone 连接到设备并对其进行无线管理。我知道 Windows 10 有一个应用程序,但大多数用户都有 Android/iOS.

我的想法是在 Raspberry 上同时 运行 UWP 和 asp.Net Web 应用程序。可能吗?

或者有其他方法吗?

感谢您的回答和想法。

My idea was to run UWP and asp.Net web application simoutanously on Raspberry. Is it possible?

  1. Windows IoT 核心不支持 .Net 框架。因此 full-wing ASP.NET 在 Windows IoT Core 上不受支持。

  2. ASP.NET Windows ARM 支持内核,但仍处于测试阶段。

    ASP.NET Core 是 .NET Core 的一部分,因此 .NET Core 应该安装在 PC 上并且 ASP.NET Core Web 应用程序需要 Windows arm 平台到 运行在 raspberry pi 上。然而 ASP.NET Core 的每日构建仍处于测试版。

  3. UWP 和 ASP.NET Core 可以在 Windows IoT Core 上同时 运行。

    UWP 应用程序可以是 运行 在 Windows IoT 核心上,ASP.NET 核心 Web 应用程序可以是 运行 在 ASP.NET 核心上。所以UWP应用和Web应用可以同时运行。

Link:

https://blogs.msdn.microsoft.com/cesardelatorre/2016/06/27/net-core-1-0-net-framework-xamarin-the-whatand-when-to-use-it/

https://www.microsoft.com/net/download/core#/current

https://github.com/dotnet/core-setup

https://github.com/dotnet/coreclr/issues/7899

https://developer.microsoft.com/en-us/windows/iot/samples/helloworld