OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="Windows-1252"?> | |
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | |
3 <PatchCreation Id="E0D0D2C9-5836-4023-AB1D-54EC3B90AD03" | |
4 AllowMajorVersionMismatches="no" | |
5 AllowProductCodeMismatches="no" | |
6 CleanWorkingFolder="yes" | |
7 WholeFilesOnly="yes"> | |
8 | |
9 <PatchInformation | |
10 Description="Patches Google Update" | |
11 Comments="Copyright 2007-2010 Google Inc." | |
12 Keywords="Installer" | |
13 Manufacturer="Google Inc." | |
14 ShortNames="no" | |
15 Languages="1033" | |
16 Compressed="no" | |
17 SummaryCodepage="1252" /> | |
18 | |
19 <!--TODO(omaha): Use kUrlMoreInformation for MoreInfoURL.--> | |
20 <PatchMetadata | |
21 Description="Patches Google Update" | |
22 DisplayName="Google Update patch" | |
23 TargetProductName="Google Update" | |
24 ManufacturerName="Google Inc." | |
25 MoreInfoURL="http://www.google.com/support/installer/?patch" | |
26 Classification="Service Pack" | |
27 AllowRemoval="yes" /> | |
28 | |
29 <Family DiskId="2" MediaSrcProp="GoogleUpdatePatchSrcPropName" | |
30 Name="GoogleUp" SequenceStart="1000"> | |
31 <UpgradeImage Id="AfterImage" SourceFile="$(var.AfterImage)"> | |
32 <TargetImage Id="BeforeImage" SourceFile="$(var.BeforeImage)" | |
33 Order="2" IgnoreMissingFiles="no" /> | |
34 </UpgradeImage> | |
35 </Family> | |
36 | |
37 <TargetProductCode Id="A92DAB39-4E2C-4304-9AB6-BC44E68B55E2" /> | |
38 </PatchCreation> | |
39 </Wix> | |
OLD | NEW |