From d6b45d36405c2003715adb75316ce568a13b6eca Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Tue, 17 Feb 2026 13:38:47 +0000 Subject: [PATCH] Fix .NET SDK CLI download timeout Increase the default timeout for downloading the Copilot CLI tarball from 100s (the HttpClient default) to 600s (10 minutes) to handle slow or unreliable network conditions. The timeout is configurable via the CopilotCliDownloadTimeout MSBuild property. Fixes #451 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- dotnet/src/build/GitHub.Copilot.SDK.targets | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dotnet/src/build/GitHub.Copilot.SDK.targets b/dotnet/src/build/GitHub.Copilot.SDK.targets index 4f7f8cb4..bdf24af8 100644 --- a/dotnet/src/build/GitHub.Copilot.SDK.targets +++ b/dotnet/src/build/GitHub.Copilot.SDK.targets @@ -48,6 +48,13 @@ https://registry.npmjs.org + + + 600 + + @@ -68,6 +75,7 @@