aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-10-23 17:32:44 -0400
committerBob Arnson <bob@firegiant.com>2020-10-24 19:44:44 -0400
commit8b5505cd13367d48bce4ec8a6018e370ed3755b1 (patch)
tree97fb50229aff208bce91b160d11ffeee9b1e783a /src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs
parent95188080c8005c01c39bb071459b36f8660bcfcd (diff)
downloadwix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.tar.gz
wix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.tar.bz2
wix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.zip
Reorganize Product/Package to Package/SummaryInformation.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs b/src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs
index 63ab5cd3..82258c57 100644
--- a/src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Names.cs
@@ -8,10 +8,12 @@ namespace WixToolset.Core.WindowsInstaller.Decompile
8 8
9 public static readonly XName WixElement = WxsNamespace + "Wix"; 9 public static readonly XName WixElement = WxsNamespace + "Wix";
10 10
11 public static readonly XName ProductElement = WxsNamespace + "Product"; 11 public static readonly XName PackageElement = WxsNamespace + "Package";
12 public static readonly XName ModuleElement = WxsNamespace + "Module"; 12 public static readonly XName ModuleElement = WxsNamespace + "Module";
13 public static readonly XName PatchCreationElement = WxsNamespace + "PatchCreation"; 13 public static readonly XName PatchCreationElement = WxsNamespace + "PatchCreation";
14 14
15 public static readonly XName SummaryInformationElement = WxsNamespace + "SummaryInformation";
16
15 public static readonly XName CustomElement = WxsNamespace + "Custom"; 17 public static readonly XName CustomElement = WxsNamespace + "Custom";
16 18
17 public static readonly XName AdminExecuteSequenceElement = WxsNamespace + "AdminExecuteSequence"; 19 public static readonly XName AdminExecuteSequenceElement = WxsNamespace + "AdminExecuteSequence";
@@ -30,9 +32,8 @@ namespace WixToolset.Core.WindowsInstaller.Decompile
30 public static readonly XName FileElement = WxsNamespace + "File"; 32 public static readonly XName FileElement = WxsNamespace + "File";
31 33
32 public static readonly XName EnsureTableElement = WxsNamespace + "EnsureTable"; 34 public static readonly XName EnsureTableElement = WxsNamespace + "EnsureTable";
33 public static readonly XName PackageElement = WxsNamespace + "Package";
34 public static readonly XName PatchInformationElement = WxsNamespace + "PatchInformation"; 35 public static readonly XName PatchInformationElement = WxsNamespace + "PatchInformation";
35 36
36 public static readonly XName ProgressTextElement = WxsNamespace + "ProgressText"; 37 public static readonly XName ProgressTextElement = WxsNamespace + "ProgressText";
37 public static readonly XName UIElement = WxsNamespace + "UI"; 38 public static readonly XName UIElement = WxsNamespace + "UI";
38 39