Search Unity

Problem with OmniSharp C# plugin in VSCode on OpenSuse Leap 15.0

Discussion in 'Linux' started by qrikko, Feb 14, 2019.

  1. qrikko

    qrikko

    Joined:
    Mar 2, 2014
    Posts:
    9
    Hi, I just wanted to mention this since I have spent some time on a problem where I wouldn't get intellisense (and the debugger werent working either) in VSCode after upgrading OpenSuse to Leap 15.0.

    Basically I would get an error in VCCode where it failed on some OmniSharp stuff.

    I tracked it down to that it is looking for (or creating if not existing) a folder called: /Debug/

    The reason it is failing is that it doesn't have the permissions to write in the root (of course -_-) so I went ahead and created the folder and just put write permissions on it in the file system root.. i.e.

    Code (bash):
    1. $> sudo mkdir /Debug
    2. $> chmod 777 /Debug
    And now it is working both intellisense and debugger! Perhaps you can set the debug folder to use to something better, I just figured this out and I was excited to share it :p