我正在使用Visual Studio Code在Mac上开发ASP.NET 5应用程序.我遇到的问题是,除了我之前输入的方法和变量名称的简单自动完成之外,我没有获得任何IntelliSense支持(例如可用的类方法).
该应用针对DNX Core 5.0:
"frameworks": {
"dnxcore50": { }
},
Run Code Online (Sandbox Code Playgroud)
我通过DNVM安装了CoreCLR 1.0.0-rc1-update1:
$ dnvm列表
活动版本运行时体系结构OperatingSystem别名
------ ------- ------- ------------ --------------- --- -
- 1.0.0-rc1-update1 coreclr x64 darwin默认值
我尝试了以下方法来解决这个问题,但没有运气:
明确转向的建议 settings.json
{
"editor.quickSuggestions": true`
}
Run Code Online (Sandbox Code Playgroud)任何建议将不胜感激.