我收到以下错误:
WARNING: The ServicePointManager does not support proxies with the https scheme.
这开始随机发生。我不在代理服务器后面,重新启动并没有解决任何问题。
答案 0 :(得分:0)
Visual Studio 2010 nuget error: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel 该问题与默认Nuget包源上的错误SSL证书有关。
答案 1 :(得分:0)
我在machine.config文件中有以下内容:
<system.net>
<defaultProxy
enabled = "true"
useDefaultCredentials = "true">
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
</defaultProxy>
</system.net>
这导致了这个问题。一定是从小提琴撞击中遗留下来的。