From 1c1dfba7e3a7830457bce9310d1081eda5de399f Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Wed, 19 Nov 2025 15:11:37 +0100 Subject: [PATCH] windows: Bundle freshers conpty.dll builds (#43066) Release Notes: - N/A *or* Added/Fixed/Improved ... --- script/bundle-windows.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bundle-windows.ps1 b/script/bundle-windows.ps1 index facb8d07ee65e04bbb12636620b23c9b1137aebb..67dfb5082233395c00f3575d8571d8d5f8520740 100644 --- a/script/bundle-windows.ps1 +++ b/script/bundle-windows.ps1 @@ -189,8 +189,8 @@ function DownloadAMDGpuServices { } function DownloadConpty { - $url = "https://www.nuget.org/api/v2/package/CI.Microsoft.Windows.Console.ConPTY/1.22.250314001" - $zipPath = ".\conpty.zip" + $url = "https://github.com/microsoft/terminal/releases/download/v1.23.12811.0/Microsoft.Windows.Console.ConPTY.1.23.251008001.nupkg" + $zipPath = ".\Microsoft.Windows.Console.ConPTY.1.23.251008001.nupkg" Invoke-WebRequest -Uri $url -OutFile $zipPath Expand-Archive -Path $zipPath -DestinationPath ".\conpty" -Force }