2

Visual Studio Code (OmniSharp を使用) 用の VSCode 拡張機能 C# をインストールしようとしていますが、成功しません。VSCodeの[出力] タブで、次のエラーが表示されます。

Updating C# dependencies...
Platform: win32, x86_64

Downloading package 'OmniSharp for Windows (.NET 4.6 / x64)'    Retrying from 'https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.26.3.zip' Downloading package '.NET Core Debugger (Windows / x64)'   Retrying from 'https://vsdebugger.blob.core.windows.net/coreclr-debug-1-13-0/coreclr-debug-win7-x64.zip' 
Installing package 'OmniSharp for Windows (.NET 4.6 / x64)'
Failed at stage: installPackages
Error: end of central directory record signature not found

Finished
4

2 に答える 2

5

omnisharp-vscodeここのGitHubページで見つけた関連する問題によると:

私はエンタープライズプロキシの背後にいることを知っていたので、vscode ユーザー設定で次のようにhttp.proxy設定する必要がありました。vscode

{
    "http.proxy": "<my-proxy-uri>" // e.g. http://1.2.3.4:55,
}
于 2017-11-27T09:44:02.510 に答える