Reputation: 147
I have a Wix bundle project running under version 5 The first line is
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
and later I have
<BootstrapperApplication>
<bal:WixStandardBootstrapperApplication LicenseFile="$(var.BuildResourceSource)\!(loc.Culture)\Licence.rtf" Theme="rtfLicense"/>
When I compile it I get
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.
I have included the library as a dependency and added it to the package cache. Can someone point me at what I need to do? Thank you
Upvotes: 0
Views: 25
Reputation: 147
Adding
<Target Name="CollectSuggestedVisualStudioComponentIds" />
to the project file seems to have cured
Upvotes: 0