An open API service indexing awesome lists of open source software.

https://github.com/kekyo/visualstudioproxyadapter

Proxy adapter for Visual Studio (2012, 2013, 2015, 2017 and 2019), driven with HTTP_PROXY environment
https://github.com/kekyo/visualstudioproxyadapter

environment http-proxy https-proxy proxy proxy-auth visual-studio visualstudio

Last synced: 12 months ago
JSON representation

Proxy adapter for Visual Studio (2012, 2013, 2015, 2017 and 2019), driven with HTTP_PROXY environment

Awesome Lists containing this project

README

          

# Proxy adapter for Visual Studio (2012, 2013, 2015, 2017 and 2019)

![ProxyAdapterInstaller](Images/syringe_160.png)

This is HTTP proxy adapter for Visual Studio. It has ability for applying HTTP proxy settings retreive from the environment variable `HTTP_PROXY` or likes.
The manner is likely unix-style, so your unix based tools (Git, MinGW and also) better fitting usages.

It'll resident onto task tray, and you can quickly install only double clicking the icon when you'll each update Visual Studio :)

## How to use

[Download pre-built binary (ver0.8.1)](https://github.com/kekyo/VisualStudioProxyAdapter/releases/download/0.8.1/ProxyAdapterInstaller-0.8.1.zip)

Execute ProxyAdapterInstaller.exe, then it shows a syringe icon on task tray. You can double click or choice "Install ProxyAdapter on Visual Studios" context menu for showing right clicked. (Require elevated administrative privilege because will copy ProxyAdapter files and fix configration for installed Visual Studios.)

![Task tray double clicking installation](Images/tasktray-menu.png)

Installation completed!

### Optional: Manually installation steps

(This installation steps are manually if you wanna do. You can understand what to do ProxyAdapterInstaller.)

1. Place ProxyAdapter.dll into your Visual Studio IDE environment folder like:
`C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\`

2. Edit devenv.exe.config. it's very large xml file, you can see the element `` at the bottom of xml:

```xml





```

Insert proxy entries:

```xml










```

### Set environment variables after installed

Ready to use, you have to add environemnt variables be able to named `HTTPS_PROXY`, `HTTP_PROXY` and/or `ALL_PROXY` (Will fallback these names). You may know these're standard unix-like proxy assignment solution.

Format example: `http://:@proxy.example.com:8080`

![Windows environment dialog](Images/environment-dialog.png)

## License

Apache-v2