I have an exe, which is built using Visual Studio C++ compiler and linker, but without VS project. (The build process is automated using ANT.)
Is there a chance to Find All References to a symbol just using the exe, its pdb and map file?
Unfortunately, the map file obviously contains the place of definition only.
And using the context menu function Find All References (even from within debugging, having all symbol information), just can search "Entire Solution", "External Sources", "Current Project", "Open Documents",
but not "currently debugged exe".
Or is there a chance to reconstruct a VS project from a pdb + map, since the source file paths are contained in the pdb?
Then I could search in this project afterwards.