2016-01-21 83 views
1

我正在嘗試安裝VSCode的擴展。但無法獲得當地發行人的認證。 我settings.json無法獲取本地發行者證書vscode

// Place your settings in this file to overwrite the default settings { // Controls the font family. 
"editor.fontFamily": "Consolas", 

    // Controls the font size. 
"editor.fontSize": 12, 

    //Setting corporate proxy 
"http.proxy": "http://proxy_servr:3128", 
"https.proxy": "http://proxy_servr:3128", 

    //Disable SSL Verification 
"http.proxyStrictSSL": false } 

回答

0

在VS代碼: 單擊文件 - >首選項 - >設置

{ 
"http.proxyStrictSSL":false, 
"http.proxy":"http://USERID:[email protected]:3128" 
} 

看來,你還沒有加入身份驗證憑據http.proxy

相關問題