up vote 5 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question
removed the weird edit where someone maintained the original question in the actual post. We have revision control for a reason. – Simucal Dec 28 '08 at 20:26
feedback

3 Answers

The original compiled path is stored in the debug information within the PDB files.

link|improve this answer
Thank you for your informative Reply – xyz Dec 23 '08 at 10:05
feedback

Because it's telling you where to find the problem in your source code. So when you see this, you can go to your machine and open the file reported (e.g. "D:\Projects\xyz.cs"), go to the reported line (e.g. 12) and fix the problem.

link|improve this answer
feedback

Did you compile it in realese mode?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown