Cannot start OpenDebug because Mono (or a Mono version >= 3.10.0) is required

假装没事ソ 提交于 2020-01-02 01:59:07

问题


I have downloaded and install vscode in ubuntu 14.0 lts, and include existing node.js project. First think I have to do with vscode is debugging my app, for that I have go to debug (ctrl+shift+D) penal, configure launch.json file with "name" and "program"="app.js" properties. Put debug point in app.js file and click on run button. Here I am getting error "Cannot start OpenDebug because Mono (or a Mono version >= 3.10.0) is required". How to solve it?


回答1:


sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get install mono-complete
mono --version # Mono JIT compiler version 4.0.1 (tarball Tue Apr 28 11:47:58 UTC 2015)

Source: http://www.mono-project.com/docs/getting-started/install/linux/




回答2:


Mono, cross platform, open source .NET framework, needs to be installed in the system. Please visit Mono - Download section and its corresponding installation guide to install.

Once installed you should be able to perform the debug operations.



来源:https://stackoverflow.com/questions/29985029/cannot-start-opendebug-because-mono-or-a-mono-version-3-10-0-is-required

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