My wxs file content:
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Name="Sample" UpgradeCode="C8C5D724-FCDC-49b5-8556-4A95EC6F5B12" Version="1.0.0.0" Manufacturer="XXX">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
<bal:WixStandardBootstrapperApplication LicenseUrl="" SupressOptionsUI="yes" />
</BootstrapperApplicationRef>
<Chain>
<MsiPackage Id="msifcbovj12_lvw" Name="MSIFile" SourceFile="D:\MSIFile.msi" />
</Chain>
</Bundle>
</Wix>
When I run candle.exe I take the following error:
Error CNDL0200 : The BootstrapperApplicationRef element contains an unhandled extension element 'bal:WixStandardBootstrapperApplication'. Please ensure that the extension for elements in the 'http://schemas.microsoft.com/wix/BalExtension' namespace has been provided.
The URI http://schemas.microsoft.com/wix/BalExtension returns: "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
I've tried the alternative cited in http://sourceforge.net/p/wix/feature-requests/742/ but not resolved.
Have added the appropriate references of the libraries in my WixProject as wix installer schema not found, but not solved.
I'm almost giving up. Is this a bug?