[wix-users] Something wrong with Wix V4 Bundle Project

manish.bhalodi at tech9.com manish.bhalodi at tech9.com
Mon Jan 2 02:46:17 PST 2023


Hi,

 

I am getting below error while Building Bundle Project using Visual studio
for Wix Version 4. 

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.

 

1.	I just created a new Bundle Project in the visual studio wix version
4 template.
2.	Added msi packages in the chain element.

 

I am successfully able to create & build MSI package project but I don't
know it is giving silly error for Bundle project. I don't have wix version 3
installed on my machine. First I thought it is building project with version
3. 

 

 

Below is the code for bundle.wxs. 

 

<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">

    <Bundle Name="Copilot Client" Manufacturer="eAssist Inc."
Version="1.0.0.0" UpgradeCode="d6450ccd-f224-4e23-a9d0-9d73d4bed85e">

        <BootstrapperApplication>

            <bal:WixStandardBootstrapperApplication
LicenseUrl="https://www.example.com/license" Theme="hyperlinkLicense" />

        </BootstrapperApplication>

        <Chain>

              <MsiPackage ....>

</MsiPackage>

              <MsiPackage ....>

                </MsiPackage>

        </Chain>

    </Bundle>

</Wix>

 

Below is the code for wixproj

 

<Project Sdk="WixToolset.Sdk/4.0.0-rc.1">

  <PropertyGroup>

    <OutputType>Bundle</OutputType>

  </PropertyGroup>

  <ItemGroup>

    <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.0-rc.1"
/>

  </ItemGroup>

</Project>

 

 

Let me know, If anything more required from my side.

Thanks,



More information about the wix-users mailing list