如何解决NuGet错误时,试图浏览新的引用
本文关键字:浏览 引用 错误 何解决 解决 NuGet | 更新日期: 2023-09-27 18:02:53
在Visual studio 2015中尝试从Nuget包管理器浏览引用时,我面临以下错误:
[nuget.org] Unable to load the service index for source
https://api.nuget.org/v3/index.json. An error occurred while sending the request.
The underlying connection was closed: An unexpected error occurred on a send.
Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
An existing connection was forcibly closed by the remote host
最近我更新了我的VS2015之后,我在更新之前面临这个错误,我在添加引用时没有得到任何错误。我根据这个问题找到了一些答案,并尝试了
- 我已经卸载Nuget并重新安装了。NuGet
- 删除。配置文件
但是我的问题没有解决,最后我卸载了VS2015并重新安装,但我仍然面临同样的错误。有谁能解决我的问题吗?
由于您无法从办公系统直接在浏览器中打开该url,因此您的办公环境中应该存在一些网络限制。我建议你联系你们办公室的IT,确认他们是否增加了限制,是否使用了代理。如果使用代理,则需要在NuGet中设置代理设置。存储在c:' users '用户名'AppData'Roaming'NuGet中的配置文件如下所示。详细信息请参考本链接中的代理设置部分。
<add key="http_proxy" value="host" />
<add key="http_proxy.user" value="username" />
<add key="http_proxy.password" value="encrypted_password" />