Skip to content

Commit

Permalink
"dotnet tool run" because dotnet tools are not on path in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mthierman committed Jun 3, 2024
1 parent d9f2cc2 commit 976ac19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/PowerShell/PowerShell.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ function Compress-Airglow
function Restore-Wix
{
dotnet tool restore
wix extension add WixToolset.UI.wixext/5.0.0
wix extension add WixToolset.BootstrapperApplications.wixext/5.0.0
dotnet tool run wix extension add WixToolset.UI.wixext/5.0.0
dotnet tool run wix extension add WixToolset.BootstrapperApplications.wixext/5.0.0
}

function Build-AirglowInstaller
{
wix build tools\installer\msi.wxs -o build/Airglow.msi -ext WixToolset.UI.wixext
wix build tools\installer\bundle.wxs -o build/Airglow.exe -ext WixToolset.BootstrapperApplications.wixext
dotnet tool run wix build tools\installer\msi.wxs -o build/Airglow.msi -ext WixToolset.UI.wixext
dotnet tool run wix build tools\installer\bundle.wxs -o build/Airglow.exe -ext WixToolset.BootstrapperApplications.wixext
}

function Publish-Airglow
Expand Down

0 comments on commit 976ac19

Please sign in to comment.