Ok, I read this and it solved my problem:
It seems that OmniSharp cannot read the globally set Battery Life. Installing the dnvm package from the installation window runtime in a global location.
แ
dnvm list -detailed Active Version Runtime Architecture OperatingSystem Alias Location ------ ------- ------- ------------ --------------- ----- -------- 1.0.0-rc1-final coreclr x64 darwin default /usr/local/lib/dnx/runtimes 1.0.0-rc1-final mono linux/osx /usr/local/lib/dnx/runtimes
Instead of a symbolic link, you can delete them in a global location and reinstall them in a custom location.
แ
dnvm uninstall 1.0.0-rc1-final -r coreclr แ
dnvm uninstall 1.0.0-rc1-final -r mono
and then set them to the user's location. the -g flag sets them all over the world.
แ
dnvm install latest -r coreclr แ
dnvm install latest -r mono
It will give you
แ
dnvm list -detailed Active Version Runtime Architecture OperatingSystem Alias Location ------ ------- ------- ------------ --------------- ----- -------- * 1.0.0-rc1-final coreclr x64 darwin default ~/.dnx/runtimes 1.0.0-rc1-final mono linux/osx ~/.dnx/runtimes
Thanks to @danlofquist from GitHub
and everything will work as intended.
source share