OmniSharp无法在Visual Studio Code中启动

时间:2015-12-07 14:17:30

标签: c# mono visual-studio-code omnisharp

我在Kubuntu 15.04下的VSCode(v。0.10.3)中的C#上打开现有MSBuild项目(实际上来自VS 2012)的文件夹。 启动后出现OmniSharp抛出错误:

[INFO] Starting OmniSharp at '/home/tezaurismosis/Development/NET/ConsoleApp/ConsoleApp.sln'...
[INFO] Started OmniSharp from '/home/tezaurismosis/VSCode/resources/app/extensions/csharp-o/bin/omnisharp' with process id 14956...
System.InvalidOperationException: Failed to resolve the following dependencies for target framework 'DNX,Version=v4.5.1':
    framework/System.Collections 
    framework/System.Collections.Concurrent 
    framework/System.Globalization 
    framework/System.IO 
    framework/System.Net.Http.WebRequest 
    framework/System.Reflection 
    framework/System.Runtime 
    framework/System.Text.Encoding 
    framework/System.Threading.Tasks 
Searched Locations:
... some paths ...
Try running 'dnu restore'.
at Microsoft.Framework.ApplicationHost.Program.Main (System.String[] args) <0xb71f6a58 + 0x0035b> in <filename unknown>:0 
[ERROR] Error: Failed to start OmniSharp

我安装了最新版本的Mono(4.2.1)以及所有带有Mono程序集的子包,安装dnvm并运行dnvm upgrade -r mono,运行dnu restore,但OmniSharp一次又一次失败, IntelliSence确实在VSCode中工作。

我该如何解决?

P.S。它不是ASP.NET,只是控制台C#项目。

1 个答案:

答案 0 :(得分:5)

您的版本可能已过期。在vs代码中卸载并重新安装C#扩展名。

  1. F1 ,键入ext show installed,按 Enter 。点击x将其删除。
  2. 重新启动vscode。
  3. F1 ,键入ext install,按 Enter 。单击下载图标进行安装。
  4. 重新启动vscode。
  5. Ominsharp现在将运行。