I used wix bootstrapper extended aplication and wixballextentionExt.dll for making radio button sellection but I can't change logo because ı cant use old ballextention.dll. How can I change logo with balextentionEXT. What is WixVariable ıd for logo ı find license and theme but cant find logo.
<BootstrapperApplicationRef Id="WixExtendedBootstrapperApplication.RtfLicense" >
<Payload SourceFile="Logo.png"/>
<Payload SourceFile="LogoSide.png"/>
<Payload Name="1033\thm.wxl" Compressed="yes" SourceFile="1033\thm.wxl" />
</BootstrapperApplicationRef>
<WixVariable Id="WixExtbaThemeXml" Value="thm.xml" />
<WixVariable Id="WixExtbaLicenseRtf" Value="Resources\EULA.rtf" />
<Variable Name="RadioClient" Type="numeric" Value="0" />
<Variable Name="RadioServer" Type="numeric" Value="0" />
<Variable Name="RadioFull" Type="numeric" Value="1" />
in the old balextention.dll I used this code but now ı cant use it.
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
<bal:WixStandardBootstrapperApplication LicenseUrl="Resources\EULA.rtf" ThemeFile="thm.xml"
LicenseFile="Resources\EULA.rtf"
LogoFile="Resources\icon.png" LogoSideFile="Resources\icon.ico"
/>
<Payload Name="1033\thm.wxl" SourceFile="1033\thm.wxl" />
</BootstrapperApplicationRef>
I find solution this is from BalCompiler.cs
Now ı can client database and full installation with Wix extended application.