blockhead
blockhead

Reputation: 9705

Can not download nuget packages

I'm getting the following error:

WARNING: The ServicePointManager does not support proxies with the https scheme.

This started happening randomly. I'm not behind a proxy, and restarting did not fix anything.

Upvotes: 0

Views: 959

Answers (1)

blockhead
blockhead

Reputation: 9705

I had the following in my machine.config file:

<system.net>
<defaultProxy
                enabled = "true"
                useDefaultCredentials = "true">
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
</defaultProxy>
</system.net>

This was causing the issue. Must have been leftover from a fiddler crash.

Upvotes: 2

Related Questions