My resolution was exactly the opposite of what worked for @ devries48:
Open C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe.config
Find system.net node and change this:
<system.net> <defaultProxy useDefaultCredentials="true" enabled="true"> <proxy usesystemdefault="True" /> </defaultProxy> <settings> <ipv6 enabled="true"/> </settings> </system.net>
in
<system.net> <settings> <ipv6 enabled="true"/> </settings> </system.net>
This will depend on your (corporate) proxy settings, for which the approach will work best for you. If you have other instances of Visual Studio, you can also compare the configuration settings for these instances:
- VS 2017 -
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE - VS 2013 -
C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE - VS 2010 -
C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE
source share