Visual Studio Code(VSC) 設定需驗證代理伺服器(proxy with authentication)

Visual Studio Code(VSC) 設定需驗證代理伺服器(proxy with authentication)
Visual Studio Code 自發佈以來,受到不少開發人員的喜愛,更難能可貴的是非微軟的開發人員也給予不錯的評價,也逐漸成為大家開發時不可或缺的工具,就讓我們來看看該如何設定 proxy 吧!

  1. File –> Preference –> User Settings
    VSO_SETP1

  2. VSO 會開啟分割視窗
    spiltwindows

2-1. 左邊(Default settings)
所有設定的名稱及相關說明
2-2. 右邊(setting.json)
客製設定內容
3. 將 proxy 設定加入setting.json
{
“http.proxy”: “http://UserName:password@proxyserver:proxyport“,
“https.proxy”: “http://UserName:password@proxyserver:proxyport“,
“http.proxyStrictSSL”: false
}
proxy_setting

你可能感兴趣的:(AI)