该例外将包含原始立案地点的道路,因为在汇编中,再没有立案卷。
这与你从网络的道路上管理该方案毫无关系。
In other words:
When you compile your program, the compiler creates your dll and a file with the extension pdb that has the same name. For example yourdll.dll and yourdll.pdb. During compilation, the compiler writes the paths of the .cs files into the .pdb file. And these are the paths that you are later seeing in your exceptions.
That means, they are fixed and will always be the same, no matter where you run your program.
To be very explicit:
This behavior is by design, not an error and can t be changed.