microsoft / sql-server-language-extensions

language-extensions-sqlserver
Other
106 stars 43 forks source link

[Csharp Extension] Removal of PDB Files from C# Extension Release Build #47

Closed SicongLiu2000 closed 7 months ago

SicongLiu2000 commented 7 months ago

This PR introduces a change to the build process of the C# extension, specifically targeting the release builds. The primary change implemented by this PR is the removal of .pdb files from the release build of the C# extension.

Background

PDB files are used to store debugging information about a program or module, such as the names of variables and the lines of code that correspond to machine code instructions. While invaluable for debugging purposes, including them in release builds can unnecessarily increase the size of the deployment package and potentially expose sensitive debugging information in a production environment.

Changes Implemented