win32 fullTrustProcess AppService 拡張機能を使用して JS UWP アプリを作成しようとしています。ここの例に従いました: https://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/AppServiceBridgeSampleしかし、ローカル マシン (アニバーサリー アップデートを適用した Windows 10) に展開しようとすると、展開エラーが発生します。
DEP0700 : Registration of the app failed. AppxManifest.xml(49,10): error 0x80080204: Cannot register the xxxxx package because the extension is missing an EntryPoint or StartPage attribute. (0x80073cf6)
Deployment of the application to the target device failed.
マニフェストの拡張部分:
<Extensions>
<uap:Extension Category="windows.appService"> <!-- line 49 from error -->
<uap:AppService Name="CommunicationService" />
</uap:Extension>
<desktop:Extension Category="windows.fullTrustProcess" Executable="bin\mywin32.exe" />
</Extensions>