Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>As said in MSDN DefaultWebProxy page <a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest.defaultwebproxy%28v=vs.110%29.aspx" rel="nofollow noreferrer">http://msdn.microsoft.com/en-us/library/system.net.webrequest.defaultwebproxy%28v=vs.110%29.aspx</a>, </p> <blockquote> <p>The DefaultWebProxy property reads proxy settings from the app.config file. If there is no config file, the current user's Internet Explorer (IE) proxy settings are used.</p> </blockquote> <p>So if your problem is about setting a proxy only <strong>for browsing inside Visual Studio</strong> (2013 for you), you should <strong>add proxy info inside the config file of Visual Studio</strong>, named "devenv.exe.config" :</p> <pre><code>&lt;system.net&gt; &lt;defaultProxy useDefaultCredentials=“true“ enabled=“true“&gt; &lt;proxy bypassonlocal=”true” proxyaddress=”http://yourproxyaddress.net:proxyPort” /&gt; &lt;/defaultProxy&gt; &lt;/system.net&gt; </code></pre> <p>See this article for more details: <a href="http://en.code-bude.net/2013/07/15/how-to-setup-a-proxy-server-in-visual-studio-2012/" rel="nofollow noreferrer">http://en.code-bude.net/2013/07/15/how-to-setup-a-proxy-server-in-visual-studio-2012/</a></p> <p><strong>If your problem is about setting a proxy for all your browsers</strong> (ie: defaut internet proxy), you should use PInvoke and change the registry settings: see response here <a href="https://stackoverflow.com/questions/2020363/how-to-change-global-windows-proxy-using-c-sharp-net-with-immediate-effect">How to change Global Windows Proxy using C# .NET with `Immediate Effect`</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload