OmniSharp.MSBuild.ProjectManager Failed to load project on Linux

后端 未结 3 462
温柔的废话
温柔的废话 2021-01-28 01:22

I am learning C# on my Manjaro Linux Notebook. I tried to install the ms-vscode.csharp extension, but when opening any .NET Core project I get the following Error Message:

3条回答
  •  我在风中等你
    2021-01-28 02:13

    I solved this by adding a omnisharp.json file with following content:

    {
        "MSBuild": {
            "UseLegacySdkResolver": true
        }
    }
    

    Source

提交回复
热议问题