What is expected in the “Output” field of Monodevelop's Custom Command Mono Soft Debugger dialog?

后端 未结 1 1239
攒了一身酷
攒了一身酷 2021-01-07 11:15

I can\'t use normal debugging in Monodevelop, so I am trying to debug remotely as described here.
Here is the whole procedure:


In a terminal, type:

相关标签:
1条回答
  • 2021-01-07 11:22

    Here is the correct procedure:

    In a terminal, type:

    export MONODEVELOP_SDB_TEST="YES"
    monodevelop &
    

    Monodevelop starts.

    1. Open your solution
    2. Run -> Run With -> Custom Command Mono Soft Debugger
    3. Fill the fields:
      1. Command: Empty
      2. Arguments: Empty
      3. IP: 127.0.0.1
      4. Port: 10000
      5. Output: Empty
    4. Press Listen
    5. Back to the terminal, press:

    mono --debug --debugger-agent=transport=dt_socket,address=127.0.0.1:10000 ./bin/SparkleShare.exe

    Now application can be debugged in Monodevelop!

    0 讨论(0)
提交回复
热议问题