Advantages and disadvantages of including PDB files with your release application

前端 未结 4 630
温柔的废话
温柔的废话 2021-01-02 07:12

I\'ve got a VB.net application. Currently the release version of the application is produced without a PDB file. This gives me error logs lacking useful details such as line

4条回答
  •  天涯浪人
    2021-01-02 08:00

    Create pdbs for your release build, but do not ship them. Keep the pdbs somewhere safe with the matching build and source code. If you get a live crash, or similar, you can use the pdbs to do post-mortem debugging using the Debugging Tools for Windows, or Visual Studio.

提交回复
热议问题