How do I change the locations of source files in a symbols file (pdb) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:29:31Z http://stackoverflow.com/feeds/question/27952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/27952/how-do-i-change-the-locations-of-source-files-in-a-symbols-file-pdb 5 How do I change the locations of source files in a symbols file (pdb) Trumpi 2008-08-26T12:58:31Z 2008-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 -3 Answer by Joel Coehoorn for How do I change the locations of source files in a symbols file (pdb) Joel Coehoorn 2008-08-26T14:04:15Z 2008-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#28174 2 Answer by Matt Dillard for How do I change the locations of source files in a symbols file (pdb) Matt Dillard 2008-08-26T14:23:54Z 2008-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: &lt;MyRealPath&gt; </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#28230 4 Answer by On Freund for How do I change the locations of source files in a symbols file (pdb) On Freund 2008-08-26T14:41:07Z 2008-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#174051 0 Answer by deemok for How do I change the locations of source files in a symbols file (pdb) deemok 2008-10-06T12:17:37Z 2008-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>