【发布时间】:2016-08-10 11:56:40
【问题描述】:
我在 Windows 8.1 上,使用 VS Code 1.0.0 和 C# 用于 VS Code 版本 1.0.1-rc2。
问题是我在打开 C# 项目时无法让 Intellisense 工作,但在开发扩展时,我确实启用了 Intellisense。
但有一件事是,当 VS Code 打开时,Omnisharp 会启动……但是,有一个错误:
[INFO] 在 'c:\dev\TestI' 处启动 OmniSharp... [错误] 错误:连接 ETIMEDOUT 192.30.252.126:443
这是我的 project.json 文件:
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc2-3002392"
}
},
"frameworks": {
"netcoreapp1.0": {}
}
}
我也已经设置了“http.proxy”。
感谢任何帮助。
谢谢。
【问题讨论】:
标签: c# intellisense visual-studio-code omnisharp