How to connect to TFS through authenticated Web Proxy
To fix this issue you need a custom proxy module that provides the credentials, so I created a simple DLL with this class:
using System;
using System.Net;
namespace Rido.AuthProxy
{
public class AuthProxyModule : IWebProxy
{
ICredentials crendential = new NetworkCredential("proxy.user", "password");
public ICredentials Credentials
{
get