Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update wixstdba_branding.md with corrected xml example #275

Merged
merged 2 commits into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Now you can add an install condition to the package so that it only installs on
InstallCommand="/q /ACTION=Install"
RepairCommand="/q ACTION=Repair /hideconsole"
UninstallCommand="/q ACTION=Uninstall /hideconsole"
<strong class="highlight">InstallCondition="NOT VersionNT64 AND VersionNT >= v5.1"</strong> />
InstallCondition="NOT VersionNT64 AND VersionNT >= v5.1" />
</PackageGroup>
</Fragment>
</Wix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ After the searches are defined and stored into variables, the variables can then
InstallCommand="/q /ACTION=Install"
RepairCommand="/q ACTION=Repair /hideconsole"
UninstallCommand="/q ACTION=Uninstall /hideconsole"
InstallCondition="x86 = 1 AND OSVersion >= v5.0.5121.0 <strong class="highlight">AND patchLevel = 0</strong>" />
InstallCondition="x86 = 1 AND OSVersion >= v5.0.5121.0 AND patchLevel = 0" />
</PackageGroup>
</Fragment>
</Wix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The WiX Standard Bootstrapper Application displays a generic logo in the bottom
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
<bal:WixStandardBootstrapperApplication
LicenseFile="path\to\license.rtf"
<strong class="highlight">LogoFile="path\to\customlogo.png"</strong>
LogoFile="path\to\customlogo.png"
/>
</BootstrapperApplicationRef>

Expand All @@ -36,8 +36,9 @@ For the HyperlinkSidebarLicense UI, there are two logos and they can be configur
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkSidebarLicense">
<bal:WixStandardBootstrapperApplication
LicenseUrl="License.htm"
<strong class="highlight">LogoFile="path\to\customlogo.png" LogoSideFile="path\to\customsidelogo.png"</strong>
/>
LogoFile="path\to\customlogo.png"
LogoSideFile="path\to\customsidelogo.png"
/>
</BootstrapperApplicationRef>

<Chain>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ When using a WixStdBA theme that displays the RTF license, it is highly recommen
<Bundle>
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
<bal:WixStandardBootstrapperApplication
<strong class="highlight">LicenseFile="path\to\license.rtf"</strong>
LicenseFile="path\to\license.rtf"
LogoFile="path\to\customlogo.png"
/>
</BootstrapperApplicationRef>
Expand All @@ -35,7 +35,7 @@ The following example links to a license page on the internet.
<Bundle>
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
<bal:WixStandardBootstrapperApplication
<strong class="highlight">LicenseUrl="http://example.com/license.html"</strong>
LicenseUrl="http://example.com/license.html"
LogoFile="path\to\customlogo.png"
/>
</BootstrapperApplicationRef>
Expand Down
Loading