Does signing a DLL invalidate a PDB file?

Kalyani Reddy 1 Reputation point
2022-08-29T04:20:23.823+00:00

Hi,
I have signed my dll using SignTool.exe with timestamp. No the timestamp of dll and pdb file are different.
Does signing the dll invalidate the pdb file?
How exactly pdb works?

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,237 questions
Visual Studio Debugging
Visual Studio Debugging
Visual Studio: A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.Debugging: The act or process of detecting, locating, and correcting logical or syntactical errors in a program or malfunctions in hardware. In hardware contexts, the term troubleshoot is the term more frequently used, especially if the problem is major.
938 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. RLWA32 40,286 Reputation points
    2022-08-29T09:39:57.703+00:00

    No, signing a dll or an exe does not invalidate the related pdb (symbol file).

    For a description of debugging with Visual Studio and symbol files read specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger

    0 comments No comments