Visual Studio 2013 更新 4 - 工具和扩展无法访问 Internet

问题描述:

我刚刚使用 Update 4 更新了 Visual Studio 2013,但我的工具和扩展管理器无法连接到 Internet.

I've just updated Visual Studio 2013 with Update 4, and my tools and extensions manager isn't able to connect to the internet.

所以,我想我会发布我对这个烦人问题的解决方案.我在公司防火墙后面访问的代理设置已随更新删除.

So, I thought I would post my solution to this annoying problem. My proxy settings for access behind my company's firewall had been removed with the update.

去这里:C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE找到这个文件devenv.exe.config

Go here: C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE find this file devenv.exe.config

编辑 system.net 以包含此内容:

edit system.net to include this:

<system.net>
    <defaultProxy useDefaultCredentials="true" enabled="true">
    <proxy proxyaddress="http://yourproxy:8080" />
</defaultProxy>
<settings>
    <servicePointManager expect100Continue="false" />
    <ipv6 enabled="true" />
</settings>
</system.net>

请注意,您需要在以管理员权限运行的文本程序中对其进行编辑.

Note that you'll need to edit this in a text program that you run with admin permissions.