Stacktrace information preserving paths of original source
.net, c#, stack-trace
Solution
The original compiled path is stored in the debug information within the PDB files.
Problem
I am using C#.net for application development. To log and debug exceptions, I use the stacktrace. I executed my application on another machine, but when errors occur it refers to the path of my development machine. ``` Ex: D:\Projects\xyz.CS line no :12 _Error_message_here. ``` Why does it trace to the path on my development machine path even though I am running the application on another machine?