Error while creating app package with “fullTrustProcess” pointing to a executable

后端 未结 4 1093
悲&欢浪女
悲&欢浪女 2021-02-02 15:52

I am trying to deploy the sample application for bridging AppServices with a UWP application. The sample runs and builds just fine but when I try to follow the guide to package

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-02 16:22

    Wrong path will cause the same error.
    For me, my wrong code is

    
        
          
        
    
    

    my project dir like this:

    bin
    │  ├─x64
    │  │  └─Release
    │  │      ├─AppX
    │  │      │  ├─ClipboardEx
    |  |      |  |  └─ClipboardEx.exe
    │  │      │  ├─Images
    │  │      │  └─WinMetadata
    

    So I changed Executable fromClipboardEx.exetoClipboardEx\ClipboardEx.exe, pack successfully.
    It's kind of like what kibitzerCZ said. But i dont need to make a new dir, just make sure your path is correct

提交回复
热议问题