Wix v4.preview.1 EXE/CLI not picking up extensions #7073
Unanswered
0xspeedybird
asked this question in
Questions
Replies: 1 comment 8 replies
-
Here is a reference with the full path to the extension DLL being used. I am hoping to understand what is the correct syntax. Thanks.
which led to this issue being resolved: |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I've tried to include the bal ext to build a burn bundle but no matter the arguments I supply, the build fails with the below error. Which syntax should work to create a bundle? Any pointers as to what is wrong?
error WIX0200: The BootstrapperApplication element contains an unhandled extension element 'WixStandardBootstrapperApplication'. Please ensure that the extension for elements in the 'http://wixtoolset.org/schemas/v4/wxs/bal' namespace has been provided.
My simple bundle (ignore space after opening tag, thats there due to Github but not in code):
< Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
Set up (run via Github actions after installing .NET:
`dotnet tool install --global wix --version 4.0.0-preview.1
wix extension add WixToolset.UI.wixext
wix extension add WixToolset.Util.wixext
wix extension add WixToolset.Bal.wixext`
Various attempts that all failed (notice the difference in the ext reference with the -ext flag):
wix build -src "$env:GITHUB_WORKSPACE\msi_build\Bundle.wxs" -d var.ProjectDir=$env:GITHUB_WORKSPACE\msi_build -ext WixToolset.Bal.wixext -o releases\SimpleBundle.msi
And -d variations:
-ext WixToolset.Bal.wixext.dll
and:
-ext $HOME\.nuget\packages\wixtoolset.bal.wixext\4.0.0-preview.1\wixext4\WixToolset.Bal.wixext.dll
When I last ran it today with "wix extension list", I got this which seemed noteworthy:
`WixToolset.Bal.wixext 4.0.0-preview.1 (damaged)
WixToolset.UI.wixext 4.0.0-preview.1-build.590 (damaged)
WixToolset.Util.wixext 4.0.0-preview.1-build.590 (damaged)`
Please note that I am able to build MSIs with the UI extensions in another process.
Beta Was this translation helpful? Give feedback.
All reactions