Review build

This commit is contained in:
Alexandre JARDON
2025-03-15 09:26:26 +01:00
parent f682432188
commit b4b06f361e

View File

@@ -30,6 +30,9 @@ if ($Sign) {
Write-Output "Building WinBGP service" Write-Output "Building WinBGP service"
& "..\service\WinBGP-Service.ps1" -Build & "..\service\WinBGP-Service.ps1" -Build
Get-ChildItem "..\service\"
Get-ChildItem "..\src\"
# Building engine # Building engine
Write-Output "Building engine" Write-Output "Building engine"
Get-ChildItem -Path '..\src' | Where-Object {$_.Extension -eq '.ps1'} | ForEach-Object { Get-ChildItem -Path '..\src' | Where-Object {$_.Extension -eq '.ps1'} | ForEach-Object {
@@ -39,6 +42,8 @@ Get-ChildItem -Path '..\src' | Where-Object {$_.Extension -eq '.ps1'} | ForEach
} }
} }
Get-ChildItem "..\engine\"
Write-Output "Creating winbgp-${Version}-${Arch}.msi" Write-Output "Creating winbgp-${Version}-${Arch}.msi"
$wixArch = @{"amd64" = "x64"; "arm64" = "arm64"}[$Arch] $wixArch = @{"amd64" = "x64"; "arm64" = "arm64"}[$Arch]