[Visual Studio 2013] Setting Proxy Server

[Visual Studio 2013] Setting Proxy Server

沒有 UI 介面可以設定 Proxy,在公司內部環境若有使用 Proxy Server,在 Visual Studio 2013 則可能會出現 Proxy 驗証失敗的問題,進而導致帳號被鎖定

一堆 407,resharper 這個套件發了瘋似的進行資料交換,不過都是失敗,如下圖:

image

 

 

 

可以從 devenv.exe.config 手動加入 Proxy,檔案路徑在

C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE

image

 

然後在 system.net 區段下加入以下設定


  <defaultProxy useDefaultCredentials="true" enabled="true">
    <proxy bypassonlocal="True" proxyaddress="http://yourproxyaddress.net:8080" />
    <bypasslist>
      <add address="127.0.0.1" />
    </bypasslist>
  </defaultProxy>
  <settings>
    <ipv6 enabled="true" />
  </settings>
</system.net>

 

然後重啟 VS2013,在需要用到網路資源的地方,比如說 Extensions and Updates 會跳出要你輸入帳號密碼,這時候的連線目標應該是我們剛剛設定的 yourproxyaddress.net

image

若有謬誤,煩請告知,新手發帖請多包涵


Microsoft MVP Award 2010~2017 C# 第四季
Microsoft MVP Award 2018~2022 .NET

Image result for microsoft+mvp+logo