C# release version has still .pdb file

后端 未结 5 1872
离开以前
离开以前 2020-11-28 22:56

I want to deploy the release version of my application done in C#.

When I build using the Release config, I still can see that .pdb files a

5条回答
  •  一整个雨季
    2020-11-28 23:40

    The default is to generate PDBs for release builds as well. That is a feature and you shouldn't disable it. Generating PDBs means you can get more information when debugging. The performance of the code is not affected in any way by the presence of PDB files.

提交回复
热议问题