I'm Using Visual Studio 2015 for Xamarin app development and I'm working behind corporate proxy, I need to set the proxy(http proxy) to the Visual studio 2015, so how could I get such window to set proxy ?
Find devenv.exe.config
in your installation directory.
Now open this text file and add the node <defaultProxy>
inside the node <system.net>
.
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy bypassonlocal="true" proxyaddress="http://yourproxyaddress.net:8080" />
</defaultProxy>
</system.net>
If your proxy requires authentication, you should add those as parameters in the proxy URL
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy bypassonlocal="true" proxyaddress="http://Username:[email protected]:8080" />
</defaultProxy>
</system.net>
For the folks that are behind a proxy and using Visual Studio 2017 on Windows 10, this is what I did.
- Type "setting" or "proxy" in the search bar and select Settings or the link pointing to Network & Internet > Proxy
- At the bottom you will see Manual proxy setup
- Turn on the Use a proxy server and put your company address and port and any other setting you moght find relevant (like bypass for local addresses)
You could create your own proxy authentication module like descriped here:
First create a new Visual C# Project -> Class Library (.Net Framework): Name: ProxyModule (for example). USER, PWD and PROXY must be set to the correct string values:
using System.Net;
using System.Net.Sockets;
namespace ProxyModule
{
public class AuthProxyModule : IWebProxy
{
ICredentials crendential = new NetworkCredential("USER", "PWD");
public ICredentials Credentials
{
get
{
return crendential;
}
set
{
crendential = value;
}
}
public Uri GetProxy(Uri destination)
{
return new Uri("http://PROXY:8000", UriKind.Absolute);
}
public bool IsBypassed(Uri host)
{
return host.IsLoopback;
}
}
}
and copy the created "ProxyModule.dll" to the "...\Common7\IDE" folder, VS 2015:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE
or VS professional 2017:
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE
Then you must extend the system.net part in the devenv.exe.config in the same folder:
<system.net>
<defaultProxy>
<module type="ProxyModule.AuthProxyModule, ProxyModule"/>
</defaultProxy>
</system.net>
If you don´t want to use the proxy in some cases you can extend the method "IsBypassed(Uri host)". Maybe you could check your own IP to enable or disable the proxy (return false to disable the proxy).
© 2022 - 2024 — McMap. All rights reserved.