Skip to content

Commit

Permalink
create windows msi
Browse files Browse the repository at this point in the history
  • Loading branch information
dphulkar-msft committed Nov 7, 2024
1 parent f04a07d commit 0de3c25
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions setup/create_windows_msi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,13 @@ steps:
Write-Host "Compiling .wxs file..."
& "$wixToolsPath\candle.exe" -out $wixObjPath $wxsFilePath
# Step 4: Link the .wixobj to create the MSI using Light
Write-Host "Linking to create MSI..."
& "$wixToolsPath\light.exe" -out $outputMsi $wixObjPath
# # Step 4: Link the .wixobj to create the MSI using Light
# Write-Host "Linking to create MSI..."
# & "$wixToolsPath\light.exe" -out $outputMsi $wixObjPath
# Step 4: Link the .wixobj to create the MSI using Light with embedded CAB files
Write-Host "Linking to create MSI with embedded CAB..."
& "$wixToolsPath\light.exe" -out $outputMsi $wixObjPath -cc
Write-Host "MSI creation with embedded CAB completed!"
Write-Host "MSI creation process completed!"

0 comments on commit 0de3c25

Please sign in to comment.