diff --git a/builder/build.ps1 b/builder/build.ps1 index 3fcf1ba..fea0a1a 100644 --- a/builder/build.ps1 +++ b/builder/build.ps1 @@ -30,6 +30,9 @@ if ($Sign) { Write-Output "Building WinBGP service" & "..\service\WinBGP-Service.ps1" -Build +Get-ChildItem "..\service\" +Get-ChildItem "..\src\" + # Building engine Write-Output "Building engine" 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" $wixArch = @{"amd64" = "x64"; "arm64" = "arm64"}[$Arch]