I am developing a JS UWP app, my project has a dependency on 2 packages:
I am packaging the app using Visual Studio 2012. After packaging it generates an appxbundle file, dependencies folder and some other files. When i try to deploy the RELEASE version of this app using WinAppDeployCmd commandline
WinAppDeployCmd install -file <path> -ip <address>
or
WinAppDeployCmd install -file <path> -ip <address> -dependency <a> <b>
it fails with the error
0x80131500 - Failed to install or update package: Deployment Add operation with target volume :anguished: on Package Myapp_5.0.0.0_neutral_~_vgszm6stshdqy from: (Myapp_5.0.0.0_x64.appxbundle) failed with error 0x80070013. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues. 0x80070013 0x80131500 - Deployment Add operation with target volume :anguished: on Package Myapp_5.0.0.0_neutral_~_vgszm6stshdqy from: (Myapp_5.0.0.0_x64.appxbundle) failed with error 0x80070013. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues. 0x80070013
Moreover, the debug build of the same app works fine with these commands. Not sure what difference it makes being a release or a debug builds in terms of deployment?
Note: my win10 machine and xbox are in same subnet.
User contributions licensed under CC BY-SA 3.0