为 Win IoT Core 构建 ARM 会出现 "not supported" 错误

Building ARM for Win IoT Core gives "not supported" error

error MSB8022: Building Desktop applications for the ARM platform is not supported.

当更改我在 Windows 10 IoT Core x86(对于 Minnowboard)上运行的控制台应用程序时,但是当我 select ARM 时,我得到 "not supported" 错误。

有项目设置需要调整什么的吗?

我通过添加

解决了这个问题
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>

到 .csproj 项目文件中的 <PropertyGroup Label="Globals"> 节点。