How to get a crash dump (or any usable crash report) for a converted Windows Store UWP app?

后端 未结 2 431
[愿得一人]
[愿得一人] 2021-01-14 12:07

I submitted to Windows 10 Store my native Win32 app that was converted to UWP app using Project Centennial converter. The app passed store certific

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-14 12:31

    You can try this method to create a dump file.

    1. While you are debugging a process in Visual Studio, you can save a dump file when the debugger has stopped at an exception or at a breakpoint. Choose Save Dump As, Debug. In the Save Dump As dialog box, in the Save as type list, you can select Minidump or Minidump with Heap (the default).
    2. With Just-In-Time Debugging enabled, you can attach the debugger to a crashed process that is running outside the debugger, and then save a dump file. See Attach to Running Processes.
    3. Other method to create dump file. More detail info, you can refer to using Dump files.

    Hope this may be helpful to you.

提交回复
热议问题