From 86e623015cb0e138cc8e45cb14060aef7ab5de11 Mon Sep 17 00:00:00 2001 From: Thomas Duvinage <43036801+ThomasDuvinage@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:14:10 +0900 Subject: [PATCH] [get-boost] correct WebClient call --- utils/get-boost.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/get-boost.ps1 b/utils/get-boost.ps1 index 7648b02..e68bc99 100644 --- a/utils/get-boost.ps1 +++ b/utils/get-boost.ps1 @@ -17,7 +17,7 @@ function DownloadFileWithRetry } try { - using (WebClient wc = new WebClient()) + using (WebClient wc = new System.Net.WebClient()) { wc.Headers.Add("User-Agent: Other"); wc.DownloadFile($Url, $Out);