From 0fab231c336b5c6758674b64a1420cf444e5ea46 Mon Sep 17 00:00:00 2001 From: dilanbhalla <35575727+dilanbhalla@users.noreply.github.com> Date: Thu, 15 May 2025 11:58:26 -0700 Subject: [PATCH] Update build-win64.ps1 --- powershell/build-win64.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powershell/build-win64.ps1 b/powershell/build-win64.ps1 index bd123b938fd..26268167f4b 100644 --- a/powershell/build-win64.ps1 +++ b/powershell/build-win64.ps1 @@ -3,7 +3,7 @@ param ( ) $toolsWin64Folder = Join-Path (Join-Path (Join-Path $cliFolder "powershell") "tools") "win64" -dotnet publish (Join-Path "$PSScriptRoot/extractor" "powershell.sln" | Resolve-Path) -o $toolsWin64Folder +dotnet publish (Join-Path "$PSScriptRoot/extractor" "powershell.sln" | Resolve-Path) -o $toolsWin64Folder -r win-x64 if ($LASTEXITCODE -ne 0) { Write-Host "Build failed" exit 1