Why are no Symbols loaded when remote debugging?

后端 未结 14 731
星月不相逢
星月不相逢 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:39

    1800 INFORMATION is right, you have to do remote debugging with Windows authentication in order to debug managed code, otherwise you won't be able to load the symbols for managed assemblies. Getting this to work with authentication is pretty tricky, as it requires local accounts on both machines with identical passwords, among other things. This question and everyone's answers are quite useful for getting that working.

    Remote Debugging in Visual Studio (VS2008), Windows Forms Application

提交回复
热议问题