This happened to me when using Visual Studio Code in OS X. After typing Cmd + Shift + P and then dnx to Restore Packages, I got "OmniSharp server is not running".
This is most likely because your project.json file has errors. Open the Output console (Cmd + Shift + U) to get more information. Also, look at the errors in the Terminal when it opens. In my case the error was because of a comment in the project.json (using the double slash // which I had to remove). Another error I had was this line:
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-update1"
which I had to change to:
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final"
Saturday, January 23, 2016
Saturday, January 16, 2016
Setting up a dark theme in NetBeans
Lately I have found myself doing Java development. The default theme is white, but you can change it to dark, similar as in Visual Studio.
First download the theme from here:
http://plugins.netbeans.org/plugin/57669/obsidian-color-theme
Then install it following these instructions:
http://askubuntu.com/questions/107873/how-to-use-a-theme-in-netbeans-7-1
First download the theme from here:
http://plugins.netbeans.org/plugin/57669/obsidian-color-theme
Then install it following these instructions:
http://askubuntu.com/questions/107873/how-to-use-a-theme-in-netbeans-7-1
Subscribe to:
Posts (Atom)