From 50622e529eb4469521a24677f035d26f6cd17419 Mon Sep 17 00:00:00 2001 From: dilanbhalla <35575727+dilanbhalla@users.noreply.github.com> Date: Thu, 15 May 2025 12:16:53 -0700 Subject: [PATCH 1/3] Update build-linux64.ps1 --- powershell/build-linux64.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powershell/build-linux64.ps1 b/powershell/build-linux64.ps1 index 2bfa2c9880c..1f51afbfb40 100644 --- a/powershell/build-linux64.ps1 +++ b/powershell/build-linux64.ps1 @@ -3,7 +3,7 @@ param ( ) $toolsLinux64Folder = Join-Path (Join-Path (Join-Path $cliFolder "powershell") "tools") "linux64" -dotnet publish (Join-Path "$PSScriptRoot/extractor" "powershell.sln" | Resolve-Path) -o $toolsLinux64Folder -r linux-x64 +dotnet publish (Join-Path "$PSScriptRoot/extractor" "powershell.sln" | Resolve-Path) -o $toolsLinux64Folder -r linux-x64 -c Release --self-contained if ($LASTEXITCODE -ne 0) { Write-Host "Build failed" exit 1 From 77e6056665c02730b4c816ba87f24ce7b42550ba Mon Sep 17 00:00:00 2001 From: dilanbhalla <35575727+dilanbhalla@users.noreply.github.com> Date: Thu, 15 May 2025 12:18:07 -0700 Subject: [PATCH 2/3] Update build-osx64.ps1 --- powershell/build-osx64.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powershell/build-osx64.ps1 b/powershell/build-osx64.ps1 index 55877ceef6e..579b60295bb 100644 --- a/powershell/build-osx64.ps1 +++ b/powershell/build-osx64.ps1 @@ -3,7 +3,7 @@ param ( ) $toolsOsx64Folder = Join-Path (Join-Path (Join-Path $cliFolder "powershell") "tools") "osx64" -dotnet publish (Join-Path "$PSScriptRoot/extractor" "powershell.sln" | Resolve-Path) -o $toolsOsx64Folder -r osx-x64 +dotnet publish (Join-Path "$PSScriptRoot/extractor" "powershell.sln" | Resolve-Path) -o $toolsOsx64Folder -r osx-x64 -c Release --self-contained if ($LASTEXITCODE -ne 0) { Write-Host "Build failed" exit 1 From 5127ace92cdfef89251c6fe00fb679b71c1f3d23 Mon Sep 17 00:00:00 2001 From: dilanbhalla <35575727+dilanbhalla@users.noreply.github.com> Date: Thu, 15 May 2025 12:18:19 -0700 Subject: [PATCH 3/3] 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 26268167f4b..43e5e71887e 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 -r win-x64 +dotnet publish (Join-Path "$PSScriptRoot/extractor" "powershell.sln" | Resolve-Path) -o $toolsWin64Folder -r win-x64 -c Release --self-contained if ($LASTEXITCODE -ne 0) { Write-Host "Build failed" exit 1