為 Visual Studio Code (VSC) 設定需驗證的 proxy

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

1. File –> Preference –> User Settings

VSO_SETP1

2. VSC 會開啟分割視窗

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

參考資料

  1. User and Workspace Settings
  2. Setting up Visual Studio Code