Do you have to deploy the .pdb file with compiling under release?

后端 未结 11 1714
悲&欢浪女
悲&欢浪女 2020-12-24 00:33

Do you have to deploy the .pdb file with compiling under release?

Why does it even compile a .pdb when you do a release build anyway?

11条回答
  •  失恋的感觉
    2020-12-24 01:18

    No, you don't have to deploy the .pdb file.

    To quote from MSDN, "A PDB file is created when you build with /debug (Visual Basic/C#).", so it shouldn't be creating the debug database when compiling for release.

提交回复
热议问题