How do I change the locations of source files in a symbols file (pdb) - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:29:31Zhttp://stackoverflow.com/feeds/question/27952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/27952/how-do-i-change-the-locations-of-source-files-in-a-symbols-file-pdb5How do I change the locations of source files in a symbols file (pdb)Trumpi2008-08-26T12:58:31Z2008-10-06T12:17:37Z
<p>Basically what I want to do it this: a pdb file contains a location of source files (e.g. <code>C:\dev\proj1\helloworld.cs</code>). Is it possible to modify that pdb file so that it contains a different location (e.g. <code>\more\differenter\location\proj1\helloworld.cs</code>)?</p>
http://stackoverflow.com/questions/27952/how-do-i-change-the-locations-of-source-files-in-a-symbols-file-pdb/28117#28117-3Answer by Joel Coehoorn for How do I change the locations of source files in a symbols file (pdb)Joel Coehoorn2008-08-26T14:04:15Z2008-08-26T14:04:15Z<p>Sure. Move the source file in visual studio and rebuild the project to re-generate the .pdb.</p>
http://stackoverflow.com/questions/27952/how-do-i-change-the-locations-of-source-files-in-a-symbols-file-pdb/28174#281742Answer by Matt Dillard for How do I change the locations of source files in a symbols file (pdb)Matt Dillard2008-08-26T14:23:54Z2008-08-26T14:23:54Z<p>If you're looking to be more generic about the paths embedded in a pdb file, you could first use the MS-DOS <code>subst</code> command to map a particular folder to a drive letter.</p>
<pre><code>subst N: <MyRealPath>
</code></pre>
<p>Then open your project relative to the N: drive and rebuild it. Your PDB files will reference the source files on N:. Now it doesn't matter where you place that particular set of source files, so long as you subsequently call the root directory "N:" like you did when you built it.</p>
<p>This practice is recommended by John Robbins in his excellent book, <a href="http://rads.stackoverflow.com/amzn/click/0735615365" rel="nofollow">Debugging Applications for Microsoft .NET and Microsoft Windows</a>.</p>
http://stackoverflow.com/questions/27952/how-do-i-change-the-locations-of-source-files-in-a-symbols-file-pdb/28230#282304Answer by On Freund for How do I change the locations of source files in a symbols file (pdb)On Freund2008-08-26T14:41:07Z2008-08-26T14:41:07Z<p>You can use the source indexing feature of the Debugging Tools for Windows, which will save references to the appropriate revisions of the files in your source repository as an alternate stream in the PDB file.</p>
http://stackoverflow.com/questions/27952/how-do-i-change-the-locations-of-source-files-in-a-symbols-file-pdb/174051#1740510Answer by deemok for How do I change the locations of source files in a symbols file (pdb)deemok2008-10-06T12:17:37Z2008-10-06T12:17:37Z<p>It is certainly possible, as On Freund has already pointed out.
But if it is only so that the sources can be located and loaded during debugging, then a better way would be to set the source path correspondingly. Once set in a debugger, it will preemt all hard coded paths inside PDBs.</p>
<p>
In windbg (for instance):
<blockquote>
.srcpath+ path_to_source_root
</blockquote>
or this (in case you're debugging remotely):
<blockquote>
.lsrcpath+ path_to_source_root
</blockquote>
</p>