Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: WixInstaller/setup.wxs

Issue 10977019: Initial version of bootstrapper; no UI customization (Closed)
Patch Set: Created June 18, 2013, 12:35 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0"?>
2 <!--
3 This version check is less extensive than the one than in the MSI source cod e.
4 We partly rely on that it's already set up correctly for building the MSI fi les correctly.
5 -->
6 <?ifndef Version ?>
7 <?error No definition for WiX variable "Version" ?>
8 <?endif?>
9
10 <Wix
11 xmlns="http://schemas.microsoft.com/wix/2006/wi"
12 xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"
13 >
14 <!--
15 'burn' requires its own UpgradeCode, as if it supports its own MajorUpgr ade.
16 No good documentation for what it does, though.
17 -->
18 <Bundle
19 Version="$(var.Version)"
20 UpgradeCode="{17B47941-606A-456C-A225-FB597B05DA77}"
21 >
22 <!--
23 This is a reference to the standard UI library.
24 When we replace the UI, we should be sure to change this symbol in b oth places to avoid inadvertently linking to the wrong object.
25 -->
26 <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.Hyper linkLicense">
27 <!--
28 The way to suppress the license in the UI sequence is to set the URL attribute to an empty string
29 and to leave out the file attribute entirely.
30 Not exactly a very expressive way of getting this result.
31 -->
32 <bal:WixStandardBootstrapperApplication
33 LicenseUrl=""
34 />
35 </BootstrapperApplicationRef>
36 <Chain>
37 <!--
38 Note that use have DisplayInternalUI turned on.
39 This avoids much (but not all) of the need to deal with the undo cumented 'burn' UI facility.
40 -->
41 <MsiPackage
42 DisplayName="Adblock Plus for IE (ia32)"
43 DisplayInternalUI="yes"
44 Visible="yes"
45 SourceFile="..\build\ia32\adblockplusie-$(var.Version)-en-us-ia3 2.msi"
46 InstallCondition="Not VersionNT64"
47 />
48 <MsiPackage
49 DisplayName="Adblock Plus for IE (x64)"
50 DisplayInternalUI="yes"
51 Visible="yes"
52 SourceFile="..\build\x64\adblockplusie-$(var.Version)-en-us-x64. msi"
53 InstallCondition="VersionNT64"
54 />
55 </Chain>
56 </Bundle>
57 </Wix>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld