How can I include line numbers in a stack trace without a pdb?

前端 未结 4 1606
孤城傲影
孤城傲影 2020-11-29 03:23

We are currently distributing a WinForms app without .pdb files to conserve space on client machines and download bandwidth. When we get stack traces, we are getting method

4条回答
  •  执笔经年
    2020-11-29 04:03

    No there is not. All of the information necessary to map lines of IL to the original source file and line number are stored within the PDB. It's not possible to get that information in the stack trace without the PDB.

提交回复
热议问题