gpt4 book ai didi

c# - Visual Studio 2019 更新中断发布(不正确的 TLS 版本)

转载 作者:行者123 更新时间:2023-12-05 07:02:13 27 4
gpt4 key购买 nike

简短版:

如何更改用于获取依赖项的 Visual Studio 2019 的默认 TLS 版本?

长版:

自 Visual Studio 2019 v16.7.1(最新的 v16.7.2 未修复此问题)起,我似乎无法发布任何 dotnet 核心项目。发布操作总是崩溃并显示以下消息:

Publish has encountered an error.
Publish has encountered an error. We were unable to determine the cause of the error.
Check the output log for more details.

查看输出窗口: error message

可以看出,VS 似乎无法尝试与 nuget 建立 TLS 连接。在发布时使用 Wireshark 进行监控的进一步调查揭示了这一点:

wireshark failing

可以清楚地看到,由于 TLS 版本不正确,连接失败。 Visual Studio 似乎使用了 nuget api 不支持的 TLSv1。我们还可以看到 VS 正在重试几次,因此有大量数据包。

手动连接到 https://api.nuget.org/v3/index.json使用我的网络浏览器显示 nuget.org 实际上使用 TLSv1.2:

wireshark success

所以我的问题是:如何告诉 Visual Studio 使用 TLSv1.2 而不是 TLSv1 来连接到 nuget.org?或者有可能吗?是否有用于此的 Windows 注册表项?

我还没有尝试重新安装 VS,但如果可能的话,我想避免这样做。

最佳答案

正如评论中指出的那样,设置以下注册表项:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp\
DefaultSecureProtocols = (DWORD): 0xAA0
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp\
DefaultSecureProtocols = (DWORD): 0xAA0

(更多文档 herehere )结合取消选中 Internet 选项 下的 Use TLS 1.0 选项 -> Windows 7 控制面板中的 Advanced 就可以了。

关于c# - Visual Studio 2019 更新中断发布(不正确的 TLS 版本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63596554/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com