Can't deploy UWP app to Raspberry Pi (Windows 10 IoT)

0

The app would deploy fine previously. Since then I updated the OS several times, currently running 17763.557.

1>------ Build started: Project: PiPwm, Configuration: Release ARM ------
1>  PiPwm -> G:\Projects\PiPwm\PiPwm\bin\ARM\Release\PiPwm.exe
1>  Processing application code
1>  Computing application closure and generating interop code
1>    Loading 61 modules...
1>    Generating code...
1>    Interop code generated.
1>  Generating serialization code
1>  Compiling interop code
1>  Generating System.Reflection.DispatchProxy proxy code.
1>  Cleaning up unreferenced code
1>  Generating native code
1>  Generating fixups for native code
2>------ Deploy started: Project: PiPwm, Configuration: Release ARM ------
DEP6953: Failed to launch remote debugger with the following error: 'Command failed: 0x800705b4'.
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
========== Deploy: 0 succeeded, 1 failed, 0 skipped ==========

DEP6953: Failed to launch remote debugger with the following error: 'Command failed: 0x800705b4'.


Edit:

After reading this, I killed the msvsmon.exe and now app goes here inside App.g.i.cs after running:

#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
    UnhandledException += (sender, e) =>
    {
        if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
    };
#endif
uwp
windows-10-iot-core
asked on Stack Overflow Aug 5, 2019 by Sasan • edited Aug 5, 2019 by Sasan

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0