Instale o SDK do Windows 10 e WDK (pelo menos compilação 16299) para obter o Compilador ARM para aplicativos da área de trabalho.
AbraaconfiguraçãodoprojetoecrieaconfiguraçãodoARM(64):
Sevocêtentarcompilá-lo,receberáumerroinformandoqueoARM64nãoécompatívelcomoDesktop:
Paracorrigirisso,descarregueoprojetoeabra-onoeditoreincluaalinha<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
naentradadedepuraçãoeliberaçãodoARM64:
<PropertyGroupCondition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
</PropertyGroup>
e WindowsSDKDesktopARMSupport
para o 32Bit ARM.
Salvar alterações, carregar o projeto novamente e agora a compilação funciona bem: