Skip to content

Commit

Permalink
Merge pull request #482 from vasily-kirichenko/bypass-proxy-on-local
Browse files Browse the repository at this point in the history
fixed: cannot install nuget packages from local TeamCity feeds
  • Loading branch information
forki committed Dec 29, 2014
2 parents a9967ec + 6e3f8f4 commit 85a758f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Paket.Core/Utils.fs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ let defaultProxy =
if address = irrelevantDestination then null else
let proxy = new WebProxy(address)
proxy.Credentials <- CredentialCache.DefaultCredentials
proxy.BypassProxyOnLocal <- true
proxy

let inline createWebClient(auth:Auth option) =
Expand Down

0 comments on commit 85a758f

Please sign in to comment.