我收到以下錯誤,當我嘗試加載nget:無法加載的NuGet飼料在Visual Studio
Unable to load the service index for source https://api.nuget.org/v3/index.json . The ServicePointManager does not support proxies with the https scheme.
此外,在Linqpad,我得到一個類似的錯誤:
ServicePointManager does not support proxies with the https scheme
不任何人有任何解決方案?我發現this後,但解決方案,清除臨時文件夾,沒有解決我的問題。請幫忙!謝謝!
當您打開包管理器控制檯時,它表示正在運行哪個版本? VS2017? – OzBob
%appdata%\ Microsoft \ AppEnv \ 14.0 \ ActivityLog.xml中的更多信息 – OzBob
您的計算機上配置了代理嗎?或者在環境變量中配置「http_proxy」變量?如果NuGet存在,NuGet會首先查看它們。如果這些代理環境變量以https開頭,則NuGet將失敗。您可以嘗試刪除配置的代理來檢查它是否正常工作.https://blogs.msdn.microsoft.com/jpsanders/2007/04/25/the-servicepointmanager-does-not-support-proxies-of-https -scheme-net-1-1-sp1 /或者您可以將代理設置添加到Nuget.Config文件中,http://skolima.blogspot.sg/2012/07/nuget-proxy-settings.html。 –