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
- Host: GitHub
- URL: https://github.com/kekyo/visualstudioproxyadapter
- Owner: kekyo
- License: apache-2.0
- Created: 2019-11-20T05:09:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-28T11:06:17.000Z (over 6 years ago)
- Last Synced: 2025-02-09T22:33:13.064Z (about 1 year ago)
- Topics: environment, http-proxy, https-proxy, proxy, proxy-auth, visual-studio, visualstudio
- Language: C#
- Homepage:
- Size: 77.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Proxy adapter for Visual Studio (2012, 2013, 2015, 2017 and 2019)

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.)

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`

## License
Apache-v2