问题标签 [visual-studio-code]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
3099 浏览

node.js - Visual Studio 代码 node.js 调试器无法在标准启动时附加

我尝试使用简单的 node.js 示例 visualstudio 代码提供,但不幸的是,当从 Visual Studio 代码(在 OS X 上)启动节点时,该节点会以一些任意 debug-brk 启动,但调试器附件失败。

当我使用 --debug-brk = 5858 手动运行节点应用程序然后使用附加时,我可以调试我的应用程序。有人遇到同样的问题吗?

PS我从单声道项目页面.pkg安装了单声道

这是我的launch.js:

}

0 投票
4 回答
11969 浏览

powershell - 如何将 VSCode 添加到 PowerShell 的 PATH?

代码文档建议在安装期间将其添加到 PATH 中,但这似乎对我不起作用(至少在 PowerShell 中不起作用)。它安装在哪里以便我可以自己添加它?

0 投票
1 回答
494 浏览

using - Visual Studio Code: using directive missing or invalid, except it isn't

I started messing with the new Visual Studio Code today and I am running into a small "problem"...of sorts.

I have added reference to Npgsql in the project.json of a Web API project and run 'dnu restore' which also updated the project.lock.json to include the proper references. However the code editor highlights an error for every reference to an Npgsql object, giving me the "are you missing a using directive or reference" message for each one, including the 'using Npgsql;'

The really odd part is that the same tooltip that tells me it doesn't recognize the type..also tells me exactly what it is and does. Intellisense still works and if I execute 'dnx: web'...the whole thing runs just fine with no errors.

I am assuming its just a bug in the new editor but who knows, maybe I've not configured something correctly? Anybody else see this?

0 投票
2 回答
1057 浏览

proxy - 从代理后面下载 Visual Studio Code 中的打字稿定义文件

我在公司代理后面使用 Mac 上的 Visual Studio Code,当我使用 IDE 中的功能添加对打字稿定义的引用时,它添加了/// reference path,但d.ts文件无法下载。我在上面/// reference path写着错误file not found

我在不在公司代理后面的时候尝试过,它完美无缺,所以我很确定这是一个代理问题。我的问题是无论如何我都看不到在 VS Code 中专门添加代理设置。我还搜索了他们的文档(https://code.visualstudio.com/Docs/),通常在网络设置上看不到任何内容。

我的操作系统网络代理设置正确,因为其他应用程序正常工作。我错过了什么吗?

0 投票
1 回答
2616 浏览

visual-studio-code - 如何在没有 IntelliSense 的情况下触发快速建议

有没有办法为 IntelliSense 不支持的文件中的单词打开快速建议/自动完成?例如,在 Sublime 中,快速建议框会建议文件中匹配的单词,这通常会非常有用。

如果我手动触发建议框,我希望在键入时自动显示的建议就会出现。只是想让它们出现,而不需要我不断地按 ctrl+space。

editor.quickSuggestions 已经是真的,我已经玩过了延迟。没有什么。

0 投票
1 回答
454 浏览

visual-studio-code - 在 VSCode 中运行 ASP.net V5

我正在尝试在 Windows 7 操作系统的 VSCode 中运行来自https://github.com/aspnet/home的代码示例。我成功启动了网站,但它出错了

Microsoft.AspNet.Mvc.Razor.Compilation.RoslynCompilationService.GetApplicationReferences()

我尝试升级 DNVM 并尝试列出可用版本并执行“dnu restore”

请帮助解决这个问题。

0 投票
1 回答
3029 浏览

sql - 我可以在 Visual Studio Code for OS X 中创建 SQL 数据库吗?

我刚刚下载了 Visual Studio Code(适用于 OS X),我想尝试创建一个简单的 REST API 服务器来测试所有可能性。我似乎找不到如何创建 SQL 数据库。

我需要在另一个应用程序中创建一个吗?如果是这样,怎么做?

0 投票
5 回答
37539 浏览

visual-studio-code - 如何让 Visual Studio Code linter 忽略一行?

例如,在 node.js 源文件的顶部:

...或未使用的局部变量等。

0 投票
1 回答
2409 浏览

console - 如何在 vscode 中配置任务以运行/调试 C# 控制台应用程序

从 //build,我看到了运行 nodejs 和 asp net 5 的酷炫我正在尝试使用 vscode 来运行一些基本的 C# 控制台应用程序。我应该如何配置任务来构建和运行/调试它?有样品吗?

0 投票
18 回答
109232 浏览

visual-studio-code - 如何在 Visual Studio Code 中打开 shell 命令提示符?

使用 Visual Studio Code 时,如何运行命令行程序,例如 choco (Chocolatey) 命令?我是否需要在 VS Code 之外运行一个单独的命令行 (CMD.exe),或者代码中是否有一个热键/窗口可以运行这些命令?

我看到了“命令调色板”,但并不完全清楚该调色板中运行的命令引擎。