Why are no Symbols loaded when remote debugging?

后端 未结 14 737
星月不相逢
星月不相逢 2020-12-08 00:33

I want to use remote debugging. The program that I want to debug runs on machine b. Visual Studio runs on machine a.

On machine b I have a folder with the following

14条回答
  •  眼角桃花
    2020-12-08 00:52

    Remote debugging in .NET will not work if you don't place the .PDB files into the same directory where the debugged code exists.

    If VS still can't find source for debugging, the debugged code and the VS project source are not the same version. The solution is rebuilding and redeploying the project.

提交回复
热议问题