Skip to content

Commit

Permalink
Trying a potential real Wix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Feb 17, 2024
1 parent 60639b9 commit 0b1ed2b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/scripts/build_msi.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,7 @@ copy ".\.github\resources\MSI Template.wxs" ".\"
& $Candle -dAppName=""$env:blt_name"" -dAppVersion=""$env:build_version"" -dAppVendor=""$env:blt_vendor"" -dAppUpgradeCode=""$env:blt_upgradecode"" -dAppDescription=""$env:blt_description"" -dAppVendorFolder=""$env:blt_vendor_folder"" -dAppIcon=""$env:blt_icon"" -nologo *.wxs -ext WixUIExtension -ext WixFirewallExtension -arch x64

#Compile MSI
#& $Light -b "Beat Link Trigger" -nologo "*.wixobj" -out ""$env:artifact_name"" -ext WixUIExtension -ext WixFirewallExtension
& $Light -b "Beat Link Trigger" -nologo "*.wixobj" -out "D:\a\beat-link-trigger\beat-link-trigger\Beat-Link-Trigger-7.4.0-Preview-Win64.msi" -ext WixUIExtension -ext WixFirewallExtension
$CurrentWorkingDir = (Get-Location).Path
$LightOutFile = $CurrentWorkingDir+"\"+$env:artifact_name
Write-Output "Compile MSI: -out $LightOutFile"
& $Light -b "Beat Link Trigger" -nologo "*.wixobj" -out ""$LightOutFile"" -ext WixUIExtension -ext WixFirewallExtension

0 comments on commit 0b1ed2b

Please sign in to comment.