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

别说谁变了你拦得住时间么 提交于 2019-12-01 01:34:46

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!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!