我有一个.NET Core 2.1
应用程序,不能再运行dotnet restore
了。
我收到此错误:
恢复 D:\Work-2\Anubis\Core\AnubisServer.Server\AnubisServer 的包。
Server.csproj... D:\Work-2\Anubis\Core\COM\SharedCOM\SharedCO
M.csproj 的恢复在 22.22 毫秒内完成。D:\Work-2\Anubis\Core\AnubisServer.Shared\An
ubisServer.Shared.csproj 的恢复在 26.09 毫秒内完成。D:\Work-2\Anubis\Core\Server\Extensions\Exte
nsions.csproj 的恢复在 26.07 毫秒内完成。D:\Work-2\Anubis\Core\AnubisServer.Client\An
ubisServer.Client.csproj 的恢复在 26.12 毫秒内完成。C:\Program Files\dotnet\sdk\3.0.100-preview-009812\NuGet.targets(114,5): 错误:无法加载源 https://api.nuget.org/v3/index的服务索引.json
. [D:\Work-2\Anubis\Core\AnubisServer.Server\AnubisServer.Server.csproj] C:\Program Files\dotnet\sdk\3.0.100-preview-009812\NuGet.targets(114,5):错误:无法建立 SSL 连接,请参阅内部异常。[D:\Work-2\
Anubis\Core\AnubisServer.Server\AnubisServer.Server.csproj] C:\Program Files\dotnet\sdk\3.0.100-preview-009812\NuGet.targets(114,5):错误[
_
_
D:\Work-2\Anubis\Core\AnubisServer.Server\AnubisServer.Server.csproj] C:\Program Files\dotnet\sdk\3.0.100-preview-009812\NuGet.targets(114,5):错误:连接尝试失败,因为连接方
在一段时间后没有正确响应,或者连接失败,因为连接的主机
没有响应。[D:\Work-2\Anubis\Core\AnubisServer.Server\
AnubisServer.Server.csproj]
如您所见,一切都解决了,api.nuget.org/v3/index.json
但我不知道出了什么问题。
我查看了以前的答案并尝试过:
- 从 C:/Users:/[username]/Nuget 中
删除 Nuget C:\Users\[user]\AppData\Roaming\NuGet.config
文件夹 - 查看文件并查看所有 url 是否正常
Nuget.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>
令我好奇的是,它直到今天都运行良好。我没有对系统进行任何更改。