aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-12-19 12:24:16 -0800
committerRob Mensching <rob@firegiant.com>2017-12-19 12:24:16 -0800
commitf680e915f065026efd0301a76fd524f87b8c5f06 (patch)
tree63b6a8d7b799b10d77e133209041a809f4f3d144 /src
parent77dc8cd1acd5332aa0cb077c7e87d0678756969b (diff)
downloadwix-f680e915f065026efd0301a76fd524f87b8c5f06.tar.gz
wix-f680e915f065026efd0301a76fd524f87b8c5f06.tar.bz2
wix-f680e915f065026efd0301a76fd524f87b8c5f06.zip
Simplify message handling
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Data/Bind/FileTransfer.cs14
-rw-r--r--src/WixToolset.Data/Data/WixToolset.Data.Data.messages.resourcesbin3589 -> 0 bytes
-rw-r--r--src/WixToolset.Data/Data/WixToolset.Data.WixDataStrings.resourcesbin3481 -> 0 bytes
-rw-r--r--src/WixToolset.Data/Data/Xsd/actions.xsd73
-rw-r--r--src/WixToolset.Data/Data/Xsd/tables.xsd248
-rw-r--r--src/WixToolset.Data/Data/messages.cs118
-rw-r--r--src/WixToolset.Data/Data/messages.xml4033
-rw-r--r--src/WixToolset.Data/Data/messages.xml.old107
-rw-r--r--src/WixToolset.Data/DuplicateSymbolsException.cs37
-rw-r--r--src/WixToolset.Data/ErrorMessages.cs2615
-rw-r--r--src/WixToolset.Data/IMessageHandler.cs18
-rw-r--r--src/WixToolset.Data/Intermediate.cs2
-rw-r--r--src/WixToolset.Data/Localization.cs2
-rw-r--r--src/WixToolset.Data/Message.cs110
-rw-r--r--src/WixToolset.Data/MessageEventArgs.cs176
-rw-r--r--src/WixToolset.Data/Messaging.cs173
-rw-r--r--src/WixToolset.Data/Serialize/wix.cs (renamed from src/WixToolset.Data/Data/Xsd/wix.cs)0
-rw-r--r--src/WixToolset.Data/Symbol.cs8
-rw-r--r--src/WixToolset.Data/Tuples/FileTuple.cs12
-rw-r--r--src/WixToolset.Data/Tuples/_ByHandComponentTuple.cs55
-rw-r--r--src/WixToolset.Data/Tuples/_ByHandFileTuple.cs88
-rw-r--r--src/WixToolset.Data/Tuples/_ByHandTupleDefinitions.cs55
-rw-r--r--src/WixToolset.Data/VerboseMessages.cs234
-rw-r--r--src/WixToolset.Data/WarningMessages.cs778
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Output.cs2
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Pdb.cs2
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Rows/FileRow.cs2
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Table.cs2
-rw-r--r--src/WixToolset.Data/WindowsInstaller/TableDefinition.cs2
-rw-r--r--src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs2
-rw-r--r--src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs2
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Xsd/libraries.xsd (renamed from src/WixToolset.Data/Data/Xsd/libraries.xsd)0
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Xsd/objects.xsd (renamed from src/WixToolset.Data/Data/Xsd/objects.xsd)0
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Xsd/outputs.xsd (renamed from src/WixToolset.Data/Data/Xsd/outputs.xsd)0
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Xsd/pdbs.xsd (renamed from src/WixToolset.Data/Data/Xsd/pdbs.xsd)0
-rw-r--r--src/WixToolset.Data/WixCorruptFileException.cs6
-rw-r--r--src/WixToolset.Data/WixDataStrings.Designer.cs126
-rw-r--r--src/WixToolset.Data/WixDataStrings.resx42
-rw-r--r--src/WixToolset.Data/WixException.cs15
-rw-r--r--src/WixToolset.Data/WixUnexpectedFileFormatException.cs6
40 files changed, 7807 insertions, 1358 deletions
diff --git a/src/WixToolset.Data/Bind/FileTransfer.cs b/src/WixToolset.Data/Bind/FileTransfer.cs
index 178934e8..088146d1 100644
--- a/src/WixToolset.Data/Bind/FileTransfer.cs
+++ b/src/WixToolset.Data/Bind/FileTransfer.cs
@@ -86,23 +86,23 @@ namespace WixToolset.Data.Bind
86 { 86 {
87 result = Path.GetFullPath(path); 87 result = Path.GetFullPath(path);
88 88
89 string filename = Path.GetFileName(result); 89 var filename = Path.GetFileName(result);
90 90
91 foreach (string reservedName in Common.ReservedFileNames) 91 foreach (var reservedName in Common.ReservedFileNames)
92 { 92 {
93 if (reservedName.Equals(filename, StringComparison.OrdinalIgnoreCase)) 93 if (reservedName.Equals(filename, StringComparison.OrdinalIgnoreCase))
94 { 94 {
95 throw new WixException(WixDataErrors.InvalidFileName(sourceLineNumbers, path)); 95 throw new WixException(ErrorMessages.InvalidFileName(sourceLineNumbers, path));
96 } 96 }
97 } 97 }
98 } 98 }
99 catch (System.ArgumentException) 99 catch (ArgumentException)
100 { 100 {
101 throw new WixException(WixDataErrors.InvalidFileName(sourceLineNumbers, path)); 101 throw new WixException(ErrorMessages.InvalidFileName(sourceLineNumbers, path));
102 } 102 }
103 catch (System.IO.PathTooLongException) 103 catch (PathTooLongException)
104 { 104 {
105 throw new WixException(WixDataErrors.PathTooLong(sourceLineNumbers, path)); 105 throw new WixException(ErrorMessages.PathTooLong(sourceLineNumbers, path));
106 } 106 }
107 107
108 return result; 108 return result;
diff --git a/src/WixToolset.Data/Data/WixToolset.Data.Data.messages.resources b/src/WixToolset.Data/Data/WixToolset.Data.Data.messages.resources
deleted file mode 100644
index 1d986cdf..00000000
--- a/src/WixToolset.Data/Data/WixToolset.Data.Data.messages.resources
+++ /dev/null
Binary files differ
diff --git a/src/WixToolset.Data/Data/WixToolset.Data.WixDataStrings.resources b/src/WixToolset.Data/Data/WixToolset.Data.WixDataStrings.resources
deleted file mode 100644
index 2463303e..00000000
--- a/src/WixToolset.Data/Data/WixToolset.Data.WixDataStrings.resources
+++ /dev/null
Binary files differ
diff --git a/src/WixToolset.Data/Data/Xsd/actions.xsd b/src/WixToolset.Data/Data/Xsd/actions.xsd
deleted file mode 100644
index bf0ccb95..00000000
--- a/src/WixToolset.Data/Data/Xsd/actions.xsd
+++ /dev/null
@@ -1,73 +0,0 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4
5<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
6 targetNamespace="http://wixtoolset.org/schemas/v4/wi/actions"
7 xmlns="http://wixtoolset.org/schemas/v4/wi/actions">
8 <xs:annotation>
9 <xs:documentation>
10 Schema for describing standard actions in the Windows Installer.
11 </xs:documentation>
12 </xs:annotation>
13
14 <xs:element name="actions">
15 <xs:complexType>
16 <xs:sequence maxOccurs="unbounded">
17 <xs:element ref="action" />
18 </xs:sequence>
19 </xs:complexType>
20 </xs:element>
21
22 <xs:element name="action">
23 <xs:complexType>
24 <xs:attribute name="name" type="xs:string" use="required">
25 <xs:annotation>
26 <xs:documentation>Name of action</xs:documentation>
27 </xs:annotation>
28 </xs:attribute>
29 <xs:attribute name="condition" type="xs:string">
30 <xs:annotation>
31 <xs:documentation>Default condition for action</xs:documentation>
32 </xs:annotation>
33 </xs:attribute>
34 <xs:attribute name="sequence" type="xs:integer" use="required">
35 <xs:annotation>
36 <xs:documentation>Sequence of action</xs:documentation>
37 </xs:annotation>
38 </xs:attribute>
39 <xs:attribute name="AdminExecuteSequence" type="ActionsYesNoType">
40 <xs:annotation>
41 <xs:documentation>Specifies if action is allowed in AdminExecuteSequence</xs:documentation>
42 </xs:annotation>
43 </xs:attribute>
44 <xs:attribute name="AdminUISequence" type="ActionsYesNoType">
45 <xs:annotation>
46 <xs:documentation>Specifies if action is allowed in AdminUISequence</xs:documentation>
47 </xs:annotation>
48 </xs:attribute>
49 <xs:attribute name="AdvtExecuteSequence" type="ActionsYesNoType">
50 <xs:annotation>
51 <xs:documentation>Specifies if action is allowed in AdvtExecuteSequence</xs:documentation>
52 </xs:annotation>
53 </xs:attribute>
54 <xs:attribute name="InstallExecuteSequence" type="ActionsYesNoType">
55 <xs:annotation>
56 <xs:documentation>Specifies if action is allowed in InstallExecuteSequence</xs:documentation>
57 </xs:annotation>
58 </xs:attribute>
59 <xs:attribute name="InstallUISequence" type="ActionsYesNoType">
60 <xs:annotation>
61 <xs:documentation>Specifies if action is allowed in InstallUISequence</xs:documentation>
62 </xs:annotation>
63 </xs:attribute>
64 </xs:complexType>
65 </xs:element>
66
67 <xs:simpleType name="ActionsYesNoType">
68 <xs:restriction base="xs:NMTOKEN">
69 <xs:enumeration value="no" />
70 <xs:enumeration value="yes" />
71 </xs:restriction>
72 </xs:simpleType>
73</xs:schema>
diff --git a/src/WixToolset.Data/Data/Xsd/tables.xsd b/src/WixToolset.Data/Data/Xsd/tables.xsd
deleted file mode 100644
index f87471bb..00000000
--- a/src/WixToolset.Data/Data/Xsd/tables.xsd
+++ /dev/null
@@ -1,248 +0,0 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4
5<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
6 targetNamespace="http://wixtoolset.org/schemas/v4/wi/tables"
7 xmlns="http://wixtoolset.org/schemas/v4/wi/tables">
8 <xs:annotation>
9 <xs:documentation>
10 Schema for describing table definitions in Windows Installer.
11 </xs:documentation>
12 </xs:annotation>
13
14 <xs:element name="tableDefinitions">
15 <xs:complexType>
16 <xs:sequence maxOccurs="unbounded">
17 <xs:element ref="tableDefinition" />
18 </xs:sequence>
19 </xs:complexType>
20 </xs:element>
21
22 <xs:element name="tableDefinition">
23 <xs:complexType>
24 <xs:sequence maxOccurs="unbounded">
25 <xs:element ref="columnDefinition" />
26 </xs:sequence>
27 <xs:attribute name="createSymbols" type="TablesYesNoType">
28 <xs:annotation>
29 <xs:documentation>Boolean whether rows in this table create symbols</xs:documentation>
30 </xs:annotation>
31 </xs:attribute>
32 <xs:attribute name="name" type="NameType" use="required">
33 <xs:annotation>
34 <xs:documentation>Name of table in Windows Installer database</xs:documentation>
35 </xs:annotation>
36 </xs:attribute>
37 <xs:attribute name="unreal" type="TablesYesNoType">
38 <xs:annotation>
39 <xs:documentation>Specifies if table is virtual or not</xs:documentation>
40 </xs:annotation>
41 </xs:attribute>
42 <xs:attribute name="bootstrapperApplicationData" type="TablesYesNoType">
43 <xs:annotation>
44 <xs:documentation>Specifies if the table is a part of the Bootstrapper Application Data manifest</xs:documentation>
45 </xs:annotation>
46 </xs:attribute>
47 </xs:complexType>
48 </xs:element>
49
50 <xs:element name="columnDefinition">
51 <xs:complexType>
52 <xs:attribute name="name" type="NameType" use="required">
53 <xs:annotation>
54 <xs:documentation>Name of column in Windows Installer table</xs:documentation>
55 </xs:annotation>
56 </xs:attribute>
57
58 <xs:attribute name="added" type="TablesYesNoType">
59 <xs:annotation>
60 <xs:documentation>Whether this column was added by a transform.</xs:documentation>
61 </xs:annotation>
62 </xs:attribute>
63
64 <xs:attribute name="type" type="ColumnDefinitionType" use="required">
65 <xs:annotation>
66 <xs:documentation>Type of column in Windows Installer table</xs:documentation>
67 </xs:annotation>
68 </xs:attribute>
69
70 <xs:attribute name="length" use="required">
71 <xs:annotation>
72 <xs:documentation>Type of column in Windows Installer table</xs:documentation>
73 </xs:annotation>
74 <xs:simpleType>
75 <xs:restriction base="xs:integer">
76 <xs:minInclusive value="0" />
77 <xs:maxInclusive value="255" />
78 </xs:restriction>
79 </xs:simpleType>
80 </xs:attribute>
81
82 <xs:attribute name="primaryKey" type="TablesYesNoType">
83 <xs:annotation>
84 <xs:documentation>Boolean whether column is primary key of Windows Installer table</xs:documentation>
85 </xs:annotation>
86 </xs:attribute>
87
88 <xs:attribute name="nullable" type="TablesYesNoType">
89 <xs:annotation>
90 <xs:documentation>Boolean whether column is nullable in Windows Installer table</xs:documentation>
91 </xs:annotation>
92 </xs:attribute>
93
94 <xs:attribute name="unreal" type="TablesYesNoType">
95 <xs:annotation>
96 <xs:documentation>Boolean whether column is virtual in Windows Installer table</xs:documentation>
97 </xs:annotation>
98 </xs:attribute>
99
100 <xs:attribute name="modularize" type="TablesModularizeType">
101 <xs:annotation>
102 <xs:documentation>Enumeration specifying how column should have the ModuleId appended</xs:documentation>
103 </xs:annotation>
104 </xs:attribute>
105
106 <xs:attribute name="localizable" type="TablesYesNoType">
107 <xs:annotation>
108 <xs:documentation>Set to "yes" in order to allow substitution for localized variables.</xs:documentation>
109 </xs:annotation>
110 </xs:attribute>
111
112 <xs:attribute name="minValue" type="xs:long">
113 <xs:annotation>
114 <xs:documentation>Minimum value for column in Windows Installer table</xs:documentation>
115 </xs:annotation>
116 </xs:attribute>
117
118 <xs:attribute name="maxValue" type="xs:long">
119 <xs:annotation>
120 <xs:documentation>Maximum value for column in Windows Installer table</xs:documentation>
121 </xs:annotation>
122 </xs:attribute>
123
124 <xs:attribute name="keyTable" type="NameType">
125 <xs:annotation>
126 <xs:documentation>Foreign key table for column in Windows Installer table</xs:documentation>
127 </xs:annotation>
128 </xs:attribute>
129
130 <xs:attribute name="keyColumn">
131 <xs:annotation>
132 <xs:documentation>Maximum value for column in Windows Installer table</xs:documentation>
133 </xs:annotation>
134 <xs:simpleType>
135 <xs:restriction base="xs:integer">
136 <xs:minInclusive value="1" />
137 <xs:maxInclusive value="32" />
138 </xs:restriction>
139 </xs:simpleType>
140 </xs:attribute>
141
142 <xs:attribute name="category" type="TablesCategoryType">
143 <xs:annotation>
144 <xs:documentation>Specific column data types for column</xs:documentation>
145 </xs:annotation>
146 </xs:attribute>
147
148 <xs:attribute name="set" type="TablesSetType">
149 <xs:annotation>
150 <xs:documentation>List of permissible values for the column</xs:documentation>
151 </xs:annotation>
152 </xs:attribute>
153
154 <xs:attribute name="description" type="xs:string">
155 <xs:annotation>
156 <xs:documentation>Description of column</xs:documentation>
157 </xs:annotation>
158 </xs:attribute>
159
160 <xs:attribute name="escapeIdtCharacters" type="TablesYesNoType">
161 <xs:annotation>
162 <xs:documentation>Set to "yes" in order to make the idt exporter escape whitespace characters \r, \n, and \t.</xs:documentation>
163 </xs:annotation>
164 </xs:attribute>
165
166 <xs:attribute name="useCData" type="TablesYesNoType">
167 <xs:annotation>
168 <xs:documentation>Set to "yes" in order to make the Intermediate and Output objects wrap their data in a CDATA element to preserve whitespace.</xs:documentation>
169 </xs:annotation>
170 </xs:attribute>
171 </xs:complexType>
172 </xs:element>
173
174 <xs:simpleType name="NameType">
175 <xs:restriction base="xs:string">
176 <xs:minLength value="1" />
177 <xs:maxLength value="64" />
178 </xs:restriction>
179 </xs:simpleType>
180
181 <xs:simpleType name="ColumnDefinitionType">
182 <xs:restriction base="xs:NMTOKEN">
183 <xs:enumeration value="string" />
184 <xs:enumeration value="localized" />
185 <xs:enumeration value="number" />
186 <xs:enumeration value="object" />
187 <xs:enumeration value="preserved" />
188 </xs:restriction>
189 </xs:simpleType>
190
191 <xs:simpleType name="TablesYesNoType">
192 <xs:restriction base="xs:NMTOKEN">
193 <xs:enumeration value="yes" />
194 <xs:enumeration value="no" />
195 </xs:restriction>
196 </xs:simpleType>
197
198 <xs:simpleType name="TablesModularizeType">
199 <xs:restriction base="xs:NMTOKEN">
200 <xs:enumeration value="column" />
201 <xs:enumeration value="companionFile" />
202 <xs:enumeration value="condition" />
203 <xs:enumeration value="controlEventArgument" />
204 <xs:enumeration value="controlText" />
205 <xs:enumeration value="icon" />
206 <xs:enumeration value="none" />
207 <xs:enumeration value="property" />
208 <xs:enumeration value="semicolonDelimited" />
209 </xs:restriction>
210 </xs:simpleType>
211
212 <xs:simpleType name="TablesCategoryType">
213 <xs:restriction base="xs:NMTOKEN">
214 <xs:enumeration value="text" />
215 <xs:enumeration value="upperCase" />
216 <xs:enumeration value="lowerCase" />
217 <xs:enumeration value="integer" />
218 <xs:enumeration value="doubleInteger" />
219 <xs:enumeration value="timeDate" />
220 <xs:enumeration value="identifier" />
221 <xs:enumeration value="property" />
222 <xs:enumeration value="filename" />
223 <xs:enumeration value="wildCardFilename" />
224 <xs:enumeration value="path" />
225 <xs:enumeration value="paths" />
226 <xs:enumeration value="anyPath" />
227 <xs:enumeration value="defaultDir" />
228 <xs:enumeration value="regPath" />
229 <xs:enumeration value="formatted" />
230 <xs:enumeration value="formattedSddl" />
231 <xs:enumeration value="template" />
232 <xs:enumeration value="condition" />
233 <xs:enumeration value="guid" />
234 <xs:enumeration value="version" />
235 <xs:enumeration value="language" />
236 <xs:enumeration value="binary" />
237 <xs:enumeration value="customSource" />
238 <xs:enumeration value="cabinet" />
239 <xs:enumeration value="shortcut" />
240 </xs:restriction>
241 </xs:simpleType>
242
243 <xs:simpleType name="TablesSetType">
244 <xs:restriction base="xs:string">
245 <xs:pattern value="\w+(;\w+)*" />
246 </xs:restriction>
247 </xs:simpleType>
248</xs:schema>
diff --git a/src/WixToolset.Data/Data/messages.cs b/src/WixToolset.Data/Data/messages.cs
deleted file mode 100644
index ef2fc446..00000000
--- a/src/WixToolset.Data/Data/messages.cs
+++ /dev/null
@@ -1,118 +0,0 @@
1//------------------------------------------------------------------------------
2// <auto-generated>
3// This code was generated by a tool.
4// Runtime Version:4.0.30319.42000
5//
6// Changes to this file may cause incorrect behavior and will be lost if
7// the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace WixToolset.Data
12{
13 using System;
14 using System.Reflection;
15 using System.Resources;
16
17
18 public class WixDataErrorEventArgs : MessageEventArgs
19 {
20
21 private static ResourceManager resourceManager = new ResourceManager("WixToolset.Data.Data.Messages", Assembly.GetExecutingAssembly());
22
23 public WixDataErrorEventArgs(SourceLineNumber sourceLineNumbers, int id, string resourceName, params object[] messageArgs) :
24 base(sourceLineNumbers, id, resourceName, messageArgs)
25 {
26 base.Level = MessageLevel.Error;
27 base.ResourceManager = resourceManager;
28 }
29 }
30
31 public sealed class WixDataErrors
32 {
33
34 private WixDataErrors()
35 {
36 }
37
38 public static MessageEventArgs UnexpectedFileFormat(string path, string expectedFormat, string actualFormat)
39 {
40 return new WixDataErrorEventArgs(null, 1, "WixDataErrors_UnexpectedFileFormat_1", path, expectedFormat, actualFormat);
41 }
42
43 public static MessageEventArgs CorruptFileFormat(string path, string format)
44 {
45 return new WixDataErrorEventArgs(null, 2, "WixDataErrors_CorruptFileFormat_1", path, format);
46 }
47
48 public static MessageEventArgs InvalidFileName(SourceLineNumber sourceLineNumbers, string fileName)
49 {
50 return new WixDataErrorEventArgs(sourceLineNumbers, 85, "WixDataErrors_InvalidFileName_1", fileName);
51 }
52
53 public static MessageEventArgs DuplicateLocalizationIdentifier(SourceLineNumber sourceLineNumbers, string localizationId)
54 {
55 return new WixDataErrorEventArgs(sourceLineNumbers, 100, "WixDataErrors_DuplicateLocalizationIdentifier_1", localizationId);
56 }
57
58 public static MessageEventArgs FileNotFound(SourceLineNumber sourceLineNumbers, string file)
59 {
60 return new WixDataErrorEventArgs(sourceLineNumbers, 103, "WixDataErrors_FileNotFound_1", file);
61 }
62
63 public static MessageEventArgs FileNotFound(SourceLineNumber sourceLineNumbers, string file, string fileType)
64 {
65 return new WixDataErrorEventArgs(sourceLineNumbers, 103, "WixDataErrors_FileNotFound_2", file, fileType);
66 }
67
68 public static MessageEventArgs DuplicatePrimaryKey(SourceLineNumber sourceLineNumbers, string primaryKey, string tableName)
69 {
70 return new WixDataErrorEventArgs(sourceLineNumbers, 130, "WixDataErrors_DuplicatePrimaryKey_1", primaryKey, tableName);
71 }
72
73 public static MessageEventArgs InvalidIdt(SourceLineNumber sourceLineNumbers, string idtFile)
74 {
75 return new WixDataErrorEventArgs(sourceLineNumbers, 136, "WixDataErrors_InvalidIdt_1", idtFile);
76 }
77
78 public static MessageEventArgs InvalidIdt(SourceLineNumber sourceLineNumbers, string idtFile, string tableName)
79 {
80 return new WixDataErrorEventArgs(sourceLineNumbers, 136, "WixDataErrors_InvalidIdt_2", idtFile, tableName);
81 }
82
83 public static MessageEventArgs VersionMismatch(SourceLineNumber sourceLineNumbers, string fileType, string version, string expectedVersion)
84 {
85 return new WixDataErrorEventArgs(sourceLineNumbers, 141, "WixDataErrors_VersionMismatch_1", fileType, version, expectedVersion);
86 }
87
88 public static MessageEventArgs IllegalFileCompressionAttributes(SourceLineNumber sourceLineNumbers)
89 {
90 return new WixDataErrorEventArgs(sourceLineNumbers, 167, "WixDataErrors_IllegalFileCompressionAttributes_1");
91 }
92
93 public static MessageEventArgs MissingTableDefinition(string tableName)
94 {
95 return new WixDataErrorEventArgs(null, 182, "WixDataErrors_MissingTableDefinition_1", tableName);
96 }
97
98 public static MessageEventArgs RealTableMissingPrimaryKeyColumn(SourceLineNumber sourceLineNumbers, string tableName)
99 {
100 return new WixDataErrorEventArgs(sourceLineNumbers, 225, "WixDataErrors_RealTableMissingPrimaryKeyColumn_1", tableName);
101 }
102
103 public static MessageEventArgs PathTooLong(SourceLineNumber sourceLineNumbers, string fileName)
104 {
105 return new WixDataErrorEventArgs(sourceLineNumbers, 262, "WixDataErrors_PathTooLong_1", fileName);
106 }
107
108 public static MessageEventArgs InvalidStringForCodepage(SourceLineNumber sourceLineNumbers, string codepage)
109 {
110 return new WixDataErrorEventArgs(sourceLineNumbers, 311, "WixDataErrors_InvalidStringForCodepage_1", codepage);
111 }
112
113 public static MessageEventArgs TooManyColumnsInRealTable(string tableName, int columnCount, int supportedColumnCount)
114 {
115 return new WixDataErrorEventArgs(null, 386, "WixDataErrors_TooManyColumnsInRealTable_1", tableName, columnCount, supportedColumnCount);
116 }
117 }
118}
diff --git a/src/WixToolset.Data/Data/messages.xml b/src/WixToolset.Data/Data/messages.xml
new file mode 100644
index 00000000..3acb21ba
--- /dev/null
+++ b/src/WixToolset.Data/Data/messages.xml
@@ -0,0 +1,4033 @@
1<?xml version='1.0' encoding='utf-8'?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4
5<Messages Namespace="WixToolset" Resources="Data.Messages" xmlns="http://schemas.microsoft.com/genmsgs/2004/07/messages">
6 <Class Name="WixErrors" ContainerName="WixErrorEventArgs" BaseContainerName="MessageEventArgs" Level="Error">
7 <Message Id="UnexpectedException" Number="1" SourceLineNumbers="no">
8 <Instance>
9 {0}&#13;&#10;&#13;&#10;Exception Type: {1}&#13;&#10;&#13;&#10;Stack Trace:&#13;&#10;{2}
10 <Parameter Type="System.String" Name="message" />
11 <Parameter Type="System.String" Name="type" />
12 <Parameter Type="System.String" Name="stackTrace" />
13 </Instance>
14 </Message>
15 <Message Id="UnexpectedFileFormat" Number="2" SourceLineNumbers="no">
16 <Instance>
17 Unexpected file format loaded from path: {0}. The file was expected to be a {1} but was actually: {2}. Ensure the correct path was provided.
18 <Parameter Type="System.String" Name="path" />
19 <Parameter Type="System.String" Name="expectedFormat" />
20 <Parameter Type="System.String" Name="actualFormat" />
21 </Instance>
22 </Message>
23 <Message Id="CorruptFileFormat" Number="3" SourceLineNumbers="no">
24 <Instance>
25 Attempted to load corrupt file from path: {0}. The file with format {1} contained unexpected content. Ensure the correct path was provided and that the file has not been incorrectly modified.
26 <Parameter Type="System.String" Name="path" />
27 <Parameter Type="System.String" Name="format" />
28 </Instance>
29 </Message>
30 <Message Id="DuplicateLocalizationIdentifier" Number="100">
31 <Instance>
32 The localization identifier '{0}' has been duplicated in multiple locations. Please resolve the conflict.
33 <Parameter Type="System.String" Name="localizationId" />
34 </Instance>
35 </Message>
36 <Message Id="UnexpectedAttribute" Number="4">
37 <Instance>
38 The {0} element contains an unexpected attribute '{1}'.
39 <Parameter Type="System.String" Name="elementName" />
40 <Parameter Type="System.String" Name="attributeName" />
41 </Instance>
42 </Message>
43 <Message Id="UnexpectedElement" Number="5">
44 <Instance>
45 The {0} element contains an unexpected child element '{1}'.
46 <Parameter Type="System.String" Name="elementName" />
47 <Parameter Type="System.String" Name="childElementName" />
48 </Instance>
49 </Message>
50 <Message Id="IllegalEmptyAttributeValue" Number="6">
51 <Instance>
52 The {0}/@{1} attribute's value cannot be an empty string. If a value is not required, simply remove the entire attribute.
53 <Parameter Type="System.String" Name="elementName" />
54 <Parameter Type="System.String" Name="attributeName" />
55 </Instance>
56 <Instance>
57 The {0}/@{1} attribute's value cannot be an empty string. To use the default value "{2}", simply remove the entire attribute.
58 <Parameter Type="System.String" Name="elementName" />
59 <Parameter Type="System.String" Name="attributeName" />
60 <Parameter Type="System.String" Name="defaultValue" />
61 </Instance>
62 </Message>
63 <Message Id="InsufficientVersion" Number="7">
64 <Instance>
65 The current version of the toolset is {0}, but version {1} is required.
66 <Parameter Type="System.Version" Name="currentVersion" />
67 <Parameter Type="System.Version" Name="requiredVersion" />
68 </Instance>
69 <Instance>
70 The current version of the extension '{2}' is {0}, but version {1} is required.
71 <Parameter Type="System.Version" Name="currentVersion" />
72 <Parameter Type="System.Version" Name="requiredVersion" />
73 <Parameter Type="System.String" Name="extension" />
74 </Instance>
75 </Message>
76 <Message Id="IllegalIntegerValue" Number="8">
77 <Instance>
78 The {0}/@{1} attribute's value, '{2}', is not a legal integer value. Legal integer values are from -2,147,483,648 to 2,147,483,647.
79 <Parameter Type="System.String" Name="elementName" />
80 <Parameter Type="System.String" Name="attributeName" />
81 <Parameter Type="System.String" Name="value" />
82 </Instance>
83 </Message>
84 <Message Id="IllegalGuidValue" Number="9">
85 <Instance>
86 The {0}/@{1} attribute's value, '{2}', is not a legal guid value.
87 <Parameter Type="System.String" Name="elementName" />
88 <Parameter Type="System.String" Name="attributeName" />
89 <Parameter Type="System.String" Name="value" />
90 </Instance>
91 </Message>
92 <Message Id="ExpectedAttribute" Number="10">
93 <Instance>
94 The {0}/@{1} attribute was not found; it is required.
95 <Parameter Type="System.String" Name="elementName" />
96 <Parameter Type="System.String" Name="attributeName" />
97 </Instance>
98 <Instance>
99 The {0} element must have a value for exactly one of the {1} or {2} attributes.
100 <Parameter Type="System.String" Name="elementName" />
101 <Parameter Type="System.String" Name="attribute1Name" />
102 <Parameter Type="System.String" Name="attribute2Name" />
103 <Parameter Type="System.Boolean" Name="eitherOr" />
104 </Instance>
105 <Instance>
106 The {0}/@{1} attribute was not found; it is required when attribute {2} is specified.
107 <Parameter Type="System.String" Name="elementName" />
108 <Parameter Type="System.String" Name="attributeName" />
109 <Parameter Type="System.String" Name="otherAttributeName" />
110 </Instance>
111 <Instance>
112 The {0}/@{1} attribute was not found; it is required when attribute {2} has a value of '{3}'.
113 <Parameter Type="System.String" Name="elementName" />
114 <Parameter Type="System.String" Name="attributeName" />
115 <Parameter Type="System.String" Name="otherAttributeName" />
116 <Parameter Type="System.String" Name="otherAttributeValue" />
117 </Instance>
118 <Instance>
119 The {0}/@{1} attribute was not found; it is required unless the attribute {2} has a value of '{3}'.
120 <Parameter Type="System.String" Name="elementName" />
121 <Parameter Type="System.String" Name="attributeName" />
122 <Parameter Type="System.String" Name="otherAttributeName" />
123 <Parameter Type="System.String" Name="otherAttributeValue" />
124 <Parameter Type="System.Boolean" Name="otherAttributeValueUnless" />
125 </Instance>
126 </Message>
127 <Message Id="SecurePropertyNotUppercase" Number="11">
128 <Instance>
129 The {0}/@{1} attribute's value, '{2}', cannot contain lowercase characters. Since this is a secure property, it must also be a public property. This means the Property/@Id value must be completely uppercase.
130 <Parameter Type="System.String" Name="elementName" />
131 <Parameter Type="System.String" Name="attributeName" />
132 <Parameter Type="System.String" Name="propertyId" />
133 </Instance>
134 </Message>
135 <Message Id="SearchPropertyNotUppercase" Number="12">
136 <Instance>
137 The {0}/@{1} attribute's value, '{2}', cannot contain lowercase characters. Since this is a search property, it must also be a public property. This means the Property/@Id value must be completely uppercase.
138 <Parameter Type="System.String" Name="elementName" />
139 <Parameter Type="System.String" Name="attributeName" />
140 <Parameter Type="System.String" Name="value" />
141 </Instance>
142 </Message>
143 <Message Id="StreamNameTooLong" Number="13">
144 <Instance>
145 The {0}/@{1} attribute's value, '{2}', is {3} characters long. This is too long because it will be used to create a stream name. It cannot be more than than {4} characters long.
146 <Parameter Type="System.String" Name="elementName" />
147 <Parameter Type="System.String" Name="attributeName" />
148 <Parameter Type="System.String" Name="value" />
149 <Parameter Type="System.Int32" Name="length" />
150 <Parameter Type="System.Int32" Name="maximumLength" />
151 </Instance>
152 <Instance>
153 The binary value in table '{0}' will be stored with a stream name, '{1}', that is {2} characters long. This is too long because the maximum allowed length for a stream name is 62 characters long. Since the stream name is created by concatenating the table name and values of the primary key for a row (delimited by periods), this error can be resolved by shortening a value that is part of the primary key.
154 <Parameter Type="System.String" Name="tableName" />
155 <Parameter Type="System.String" Name="streamName" />
156 <Parameter Type="System.Int32" Name="streamLength" />
157 </Instance>
158 </Message>
159 <Message Id="IllegalIdentifier" Number="14">
160 <Instance>
161 The {0} element's value, '{1}', is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.
162 <Parameter Type="System.String" Name="elementName" />
163 <Parameter Type="System.String" Name="value" />
164 </Instance>
165 <Instance>
166 The {0}/@{1} attribute's value is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.
167 <Parameter Type="System.String" Name="elementName" />
168 <Parameter Type="System.String" Name="attributeName" />
169 <Parameter Type="System.Int32" Name="disambiguator" />
170 </Instance>
171 <Instance>
172 The {0}/@{1} attribute's value, '{2}', is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.
173 <Parameter Type="System.String" Name="elementName" />
174 <Parameter Type="System.String" Name="attributeName" />
175 <Parameter Type="System.String" Name="value" />
176 </Instance>
177 <Instance>
178 The {0}/@{1} attribute's value '{2}' contains an illegal identifier '{3}'. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.
179 <Parameter Type="System.String" Name="elementName" />
180 <Parameter Type="System.String" Name="attributeName" />
181 <Parameter Type="System.String" Name="value" />
182 <Parameter Type="System.String" Name="identifier" />
183 </Instance>
184 </Message>
185 <Message Id="IllegalYesNoValue" Number="15">
186 <Instance>
187 The {0}/@{1} attribute's value, '{2}', is not a legal yes/no value. The only legal values are 'no' and 'yes'.
188 <Parameter Type="System.String" Name="elementName" />
189 <Parameter Type="System.String" Name="attributeName" />
190 <Parameter Type="System.String" Name="value" />
191 </Instance>
192 </Message>
193 <Message Id="CabCreationFailed" Number="16" SourceLineNumbers="no">
194 <Instance>
195 Failed to create cab '{0}' while compressing file '{1}' with error 0x{2:X8}.
196 <Parameter Type="System.String" Name="cabName" />
197 <Parameter Type="System.String" Name="fileName" />
198 <Parameter Type="System.Int32" Name="error" />
199 </Instance>
200 <Instance>
201 Failed to create cab '{0}' with error 0x{1:X8}.
202 <Parameter Type="System.String" Name="cabName" />
203 <Parameter Type="System.Int32" Name="error" />
204 </Instance>
205 </Message>
206 <Message Id="CabExtractionFailed" Number="17" SourceLineNumbers="no">
207 <Instance>
208 Failed to extract cab '{0}' to directory '{1}'. This is most likely due to a lack of available disk space on the destination drive.
209 <Parameter Type="System.String" Name="cabName" />
210 <Parameter Type="System.String" Name="directoryName" />
211 </Instance>
212 <Instance>
213 Failed to extract cab '{0}' from merge module '{1}' to directory '{2}'. This is most likely due to a lack of available disk space on the destination drive.
214 <Parameter Type="System.String" Name="cabName" />
215 <Parameter Type="System.String" Name="mergeModulePath" />
216 <Parameter Type="System.String" Name="directoryName" />
217 </Instance>
218 </Message>
219 <Message Id="AppIdIncompatibleAdvertiseState" Number="18">
220 <Instance>
221 The {0}/@(1) attribute's value, '{2}' does not match the advertise state on its parent element: '{3}'. (Note: AppIds nested under Fragment, Module, or Product elements must be advertised.)
222 <Parameter Type="System.String" Name="elementName" />
223 <Parameter Type="System.String" Name="attributeName" />
224 <Parameter Type="System.String" Name="value" />
225 <Parameter Type="System.String" Name="parentValue" />
226 </Instance>
227 </Message>
228 <Message Id="IllegalAttributeWhenAdvertised" Number="19">
229 <Instance>
230 The {0}/@{1} attribute cannot be specified because the element is advertised.
231 <Parameter Type="System.String" Name="elementName" />
232 <Parameter Type="System.String" Name="attributeName" />
233 </Instance>
234 </Message>
235 <Message Id="ConditionExpected" Number="20">
236 <Instance>
237 The {0} element's inner text cannot be an empty string or completely whitespace. If you don't want a condition, then simply remove the entire {0} element.
238 <Parameter Type="System.String" Name="elementName" />
239 </Instance>
240 </Message>
241 <Message Id="IllegalAttributeValue" Number="21">
242 <Instance>
243 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}'.
244 <Parameter Type="System.String" Name="elementName" />
245 <Parameter Type="System.String" Name="attributeName" />
246 <Parameter Type="System.String" Name="value" />
247 <Parameter Type="System.String" Name="legalValue1" />
248 </Instance>
249 <Instance>
250 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', or '{4}'.
251 <Parameter Type="System.String" Name="elementName" />
252 <Parameter Type="System.String" Name="attributeName" />
253 <Parameter Type="System.String" Name="value" />
254 <Parameter Type="System.String" Name="legalValue1" />
255 <Parameter Type="System.String" Name="legalValue2" />
256 </Instance>
257 <Instance>
258 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', or '{5}'.
259 <Parameter Type="System.String" Name="elementName" />
260 <Parameter Type="System.String" Name="attributeName" />
261 <Parameter Type="System.String" Name="value" />
262 <Parameter Type="System.String" Name="legalValue1" />
263 <Parameter Type="System.String" Name="legalValue2" />
264 <Parameter Type="System.String" Name="legalValue3" />
265 </Instance>
266 <Instance>
267 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', or '{6}'.
268 <Parameter Type="System.String" Name="elementName" />
269 <Parameter Type="System.String" Name="attributeName" />
270 <Parameter Type="System.String" Name="value" />
271 <Parameter Type="System.String" Name="legalValue1" />
272 <Parameter Type="System.String" Name="legalValue2" />
273 <Parameter Type="System.String" Name="legalValue3" />
274 <Parameter Type="System.String" Name="legalValue4" />
275 </Instance>
276 <Instance>
277 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', or '{7}'.
278 <Parameter Type="System.String" Name="elementName" />
279 <Parameter Type="System.String" Name="attributeName" />
280 <Parameter Type="System.String" Name="value" />
281 <Parameter Type="System.String" Name="legalValue1" />
282 <Parameter Type="System.String" Name="legalValue2" />
283 <Parameter Type="System.String" Name="legalValue3" />
284 <Parameter Type="System.String" Name="legalValue4" />
285 <Parameter Type="System.String" Name="legalValue5" />
286 </Instance>
287 <Instance>
288 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', or '{8}'.
289 <Parameter Type="System.String" Name="elementName" />
290 <Parameter Type="System.String" Name="attributeName" />
291 <Parameter Type="System.String" Name="value" />
292 <Parameter Type="System.String" Name="legalValue1" />
293 <Parameter Type="System.String" Name="legalValue2" />
294 <Parameter Type="System.String" Name="legalValue3" />
295 <Parameter Type="System.String" Name="legalValue4" />
296 <Parameter Type="System.String" Name="legalValue5" />
297 <Parameter Type="System.String" Name="legalValue6" />
298 </Instance>
299 <Instance>
300 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', '{8}', or '{9}'.
301 <Parameter Type="System.String" Name="elementName" />
302 <Parameter Type="System.String" Name="attributeName" />
303 <Parameter Type="System.String" Name="value" />
304 <Parameter Type="System.String" Name="legalValue1" />
305 <Parameter Type="System.String" Name="legalValue2" />
306 <Parameter Type="System.String" Name="legalValue3" />
307 <Parameter Type="System.String" Name="legalValue4" />
308 <Parameter Type="System.String" Name="legalValue5" />
309 <Parameter Type="System.String" Name="legalValue6" />
310 <Parameter Type="System.String" Name="legalValue7" />
311 </Instance>
312 <Instance>
313 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', '{8}', '{9}', or '{10}'.
314 <Parameter Type="System.String" Name="elementName" />
315 <Parameter Type="System.String" Name="attributeName" />
316 <Parameter Type="System.String" Name="value" />
317 <Parameter Type="System.String" Name="legalValue1" />
318 <Parameter Type="System.String" Name="legalValue2" />
319 <Parameter Type="System.String" Name="legalValue3" />
320 <Parameter Type="System.String" Name="legalValue4" />
321 <Parameter Type="System.String" Name="legalValue5" />
322 <Parameter Type="System.String" Name="legalValue6" />
323 <Parameter Type="System.String" Name="legalValue7" />
324 <Parameter Type="System.String" Name="legalValue8" />
325 </Instance>
326 <Instance>
327 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', '{8}', '{9}', '{10}', '{11}', '{12}', '{13}', '{14}', '{15}', '{16}', '{17}', '{18}', '{19}', '{20}', '{21}', '{22}', '{23}', '{24}', '{25}', '{26}', '{27}', or '{28}'.
328 <Parameter Type="System.String" Name="elementName" />
329 <Parameter Type="System.String" Name="attributeName" />
330 <Parameter Type="System.String" Name="value" />
331 <Parameter Type="System.String" Name="legalValue1" />
332 <Parameter Type="System.String" Name="legalValue2" />
333 <Parameter Type="System.String" Name="legalValue3" />
334 <Parameter Type="System.String" Name="legalValue4" />
335 <Parameter Type="System.String" Name="legalValue5" />
336 <Parameter Type="System.String" Name="legalValue6" />
337 <Parameter Type="System.String" Name="legalValue7" />
338 <Parameter Type="System.String" Name="legalValue8" />
339 <Parameter Type="System.String" Name="legalValue9" />
340 <Parameter Type="System.String" Name="legalValue10" />
341 <Parameter Type="System.String" Name="legalValue11" />
342 <Parameter Type="System.String" Name="legalValue12" />
343 <Parameter Type="System.String" Name="legalValue13" />
344 <Parameter Type="System.String" Name="legalValue14" />
345 <Parameter Type="System.String" Name="legalValue15" />
346 <Parameter Type="System.String" Name="legalValue16" />
347 <Parameter Type="System.String" Name="legalValue17" />
348 <Parameter Type="System.String" Name="legalValue18" />
349 <Parameter Type="System.String" Name="legalValue19" />
350 <Parameter Type="System.String" Name="legalValue20" />
351 <Parameter Type="System.String" Name="legalValue21" />
352 <Parameter Type="System.String" Name="legalValue22" />
353 <Parameter Type="System.String" Name="legalValue23" />
354 <Parameter Type="System.String" Name="legalValue24" />
355 <Parameter Type="System.String" Name="legalValue25" />
356 <Parameter Type="System.String" Name="legalValue26" />
357 </Instance>
358 </Message>
359 <Message Id="CustomActionMultipleSources" Number="22">
360 <Instance>
361 The {0}/@{1} attribute cannot coexist with a previously specified attribute on this element. The {0} element may only have one of the following source attributes specified at a time: {2}, {3}, {4}, {5}, or {6}.
362 <Parameter Type="System.String" Name="elementName" />
363 <Parameter Type="System.String" Name="attributeName" />
364 <Parameter Type="System.String" Name="attributeName1" />
365 <Parameter Type="System.String" Name="attributeName2" />
366 <Parameter Type="System.String" Name="attributeName3" />
367 <Parameter Type="System.String" Name="attributeName4" />
368 <Parameter Type="System.String" Name="attributeName5" />
369 </Instance>
370 </Message>
371 <Message Id="CustomActionMultipleTargets" Number="23">
372 <Instance>
373 The {0}/@{1} attribute cannot coexist with a previously specified attribute on this element. The {0} element may only have one of the following target attributes specified at a time: {2}, {3}, {4}, {5}, {6}, {7}, or {8}.
374 <Parameter Type="System.String" Name="elementName" />
375 <Parameter Type="System.String" Name="attributeName" />
376 <Parameter Type="System.String" Name="attributeName1" />
377 <Parameter Type="System.String" Name="attributeName2" />
378 <Parameter Type="System.String" Name="attributeName3" />
379 <Parameter Type="System.String" Name="attributeName4" />
380 <Parameter Type="System.String" Name="attributeName5" />
381 <Parameter Type="System.String" Name="attributeName6" />
382 <Parameter Type="System.String" Name="attributeName7" />
383 </Instance>
384 </Message>
385 <Message Id="CustomActionIllegalInnerText" Number="24">
386 <Instance>
387 The {0} element contains illegal inner text: '{1}'. It may not contain inner text unless the {2} attribute is specified.
388 <Parameter Type="System.String" Name="elementName" />
389 <Parameter Type="System.String" Name="innerText" />
390 <Parameter Type="System.String" Name="attributeName" />
391 </Instance>
392 </Message>
393 <Message Id="DirectoryRootWithoutName" Number="25">
394 <Instance>
395 The {0} element requires the {1} attribute because there is no parent {0} element.
396 <Parameter Type="System.String" Name="elementName" />
397 <Parameter Type="System.String" Name="attributeName" />
398 </Instance>
399 </Message>
400 <Message Id="IllegalShortFilename" Number="26">
401 <Instance>
402 The {0}/@{1} attribute's value, '{2}', is not a valid 8.3-compliant name. Legal names contain no more than 8 non-period characters followed by an optional period and extension of no more than 3 non-period characters. Any character except for the follow may be used: \ ? | &gt; &lt; : / * " + , ; = [ ] (space).
403 <Parameter Type="System.String" Name="elementName" />
404 <Parameter Type="System.String" Name="attributeName" />
405 <Parameter Type="System.String" Name="value" />
406 </Instance>
407 </Message>
408 <Message Id="IllegalLongFilename" Number="27">
409 <Instance>
410 The {0}/@{1} attribute's value, '{2}', is not a valid filename because it contains illegal characters. Legal filenames contain no more than 260 characters and must contain at least one non-period character. Any character except for the follow may be used: \ ? | &gt; &lt; : / * ".
411 <Parameter Type="System.String" Name="elementName" />
412 <Parameter Type="System.String" Name="attributeName" />
413 <Parameter Type="System.String" Name="value" />
414 </Instance>
415 <Instance>
416 The {0}/@{1} attribute's value '{2}' contains a invalid filename '{3}'. Legal filenames contain no more than 260 characters and must contain at least one non-period character. Any character except for the follow may be used: \ ? | &gt; &lt; : / * ".
417 <Parameter Type="System.String" Name="elementName" />
418 <Parameter Type="System.String" Name="attributeName" />
419 <Parameter Type="System.String" Name="value" />
420 <Parameter Type="System.String" Name="filename" />
421 </Instance>
422 </Message>
423 <Message Id="TableNameTooLong" Number="28">
424 <Instance>
425 The {0}/@{1} attribute's value, '{2}', is too long for a table name. It cannot be more than than 31 characters long.
426 <Parameter Type="System.String" Name="elementName" />
427 <Parameter Type="System.String" Name="attributeName" />
428 <Parameter Type="System.String" Name="value" />
429 </Instance>
430 </Message>
431 <Message Id="FeatureConfigurableDirectoryNotUppercase" Number="29">
432 <Instance>
433 The {0}/@{1} attribute's value, '{2}', contains lowercase characters. Since this directory is user-configurable, it needs to be a public property. This means the value must be completely uppercase.
434 <Parameter Type="System.String" Name="elementName" />
435 <Parameter Type="System.String" Name="attributeName" />
436 <Parameter Type="System.String" Name="value" />
437 </Instance>
438 </Message>
439 <Message Id="FeatureCannotFavorAndDisallowAdvertise" Number="30">
440 <Instance>
441 The {0}/@{1} attribute's value, '{2}', cannot coexist with the {3} attribute's value of '{4}'. These options would ask the installer to disallow the advertised state for this feature while at the same time favoring it.
442 <Parameter Type="System.String" Name="elementName" />
443 <Parameter Type="System.String" Name="attributeName" />
444 <Parameter Type="System.String" Name="value" />
445 <Parameter Type="System.String" Name="otherAttributeName" />
446 <Parameter Type="System.String" Name="otherValue" />
447 </Instance>
448 </Message>
449 <Message Id="FeatureCannotFollowParentAndFavorLocalOrSource" Number="31">
450 <Instance>
451 The {0}/@{1} attribute cannot be specified if the {2} attribute's value is '{3}'. These options would ask the installer to force this feature to follow the parent installation state and simultaneously favor a particular installation state just for this feature.
452 <Parameter Type="System.String" Name="elementName" />
453 <Parameter Type="System.String" Name="attributeName" />
454 <Parameter Type="System.String" Name="otherAttributeName" />
455 <Parameter Type="System.String" Name="otherValue" />
456 </Instance>
457 </Message>
458 <Message Id="MediaEmbeddedCabinetNameTooLong" Number="32">
459 <Instance>
460 The {0}/@{1} attribute's value, '{2}', is {3} characters long. The name is too long for an embedded cabinet. It cannot be more than than 62 characters long.
461 <Parameter Type="System.String" Name="elementName" />
462 <Parameter Type="System.String" Name="attributeName" />
463 <Parameter Type="System.String" Name="value" />
464 <Parameter Type="System.Int32" Name="length" />
465 </Instance>
466 </Message>
467 <Message Id="RegistrySubElementCannotBeRemoved" Number="33">
468 <Instance>
469 The {0}/{1} element cannot be specified if the {2} attribute's value is '{3}' or '{4}'.
470 <Parameter Type="System.String" Name="registryElementName" />
471 <Parameter Type="System.String" Name="registryValueElementName" />
472 <Parameter Type="System.String" Name="actionAttributeName" />
473 <Parameter Type="System.String" Name="removeValue" />
474 <Parameter Type="System.String" Name="removeKeyOnInstallValue" />
475 </Instance>
476 </Message>
477 <Message Id="RegistryMultipleValuesWithoutMultiString" Number="34">
478 <Instance>
479 The {0}/@{1} attribute and a {0}/{2} element cannot both be specified. Only one may be specified if the {3} attribute's value is not 'multiString'.
480 <Parameter Type="System.String" Name="registryElementName" />
481 <Parameter Type="System.String" Name="valueAttributeName" />
482 <Parameter Type="System.String" Name="registryValueElementName" />
483 <Parameter Type="System.String" Name="typeAttributeName" />
484 </Instance>
485 </Message>
486 <Message Id="IllegalAttributeWithOtherAttribute" Number="35">
487 <Instance>
488 The {0}/@{1} attribute cannot be specified when attribute {2} is present.
489 <Parameter Type="System.String" Name="elementName" />
490 <Parameter Type="System.String" Name="attributeName" />
491 <Parameter Type="System.String" Name="otherAttributeName" />
492 </Instance>
493 <Instance>
494 The {0}/@{1} attribute cannot be specified when attribute {2} is present with value '{3}'.
495 <Parameter Type="System.String" Name="elementName" />
496 <Parameter Type="System.String" Name="attributeName" />
497 <Parameter Type="System.String" Name="otherAttributeName" />
498 <Parameter Type="System.String" Name="otherAttributeValue" />
499 </Instance>
500 </Message>
501 <Message Id="IllegalAttributeWithOtherAttributes" Number="36">
502 <Instance>
503 The {0}/@{1} attribute cannot be specified when attribute {2} or {3} is also present.
504 <Parameter Type="System.String" Name="elementName" />
505 <Parameter Type="System.String" Name="attributeName" />
506 <Parameter Type="System.String" Name="otherAttributeName1" />
507 <Parameter Type="System.String" Name="otherAttributeName2" />
508 </Instance>
509 <Instance>
510 The {0}/@{1} attribute cannot be specified when attribute {2}, {3}, or {4} is also present.
511 <Parameter Type="System.String" Name="elementName" />
512 <Parameter Type="System.String" Name="attributeName" />
513 <Parameter Type="System.String" Name="otherAttributeName1" />
514 <Parameter Type="System.String" Name="otherAttributeName2" />
515 <Parameter Type="System.String" Name="otherAttributeName3" />
516 </Instance>
517 <Instance>
518 The {0}/@{1} attribute cannot be specified when attribute {2}, {3}, {4}, or {5} is also present.
519 <Parameter Type="System.String" Name="elementName" />
520 <Parameter Type="System.String" Name="attributeName" />
521 <Parameter Type="System.String" Name="otherAttributeName1" />
522 <Parameter Type="System.String" Name="otherAttributeName2" />
523 <Parameter Type="System.String" Name="otherAttributeName3" />
524 <Parameter Type="System.String" Name="otherAttributeName4" />
525 </Instance>
526 </Message>
527 <Message Id="IllegalAttributeWithoutOtherAttributes" Number="37">
528 <Instance>
529 The {0}/@{1} attribute can only be specified with the following attribute {2} present.
530 <Parameter Type="System.String" Name="elementName" />
531 <Parameter Type="System.String" Name="attributeName" />
532 <Parameter Type="System.String" Name="otherAttributeName" />
533 </Instance>
534 <Instance>
535 The {0}/@{1} attribute can only be specified with one of the following attributes: {2} or {3} present.
536 <Parameter Type="System.String" Name="elementName" />
537 <Parameter Type="System.String" Name="attributeName" />
538 <Parameter Type="System.String" Name="otherAttributeName1" />
539 <Parameter Type="System.String" Name="otherAttributeName2" />
540 </Instance>
541 <Instance>
542 The {0}/@{1} attribute can only be specified with one of the following attributes: {2} or {3} present with value '{4}'.
543 <Parameter Type="System.String" Name="elementName" />
544 <Parameter Type="System.String" Name="attributeName" />
545 <Parameter Type="System.String" Name="otherAttributeName1" />
546 <Parameter Type="System.String" Name="otherAttributeName2" />
547 <Parameter Type="System.String" Name="otherAttributeValue" />
548 <Parameter Type="System.Boolean" Name="uniquifier" />
549 </Instance>
550 <Instance>
551 The {0}/@{1} attribute can only be specified with one of the following attributes: {2}, {3}, or {4} present.
552 <Parameter Type="System.String" Name="elementName" />
553 <Parameter Type="System.String" Name="attributeName" />
554 <Parameter Type="System.String" Name="otherAttributeName1" />
555 <Parameter Type="System.String" Name="otherAttributeName2" />
556 <Parameter Type="System.String" Name="otherAttributeName3" />
557 </Instance>
558 <Instance>
559 The {0}/@{1} attribute can only be specified with one of the following attributes: {2}, {3}, {4}, or {5} present.
560 <Parameter Type="System.String" Name="elementName" />
561 <Parameter Type="System.String" Name="attributeName" />
562 <Parameter Type="System.String" Name="otherAttributeName1" />
563 <Parameter Type="System.String" Name="otherAttributeName2" />
564 <Parameter Type="System.String" Name="otherAttributeName3" />
565 <Parameter Type="System.String" Name="otherAttributeName4" />
566 </Instance>
567 </Message>
568 <Message Id="IllegalAttributeValueWithoutOtherAttribute" Number="38">
569 <Instance>
570 The {0}/@{1} attribute's value, '{2}', can only be specified with attribute {3} present with value '{4}'.
571 <Parameter Type="System.String" Name="elementName" />
572 <Parameter Type="System.String" Name="attributeName" />
573 <Parameter Type="System.String" Name="attributeValue" />
574 <Parameter Type="System.String" Name="otherAttributeName" />
575 <Parameter Type="System.String" Name="otherAttributeValue" />
576 </Instance>
577 <Instance>
578 The {0}/@{1} attribute's value, '{2}', cannot be specified without attribute {3} present.
579 <Parameter Type="System.String" Name="elementName" />
580 <Parameter Type="System.String" Name="attributeName" />
581 <Parameter Type="System.String" Name="attributeValue" />
582 <Parameter Type="System.String" Name="otherAttributeName" />
583 </Instance>
584 </Message>
585 <Message Id="IntegralValueSentinelCollision" Number="39">
586 <Instance>
587 The integer value {0} collides with a sentinel value in the compiler code.
588 <Parameter Type="System.Int32" Name="value" />
589 </Instance>
590 <Instance>
591 The long integral value {0} collides with a sentinel value in the compiler code.
592 <Parameter Type="System.Int64" Name="value" />
593 </Instance>
594 </Message>
595 <Message Id="ExampleGuid" Number="40">
596 <Instance>
597 The {0}/@{1} attribute's value, '{2}', is not a legal Guid value. A Guid needs to be generated and put in place of '{2}' in the source file.
598 <Parameter Type="System.String" Name="elementName" />
599 <Parameter Type="System.String" Name="attributeName" />
600 <Parameter Type="System.String" Name="value" />
601 </Instance>
602 </Message>
603 <Message Id="TooManyChildren" Number="41">
604 <Instance>
605 The {0} element contains multiple {1} child elements. There can only be one {1} child element per {0} element.
606 <Parameter Type="System.String" Name="elementName" />
607 <Parameter Type="System.String" Name="childElementName" />
608 </Instance>
609 </Message>
610 <Message Id="ComponentMultipleKeyPaths" Number="42">
611 <Instance>
612 The {0} element has multiple key paths set. The key path may only be set to '{2}' in extension elements that support it or one of the following locations: {0}/@{1}, {3}/@{1}, {4}/@{1}, or {5}/@{1}.
613 <Parameter Type="System.String" Name="elementName" />
614 <Parameter Type="System.String" Name="attributeName" />
615 <Parameter Type="System.String" Name="value" />
616 <Parameter Type="System.String" Name="fileElementName" />
617 <Parameter Type="System.String" Name="registryElementName" />
618 <Parameter Type="System.String" Name="odbcDataSourceElementName" />
619 </Instance>
620 </Message>
621 <Message Id="CabClosureFailed" Number="43" SourceLineNumbers="no">
622 <Instance>
623 Failed to close cab '{0}'.
624 <Parameter Type="System.String" Name="cabinet" />
625 </Instance>
626 <Instance>
627 Failed to close cab '{0}', error: {1}.
628 <Parameter Type="System.String" Name="cabinet" />
629 <Parameter Type="System.Int32" Name="error" />
630 </Instance>
631 </Message>
632 <Message Id="ExpectedAttributes" Number="44">
633 <Instance>
634 The {0} element's {1} or {2} attribute was not found; one of these is required.
635 <Parameter Type="System.String" Name="elementName" />
636 <Parameter Type="System.String" Name="attributeName1" />
637 <Parameter Type="System.String" Name="attributeName2" />
638 </Instance>
639 <Instance>
640 The {0} element's {1}, {2}, or {3} attribute was not found; one of these is required.
641 <Parameter Type="System.String" Name="elementName" />
642 <Parameter Type="System.String" Name="attributeName1" />
643 <Parameter Type="System.String" Name="attributeName2" />
644 <Parameter Type="System.String" Name="attributeName3" />
645 </Instance>
646 <Instance>
647 The {0} element's {1}, {2}, {3}, or {4} attribute was not found; one of these is required.
648 <Parameter Type="System.String" Name="elementName" />
649 <Parameter Type="System.String" Name="attributeName1" />
650 <Parameter Type="System.String" Name="attributeName2" />
651 <Parameter Type="System.String" Name="attributeName3" />
652 <Parameter Type="System.String" Name="attributeName4" />
653 </Instance>
654 <Instance>
655 The {0} element's {1}, {2}, {3}, {4}, or {5} attribute was not found; one of these is required.
656 <Parameter Type="System.String" Name="elementName" />
657 <Parameter Type="System.String" Name="attributeName1" />
658 <Parameter Type="System.String" Name="attributeName2" />
659 <Parameter Type="System.String" Name="attributeName3" />
660 <Parameter Type="System.String" Name="attributeName4" />
661 <Parameter Type="System.String" Name="attributeName5" />
662 </Instance>
663 <Instance>
664 The {0} element's {1}, {2}, {3}, {4}, {5}, or {6} attribute was not found; one of these is required.
665 <Parameter Type="System.String" Name="elementName" />
666 <Parameter Type="System.String" Name="attributeName1" />
667 <Parameter Type="System.String" Name="attributeName2" />
668 <Parameter Type="System.String" Name="attributeName3" />
669 <Parameter Type="System.String" Name="attributeName4" />
670 <Parameter Type="System.String" Name="attributeName5" />
671 <Parameter Type="System.String" Name="attributeName6" />
672 </Instance>
673 <Instance>
674 The {0} element's {1}, {2}, {3}, {4}, {5}, {6}, or {7} attribute was not found; one of these is required.
675 <Parameter Type="System.String" Name="elementName" />
676 <Parameter Type="System.String" Name="attributeName1" />
677 <Parameter Type="System.String" Name="attributeName2" />
678 <Parameter Type="System.String" Name="attributeName3" />
679 <Parameter Type="System.String" Name="attributeName4" />
680 <Parameter Type="System.String" Name="attributeName5" />
681 <Parameter Type="System.String" Name="attributeName6" />
682 <Parameter Type="System.String" Name="attributeName7" />
683 </Instance>
684 </Message>
685 <Message Id="ExpectedAttributesWithOtherAttribute" Number="45">
686 <Instance>
687 The {0} element's {1} or {2} attribute was not found; at least one of these attributes must be specified.
688 <Parameter Type="System.String" Name="elementName" />
689 <Parameter Type="System.String" Name="attributeName1" />
690 <Parameter Type="System.String" Name="attributeName2" />
691 </Instance>
692 <Instance>
693 The {0} element's {1} or {2} attribute was not found; one of these is required when attribute {3} is present.
694 <Parameter Type="System.String" Name="elementName" />
695 <Parameter Type="System.String" Name="attributeName1" />
696 <Parameter Type="System.String" Name="attributeName2" />
697 <Parameter Type="System.String" Name="otherAttributeName" />
698 </Instance>
699 <Instance>
700 The {0} element's {1} or {2} attribute was not found; one of these is required when attribute {3} has a value of '{4}'.
701 <Parameter Type="System.String" Name="elementName" />
702 <Parameter Type="System.String" Name="attributeName1" />
703 <Parameter Type="System.String" Name="attributeName2" />
704 <Parameter Type="System.String" Name="otherAttributeName" />
705 <Parameter Type="System.String" Name="otherAttributeValue" />
706 </Instance>
707 </Message>
708 <Message Id="ExpectedAttributesWithoutOtherAttribute" Number="46">
709 <Instance>
710 The {0} element's {1} or {2} attribute was not found; one of these is required without attribute {3} present.
711 <Parameter Type="System.String" Name="elementName" />
712 <Parameter Type="System.String" Name="attributeName1" />
713 <Parameter Type="System.String" Name="attributeName2" />
714 <Parameter Type="System.String" Name="otherAttributeName" />
715 </Instance>
716 </Message>
717 <Message Id="MissingTypeLibFile" Number="47">
718 <Instance>
719 The {0} element is non-advertised and therefore requires a parent {1} element.
720 <Parameter Type="System.String" Name="elementName" />
721 <Parameter Type="System.String" Name="fileElementName" />
722 </Instance>
723 </Message>
724 <Message Id="InvalidDocumentElement" Number="48">
725 <Instance>
726 The document element name '{0}' is invalid. A WiX {1} file must use '{2}' as the document element name.
727 <Parameter Type="System.String" Name="elementName" />
728 <Parameter Type="System.String" Name="fileType" />
729 <Parameter Type="System.String" Name="expectedElementName" />
730 </Instance>
731 </Message>
732 <Message Id="ExpectedAttributeInElementOrParent" Number="49">
733 <Instance>
734 The {0}/@{1} attribute was not found or empty; it is required, or it can be specified in the parent {2} element.
735 <Parameter Type="System.String" Name="elementName" />
736 <Parameter Type="System.String" Name="attributeName" />
737 <Parameter Type="System.String" Name="parentElementName" />
738 </Instance>
739 <Instance>
740 The {0}/@{1} attribute was not found or empty; it is required, or it can be specified in the parent {2}/@{3} attribute.
741 <Parameter Type="System.String" Name="elementName" />
742 <Parameter Type="System.String" Name="attributeName" />
743 <Parameter Type="System.String" Name="parentElementName" />
744 <Parameter Type="System.String" Name="parentAttributeName" />
745 </Instance>
746 </Message>
747 <Message Id="UnauthorizedAccess" Number="50" SourceLineNumbers="no">
748 <Instance>
749 Access to the path '{0}' is denied.
750 <Parameter Type="System.String" Name="filePath" />
751 </Instance>
752 </Message>
753 <Message Id="IllegalModuleExclusionLanguageAttributes" Number="51">
754 <Instance>Cannot set both ExcludeLanguage and ExcludeExceptLanguage attributes on a ModuleExclusion element.</Instance>
755 </Message>
756 <Message Id="NoFirstControlSpecified" Number="52">
757 <Instance>
758 The '{0}' dialog element does not have a valid tabbable control. You must either have a tabbable control that is not marked TabSkip='yes', or you must mark a control TabSkip='no'. If you have a page with no tabbable controls (a progress page, for example), you might want to set the first Text control to be TabSkip='no'.
759 <Parameter Type="System.String" Name="dialogName" />
760 </Instance>
761 </Message>
762 <Message Id="NoDataForColumn" Number="53">
763 <Instance>
764 There is no data for column '{0}' in a contained row of custom table '{1}'. A non-null value must be supplied for this column.
765 <Parameter Type="System.String" Name="columnName" />
766 <Parameter Type="System.String" Name="tableName" />
767 </Instance>
768 </Message>
769 <Message Id="ValueAndMaskMustBeSameLength" Number="54">
770 <Instance>
771 The FileTypeMask/@Value and FileTypeMask/@Mask attributes must be the same length.
772 </Instance>
773 </Message>
774 <Message Id="TooManySearchElements" Number="55">
775 <Instance>
776 Only one search element can appear under a '{0}' element.
777 <Parameter Type="System.String" Name="elementName" />
778 </Instance>
779 </Message>
780 <Message Id="IllegalAttributeExceptOnElement" Number="56">
781 <Instance>
782 The {1} attribute can only be specified on the {2} element.
783 <Parameter Type="System.String" Name="elementName" />
784 <Parameter Type="System.String" Name="attributeName" />
785 <Parameter Type="System.String" Name="expectedElementName" />
786 </Instance>
787 </Message>
788 <Message Id="SearchElementRequired" Number="57">
789 <Instance>
790 A '{0}' element must have a search element as a child.
791 <Parameter Type="System.String" Name="elementName" />
792 </Instance>
793 </Message>
794 <Message Id="MultipleIdentifiersFound" Number="58">
795 <Instance>
796 Under a '{0}' element, multiple identifiers were found: '{1}' and '{2}'. All search elements under this element must have the same id.
797 <Parameter Type="System.String" Name="elementName" />
798 <Parameter Type="System.String" Name="identifier" />
799 <Parameter Type="System.String" Name="mismatchIdentifier" />
800 </Instance>
801 </Message>
802 <Message Id="AdvertiseStateMustMatch" Number="59">
803 <Instance>
804 The advertise state of this element: '{0}', does not match the advertise state set on the parent element: '{1}'.
805 <Parameter Type="System.String" Name="advertiseState" />
806 <Parameter Type="System.String" Name="parentAdvertiseState" />
807 </Instance>
808 </Message>
809 <Message Id="DuplicateContextValue" Number="60">
810 <Instance>
811 The context value '{0}' was duplicated. Context values must be distinct.
812 <Parameter Type="System.String" Name="contextValue" />
813 </Instance>
814 </Message>
815 <Message Id="RelativePathForRegistryElement" Number="61">
816 <Instance>
817 Cannot convert RelativePath into Registry elements.
818 </Instance>
819 </Message>
820 <Message Id="IllegalAttributeWhenNested" Number="62">
821 <Instance>
822 The {0}/@{1} attribute cannot be specified when the {0} element is nested underneath a {2} element. If this {0} is a member of a ComponentGroup where ComponentGroup/@{1} is set, then the {0}/@{1} attribute should be removed.
823 <Parameter Type="System.String" Name="elementName" />
824 <Parameter Type="System.String" Name="attributeName" />
825 <Parameter Type="System.String" Name="parentElement" />
826 </Instance>
827 </Message>
828 <Message Id="ExpectedElement" Number="63">
829 <Instance>
830 A {0} element must have at least one child element of type {1}.
831 <Parameter Type="System.String" Name="elementName" />
832 <Parameter Type="System.String" Name="childName" />
833 </Instance>
834 <Instance>
835 A {0} element must have at least one child element of type {1} or {2}.
836 <Parameter Type="System.String" Name="elementName" />
837 <Parameter Type="System.String" Name="childName1" />
838 <Parameter Type="System.String" Name="childName2" />
839 </Instance>
840 <Instance>
841 A {0} element must have at least one child element of type {1}, {2}, or {3}.
842 <Parameter Type="System.String" Name="elementName" />
843 <Parameter Type="System.String" Name="childName1" />
844 <Parameter Type="System.String" Name="childName2" />
845 <Parameter Type="System.String" Name="childName3" />
846 </Instance>
847 <Instance>
848 A {0} element must have at least one child element of type {1}, {2}, {3}, or {4}.
849 <Parameter Type="System.String" Name="elementName" />
850 <Parameter Type="System.String" Name="childName1" />
851 <Parameter Type="System.String" Name="childName2" />
852 <Parameter Type="System.String" Name="childName3" />
853 <Parameter Type="System.String" Name="childName4" />
854 </Instance>
855 </Message>
856 <Message Id="RegistryRootInvalid" Number="64">
857 <Instance>
858 Registry/@Root attribute is invalid on a nested Registry element. Either remove the Root attribute or move the Registry element so it is not nested under another Registry element.
859 </Instance>
860 </Message>
861 <Message Id="IllegalYesNoDefaultValue" Number="65">
862 <Instance>
863 The {0}/@{1} attribute's value, '{2}', is not a legal yes/no/default value. The only legal values are 'default', 'no' or 'yes'.
864 <Parameter Type="System.String" Name="elementName" />
865 <Parameter Type="System.String" Name="attributeName" />
866 <Parameter Type="System.String" Name="value" />
867 </Instance>
868 </Message>
869 <Message Id="IllegalAttributeInMergeModule" Number="66">
870 <Instance>
871 The {0}/@{1} attribute cannot be specified in a merge module.
872 <Parameter Type="System.String" Name="elementName" />
873 <Parameter Type="System.String" Name="attributeName" />
874 </Instance>
875 </Message>
876 <Message Id="GenericReadNotAllowed" Number="67">
877 <Instance>Permission elements cannot have GenericRead as the only permission specified. Include at least one other permission.</Instance>
878 </Message>
879 <Message Id="IllegalAttributeWithInnerText" Number="68">
880 <Instance>
881 The {0}/@{1} attribute cannot be specified when the element has body text as well. Specify either the attribute or the body, but not both.
882 <Parameter Type="System.String" Name="elementName" />
883 <Parameter Type="System.String" Name="attributeName" />
884 </Instance>
885 </Message>
886 <Message Id="SearchElementRequiredWithAttribute" Number="69">
887 <Instance>
888 A {0} element must have a search element as a child when the {0}/@{1} attribute has the value '{2}'.
889 <Parameter Type="System.String" Name="elementName" />
890 <Parameter Type="System.String" Name="attributeName" />
891 <Parameter Type="System.String" Name="attributeValue" />
892 </Instance>
893 </Message>
894 <Message Id="CannotAuthorSpecialProperties" Number="70">
895 <Instance>
896 The {0} property was specified. Special MSI properties cannot be authored. Use the attributes on the Property element instead.
897 <Parameter Type="System.String" Name="propertyName" />
898 </Instance>
899 </Message>
900 <Message Id="NeedSequenceBeforeOrAfter" Number="72">
901 <Instance>
902 A {0} element must have a Before attribute, After attribute, or a Sequence attribute.
903 <Parameter Type="System.String" Name="elementName" />
904 </Instance>
905 </Message>
906 <Message Id="ValueNotSupported" Number="73">
907 <Instance>
908 The {0}/@{1} attribute's value, '{2}, is not supported by the Windows Installer.
909 <Parameter Type="System.String" Name="elementName" />
910 <Parameter Type="System.String" Name="attributeName" />
911 <Parameter Type="System.String" Name="attributeValue" />
912 </Instance>
913 </Message>
914 <Message Id="TabbableControlNotAllowedInBillboard" Number="74">
915 <Instance>
916 A {0} element was specified with Type='{1}' and TabSkip='no'. Tabbable controls are not allowed in Billboards.
917 <Parameter Type="System.String" Name="elementName" />
918 <Parameter Type="System.String" Name="controlType" />
919 </Instance>
920 </Message>
921 <Message Id="CheckBoxValueOnlyValidWithCheckBox" Number="75">
922 <Instance>
923 A {0} element was specified with Type='{1}' and a CheckBoxValue. Check box values can only be specified with Type='CheckBox'.
924 <Parameter Type="System.String" Name="elementName" />
925 <Parameter Type="System.String" Name="controlType" />
926 </Instance>
927 </Message>
928 <Message Id="CabFileDoesNotExist" Number="76" SourceLineNumbers="no">
929 <Instance>
930 Attempted to extract cab '{0}' from merge module '{1}' to directory '{2}'. The cab file was not found. This usually means that you have a merge module without a cabinet inside it.
931 <Parameter Type="System.String" Name="cabName" />
932 <Parameter Type="System.String" Name="mergeModulePath" />
933 <Parameter Type="System.String" Name="directoryName" />
934 </Instance>
935 </Message>
936 <Message Id="RadioButtonTypeInconsistent" Number="77">
937 <Instance>All RadioButton elements in a RadioButtonGroup must be consistent with their use of the Bitmap, Icon, and Text attributes. Ensure all of the RadioButton elements in this group have the same attribute specified.</Instance>
938 </Message>
939 <Message Id="RadioButtonBitmapAndIconDisallowed" Number="78">
940 <Instance>RadioButtonGroup elements that contain RadioButton elements with Bitmap or Icon attributes set to "yes" can only be specified under a Control element. Move your RadioButtonGroup element as a child of the appropriate Control element.</Instance>
941 </Message>
942 <Message Id="IllegalSuppressWarningId" Number="79" SourceLineNumbers="no">
943 <Instance>
944 Illegal value '{0}' for the -sw&lt;N&gt; command line option. Specify a particular warning number, like '-sw6' to suppress the warning with ID 6, or '-sw' alone to suppress all warnings.
945 <Parameter Type="System.String" Name="suppressedId" />
946 </Instance>
947 </Message>
948 <Message Id="PreprocessorIllegalForeachVariable" Number="80">
949 <Instance>
950 The variable named '{0}' is not allowed in a foreach expression.
951 <Parameter Type="System.String" Name="variableName" />
952 </Instance>
953 </Message>
954 <Message Id="PreprocessorMissingParameterPrefix" Number="81">
955 <Instance>
956 Could not find the prefix in parameter name: '{0}'.
957 <Parameter Type="System.String" Name="parameterName" />
958 </Instance>
959 </Message>
960 <Message Id="PreprocessorExtensionForParameterMissing" Number="82">
961 <Instance>
962 Could not find the preprocessor extension for parameter '{0}'. A preprocessor extension is expected because the parameter prefix, '{1}', is not one of the standard types: 'env', 'res', 'sys', or 'var'.
963 <Parameter Type="System.String" Name="parameterName" />
964 <Parameter Type="System.String" Name="parameterPrefix" />
965 </Instance>
966 </Message>
967 <Message Id="CannotFindFile" Number="83">
968 <Instance>
969 The file with id '{0}' and name '{1}' could not be found with source path: '{2}'.
970 <Parameter Type="System.String" Name="fileId" />
971 <Parameter Type="System.String" Name="fileName" />
972 <Parameter Type="System.String" Name="filePath" />
973 </Instance>
974 </Message>
975 <Message Id="BinderFileManagerMissingFile" Number="84">
976 <Instance>
977 {0}
978 <Parameter Type="System.String" Name="exceptionMessage" />
979 </Instance>
980 </Message>
981 <Message Id="InvalidFileName" Number="85">
982 <Instance>
983 Invalid file name '{0}'.
984 <Parameter Type="System.String" Name="fileName" />
985 </Instance>
986 </Message>
987 <Message Id="ReferenceLoopDetected" Number="86">
988 <Instance>
989 A circular reference of groups was detected. The infinite loop includes: {0}. Group references must form a directed acyclic graph.
990 <Parameter Type="System.String" Name="loopList" />
991 </Instance>
992 </Message>
993 <Message Id="GuidContainsLowercaseLetters" Number="87">
994 <Instance>
995 The {0}/@{1} attribute's value, '{2}', is a mixed-case guid. All letters in a guid value should be uppercase.
996 <Parameter Type="System.String" Name="elementName" />
997 <Parameter Type="System.String" Name="attributeName" />
998 <Parameter Type="System.String" Name="value" />
999 </Instance>
1000 </Message>
1001 <Message Id="InvalidDateTimeFormat" Number="88">
1002 <Instance>
1003 The {0}/@{1} attribute's value '{2}' is not a valid date/time value. A date/time value should follow the format YYYY-MM-DDTHH:mm:ss.
1004 <Parameter Type="System.String" Name="elementName" />
1005 <Parameter Type="System.String" Name="attributeName" />
1006 <Parameter Type="System.String" Name="value" />
1007 </Instance>
1008 </Message>
1009 <Message Id="MultipleEntrySections" Number="89">
1010 <Instance>
1011 Multiple entry sections '{0}' and '{1}' found. Only one entry section may be present in a single target.
1012 <Parameter Type="System.String" Name="sectionName1" />
1013 <Parameter Type="System.String" Name="sectionName2" />
1014 </Instance>
1015 </Message>
1016 <Message Id="MultipleEntrySections2" Number="90">
1017 <Instance>Location of entry section related to previous error.</Instance>
1018 </Message>
1019 <Message Id="DuplicateSymbol" Number="91">
1020 <Instance>
1021 Duplicate symbol '{0}' found. This typically means that an Id is duplicated. Access modifiers (internal, protected, private) cannot prevent these conflicts. Ensure all your identifiers of a given type (File, Component, Feature) are unique.
1022 <Parameter Type="System.String" Name="symbolName" />
1023 </Instance>
1024 <Instance>
1025 Duplicate symbol '{0}' referenced by {1}. This typically means that an Id is duplicated. Ensure all your identifiers of a given type (File, Component, Feature) are unique or use an access modifier to scope the identfier.
1026 <Parameter Type="System.String" Name="symbolName" />
1027 <Parameter Type="System.String" Name="referencingSourceLineNumber" />
1028 </Instance>
1029 </Message>
1030 <Message Id="DuplicateSymbol2" Number="92">
1031 <Instance>Location of symbol related to previous error.</Instance>
1032 </Message>
1033 <Message Id="MissingEntrySection" Number="93" SourceLineNumbers="no">
1034 <Instance>
1035 Could not find entry section in provided list of intermediates. Expected section of type '{0}'.
1036 <Parameter Type="System.String" Name="sectionType" />
1037 </Instance>
1038 </Message>
1039 <Message Id="UnresolvedReference" Number="94">
1040 <Instance>
1041 The identifier '{0}' could not be found. Ensure you have typed the reference correctly and that all the necessary inputs are provided to the linker.
1042 <Parameter Type="System.String" Name="symbolName" />
1043 </Instance>
1044 <Instance>
1045 The identifier '{0}' is inaccessible due to its protection level.
1046 <Parameter Type="System.String" Name="symbolName" />
1047 <Parameter Type="WixToolset.Data.AccessModifier" Name="accessModifier" />
1048 </Instance>
1049 </Message>
1050 <Message Id="MultiplePrimaryReferences" Number="95">
1051 <Instance>
1052 Multiple primary references were found for {0} '{1}' in {2} '{3}' and {4} '{5}'.
1053 <Parameter Type="System.String" Name="crefChildType" />
1054 <Parameter Type="System.String" Name="crefChildId" />
1055 <Parameter Type="System.String" Name="crefParentType" />
1056 <Parameter Type="System.String" Name="crefParentId" />
1057 <Parameter Type="System.String" Name="conflictParentType" />
1058 <Parameter Type="System.String" Name="conflictParentId" />
1059 </Instance>
1060 </Message>
1061 <Message Id="ComponentReferencedTwice" Number="96">
1062 <Instance>
1063 Component {0} cannot be contained in a Module twice.
1064 <Parameter Type="System.String" Name="crefChildId" />
1065 </Instance>
1066 </Message>
1067 <Message Id="DuplicateModuleFileIdentifier" Number="97">
1068 <Instance>
1069 The merge module '{0}' contains a file identifier, '{1}', that is duplicated either in another merge module or in a File/@Id attribute. File identifiers must be unique. Please change one of the file identifiers to a different value.
1070 <Parameter Type="System.String" Name="moduleId" />
1071 <Parameter Type="System.String" Name="fileId" />
1072 </Instance>
1073 </Message>
1074 <Message Id="DuplicateModuleCaseInsensitiveFileIdentifier" Number="98">
1075 <Instance>
1076 The merge module '{0}' contains 2 or more file identifiers that only differ by case: '{1}' and '{2}'. The WiX toolset extracts merge module files to the file system using these identifiers. Since most file systems are not case-sensitive a collision is likely. Please contact the owner of the merge module for a fix.
1077 <Parameter Type="System.String" Name="moduleId" />
1078 <Parameter Type="System.String" Name="fileId1" />
1079 <Parameter Type="System.String" Name="fileId2" />
1080 </Instance>
1081 </Message>
1082 <Message Id="ImplicitComponentKeyPath" Number="99">
1083 <Instance>
1084 The component '{0}' does not have an explicit key path specified. If the ordering of the elements under the Component element changes, the key path will also change. To prevent accidental changes, the key path should be set to 'yes' in one of the following locations: Component/@KeyPath, File/@KeyPath, ODBCDataSource/@KeyPath, or Registry/@KeyPath.
1085 <Parameter Type="System.String" Name="componentId" />
1086 </Instance>
1087 </Message>
1088 <Message Id="LocalizationVariableUnknown" Number="102">
1089 <Instance>
1090 The localization variable !(loc.{0}) is unknown. Please ensure the variable is defined.
1091 <Parameter Type="System.String" Name="variableId" />
1092 </Instance>
1093 </Message>
1094 <Message Id="FileNotFound" Number="103">
1095 <Instance>
1096 The system cannot find the file '{0}'.
1097 <Parameter Type="System.String" Name="file" />
1098 </Instance>
1099 <Instance>
1100 The system cannot find the file '{0}' with type '{1}'.
1101 <Parameter Type="System.String" Name="file" />
1102 <Parameter Type="System.String" Name="fileType" />
1103 </Instance>
1104 </Message>
1105 <Message Id="InvalidXml" Number="104">
1106 <Instance>
1107 Not a valid {0} file; detail: {1}
1108 <Parameter Type="System.String" Name="fileType" />
1109 <Parameter Type="System.String" Name="detail" />
1110 </Instance>
1111 </Message>
1112 <Message Id="ProgIdNestedTooDeep" Number="105">
1113 <Instance>ProgId elements may not be nested more than 1 level deep.</Instance>
1114 </Message>
1115 <Message Id="CanNotHaveTwoParents" Number="106">
1116 <Instance>
1117 The DirectorySearchRef {0} can not have a Parent attribute {1} and also be nested under parent element {2}
1118 <Parameter Type="System.String" Name="directorySearch" />
1119 <Parameter Type="System.String" Name="parentAttribute" />
1120 <Parameter Type="System.String" Name="parentElement" />
1121 </Instance>
1122 </Message>
1123 <Message Id="SchemaValidationFailed" Number="107">
1124 <Instance>
1125 Schema validation failed with the following error at line {1}, column {2}: {0}
1126 <Parameter Type="System.String" Name="validationError" />
1127 <Parameter Type="System.Int32" Name="lineNumber" />
1128 <Parameter Type="System.Int32" Name="linePosition" />
1129 </Instance>
1130 </Message>
1131 <Message Id="IllegalVersionValue" Number="108">
1132 <Instance>
1133 The {0}/@{1} attribute's value, '{2}', is not a valid version. Legal version values should look like 'x.x.x.x' where x is an integer from 0 to 65534.
1134 <Parameter Type="System.String" Name="elementName" />
1135 <Parameter Type="System.String" Name="attributeName" />
1136 <Parameter Type="System.String" Name="value" />
1137 </Instance>
1138 </Message>
1139 <Message Id="CustomTableNameTooLong" Number="109">
1140 <Instance>
1141 The {0}/@{1} attribute's value, '{2}', is too long for a table name. It cannot be more than than 31 characters long.
1142 <Parameter Type="System.String" Name="elementName" />
1143 <Parameter Type="System.String" Name="attributeName" />
1144 <Parameter Type="System.String" Name="value" />
1145 </Instance>
1146 </Message>
1147 <Message Id="CustomTableIllegalColumnWidth" Number="110">
1148 <Instance>
1149 The {0}/@{1} attribute's value, '{2}', is not a valid column width. Valid column widths are 2 or 4.
1150 <Parameter Type="System.String" Name="elementName" />
1151 <Parameter Type="System.String" Name="attributeName" />
1152 <Parameter Type="System.Int32" Name="value" />
1153 </Instance>
1154 </Message>
1155 <Message Id="CustomTableMissingPrimaryKey" Number="111">
1156 <Instance>The CustomTable is missing a Column element with the PrimaryKey attribute set to 'yes'. At least one column must be marked as the primary key.</Instance>
1157 </Message>
1158 <Message Id="TypeSpecificationForExtensionRequired" Number="113" SourceLineNumbers="no">
1159 <Instance>
1160 The parameter '{0}' must be followed by the extension's type specification. The type specification should be a fully qualified class and assembly identity, for example: "MyNamespace.MyClass,myextension.dll".
1161 <Parameter Type="System.String" Name="parameter" />
1162 </Instance>
1163 </Message>
1164 <Message Id="FilePathRequired" SourceLineNumbers="no" Number="114">
1165 <Instance>
1166 The parameter '{0}' must be followed by a file path.
1167 <Parameter Type="System.String" Name="parameter" />
1168 </Instance>
1169 </Message>
1170 <Message Id="DirectoryPathRequired" Number="115" SourceLineNumbers="no">
1171 <Instance>
1172 The parameter '{0}' must be followed by a directory path.
1173 <Parameter Type="System.String" Name="parameter" />
1174 </Instance>
1175 </Message>
1176 <Message Id="FileOrDirectoryPathRequired" Number="116" SourceLineNumbers="no">
1177 <Instance>
1178 The parameter '{0}' must be followed by a file or directory path. To specify a directory path the string must end with a backslash, for example: "C:\Path\".
1179 <Parameter Type="System.String" Name="parameter" />
1180 </Instance>
1181 </Message>
1182 <Message Id="PathCannotContainQuote" Number="117" SourceLineNumbers="no">
1183 <Instance>
1184 Path '{0}' contains a literal quote character. Quotes are often accidentally introduced when trying to refer to a directory path with spaces in it, such as "C:\Out Directory\" -- the backslash before the quote acts an escape character. The correct representation for that path is: "C:\Out Directory\\".
1185 <Parameter Type="System.String" Name="fileName" />
1186 </Instance>
1187 </Message>
1188 <Message Id="AdditionalArgumentUnexpected" Number="118" SourceLineNumbers="no">
1189 <Instance>
1190 Additional argument '{0}' was unexpected. Remove the argument and add the '-?' switch for more information.
1191 <Parameter Type="System.String" Name="argument" />
1192 </Instance>
1193 </Message>
1194 <Message Id="RegistryNameValueIncorrect" Number="119">
1195 <Instance>
1196 The {0}/@{1} attribute's value, '{2}', is incorrect. It should not contain values of '+', '-', or '*' when the {0}/@Value attribute is empty. Instead, use the proper element and attributes: for Name='+' use RegistryKey/@Action='createKey', for Name='-' use RemoveRegistryKey/@Action='removeOnUninstall', for Name='*' use RegistryKey/@Action='createAndRemoveOnUninstall'.
1197 <Parameter Type="System.String" Name="elementName" />
1198 <Parameter Type="System.String" Name="attributeName" />
1199 <Parameter Type="System.String" Name="value" />
1200 </Instance>
1201 </Message>
1202 <Message Id="FamilyNameTooLong" Number="120">
1203 <Instance>
1204 The {0}/@{1} attribute's value, '{2}', is {3} characters long. This is too long for a family name because the maximum allowed length is 8 characters long.
1205 <Parameter Type="System.String" Name="elementName" />
1206 <Parameter Type="System.String" Name="attributeName" />
1207 <Parameter Type="System.String" Name="value" />
1208 <Parameter Type="System.Int32" Name="length" />
1209 </Instance>
1210 </Message>
1211 <Message Id="IllegalFamilyName" Number="121">
1212 <Instance>
1213 The {0}/@{1} attribute's value, '{2}', contains illegal characters for a family name. Legal values include letters, numbers, and underscores.
1214 <Parameter Type="System.String" Name="elementName" />
1215 <Parameter Type="System.String" Name="attributeName" />
1216 <Parameter Type="System.String" Name="value" />
1217 </Instance>
1218 </Message>
1219 <Message Id="IllegalLongValue" Number="122">
1220 <Instance>
1221 The {0}/@{1} attribute's value, '{2}', is not a legal long value. Legal long values are from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.
1222 <Parameter Type="System.String" Name="elementName" />
1223 <Parameter Type="System.String" Name="attributeName" />
1224 <Parameter Type="System.String" Name="value" />
1225 </Instance>
1226 </Message>
1227 <Message Id="IntegralValueOutOfRange" Number="123">
1228 <Instance>
1229 The {0}/@{1} attribute's value, '{2}', is not in the range of legal values. Legal values for this attribute are from {3} to {4}.
1230 <Parameter Type="System.String" Name="elementName" />
1231 <Parameter Type="System.String" Name="attributeName" />
1232 <Parameter Type="System.Int32" Name="value" />
1233 <Parameter Type="System.Int32" Name="minimum" />
1234 <Parameter Type="System.Int32" Name="maximum" />
1235 </Instance>
1236 <Instance>
1237 The {0}/@{1} attribute's value, '{2}', is not in the range of legal values. Legal values for this attribute are from {3} to {4}.
1238 <Parameter Type="System.String" Name="elementName" />
1239 <Parameter Type="System.String" Name="attributeName" />
1240 <Parameter Type="System.Int64" Name="value" />
1241 <Parameter Type="System.Int64" Name="minimum" />
1242 <Parameter Type="System.Int64" Name="maximum" />
1243 </Instance>
1244 </Message>
1245 <Message Id="DuplicateExtensionXmlSchemaNamespace" Number="125" SourceLineNumbers="no">
1246 <Instance>
1247 The extension '{0}' uses the same xml schema namespace, '{1}', as previously loaded extension '{2}'. Please either remove one of the extensions or rename the xml schema namespace to avoid the collision.
1248 <Parameter Type="System.String" Name="extension" />
1249 <Parameter Type="System.String" Name="extensionXmlSchemaNamespace" />
1250 <Parameter Type="System.String" Name="collidingExtension" />
1251 </Instance>
1252 </Message>
1253 <Message Id="DuplicateExtensionTable" Number="126" SourceLineNumbers="no">
1254 <Instance>
1255 The extension '{0}' contains a definition for table '{1}' that collides with a previously loaded table definition. Please remove one of the conflicting extensions or rename one of the tables to avoid the collision.
1256 <Parameter Type="System.String" Name="extension" />
1257 <Parameter Type="System.String" Name="tableName" />
1258 </Instance>
1259 </Message>
1260 <Message Id="DuplicateExtensionPreprocessorType" Number="127" SourceLineNumbers="no">
1261 <Instance>
1262 The extension '{0}' uses the same preprocessor variable prefix, '{1}', as previously loaded extension '{2}'. Please remove one of the extensions or rename the prefix to avoid the collision.
1263 <Parameter Type="System.String" Name="extension" />
1264 <Parameter Type="System.String" Name="variablePrefix" />
1265 <Parameter Type="System.String" Name="collidingExtension" />
1266 </Instance>
1267 </Message>
1268 <Message Id="FileInUse" Number="128">
1269 <Instance>
1270 The process can not access the file '{0}' because it is being used by another process.
1271 <Parameter Type="System.String" Name="file" />
1272 </Instance>
1273 </Message>
1274 <Message Id="CannotOpenMergeModule" Number="129">
1275 <Instance>
1276 Cannot open the merge module '{0}' from file '{1}'.
1277 <Parameter Type="System.String" Name="mergeModuleIdentifier" />
1278 <Parameter Type="System.String" Name="mergeModuleFile" />
1279 </Instance>
1280 </Message>
1281 <Message Id="DuplicatePrimaryKey" Number="130">
1282 <Instance>
1283 The primary key '{0}' is duplicated in table '{1}'. Please remove one of the entries or rename a part of the primary key to avoid the collision.
1284 <Parameter Type="System.String" Name="primaryKey" />
1285 <Parameter Type="System.String" Name="tableName" />
1286 </Instance>
1287 </Message>
1288 <Message Id="FileIdentifierNotFound" Number="131">
1289 <Instance>
1290 The file row with identifier '{0}' could not be found.
1291 <Parameter Type="System.String" Name="fileIdentifier" />
1292 </Instance>
1293 </Message>
1294 <Message Id="InvalidAssemblyFile" Number="132">
1295 <Instance>
1296 The assembly file '{0}' appears to be invalid. Please ensure this is a valid assembly file and that the user has the appropriate access rights to this file. More information: {1}
1297 <Parameter Type="System.String" Name="assemblyFile" />
1298 <Parameter Type="System.String" Name="moreInformation" />
1299 </Instance>
1300 </Message>
1301 <Message Id="ExpectedEndElement" Number="133">
1302 <Instance>
1303 The end element matching the '{0}' start element was not found.
1304 <Parameter Type="System.String" Name="elementName" />
1305 </Instance>
1306 </Message>
1307 <Message Id="IllegalCodepage" Number="134" SourceLineNumbers="no">
1308 <Instance>
1309 The code page '{0}' is not a valid Windows code page. Update the database's code page by modifying one of the following attributes: Product/@Codepage, Module/@Codepage, Patch/@Codepage, PatchCreation/@Codepage, or WixLocalization/@Codepage.
1310 <Parameter Type="System.Int32" Name="codepage" />
1311 </Instance>
1312 </Message>
1313 <Message Id="ExpectedMediaCabinet" Number="135">
1314 <Instance>
1315 The file '{0}' should be compressed but is not part of a compressed media. Files will be compressed if either the File/@Compressed or Package/@Compressed attributes are set to 'yes'. This can be fixed by setting the Media/@Cabinet attribute for media '{1}'.
1316 <Parameter Type="System.String" Name="fileId" />
1317 <Parameter Type="System.Int32" Name="diskId" />
1318 </Instance>
1319 </Message>
1320 <Message Id="InvalidIdt" Number="136">
1321 <Instance>
1322 There was an error importing the file '{0}'.
1323 <Parameter Type="System.String" Name="idtFile" />
1324 </Instance>
1325 <Instance>
1326 There was an error importing table '{1}' from file '{0}'.
1327 <Parameter Type="System.String" Name="idtFile" />
1328 <Parameter Type="System.String" Name="tableName" />
1329 </Instance>
1330 </Message>
1331 <Message Id="InvalidSequenceTable" Number="137" SourceLineNumbers="no">
1332 <Instance>
1333 Found an invalid sequence table '{0}'.
1334 <Parameter Type="System.String" Name="sequenceTableName" />
1335 </Instance>
1336 </Message>
1337 <Message Id="ExpectedDirectory" Number="138" SourceLineNumbers="no">
1338 <Instance>
1339 The directory '{0}' could not be found.
1340 <Parameter Type="System.String" Name="directory" />
1341 </Instance>
1342 </Message>
1343 <Message Id="ComponentExpectedFeature" Number="139">
1344 <Instance>
1345 The component '{0}' is not assigned to a feature. The component's {1} '{2}' requires it to be assigned to at least one feature.
1346 <Parameter Type="System.String" Name="component" />
1347 <Parameter Type="System.String" Name="type" />
1348 <Parameter Type="System.String" Name="target" />
1349 </Instance>
1350 </Message>
1351 <Message Id="RecursiveAction" Number="140" SourceLineNumbers="no">
1352 <Instance>
1353 The action '{0}' is recursively placed in the '{1}' table.
1354 <Parameter Type="System.String" Name="action" />
1355 <Parameter Type="System.String" Name="tableName" />
1356 </Instance>
1357 </Message>
1358 <Message Id="VersionMismatch" Number="141">
1359 <Instance>
1360 The {0} file format version {1} is not compatible with the expected {0} file format version {2}.
1361 <Parameter Type="System.String" Name="fileType" />
1362 <Parameter Type="System.String" Name="version" />
1363 <Parameter Type="System.String" Name="expectedVersion" />
1364 </Instance>
1365 </Message>
1366 <Message Id="UnexpectedContentNode" Number="142">
1367 <Instance>
1368 The {0} element contains an unexpected xml node of type {1}.
1369 <Parameter Type="System.String" Name="elementName" />
1370 <Parameter Type="System.String" Name="unexpectedNodeType" />
1371 </Instance>
1372 </Message>
1373 <Message Id="UnexpectedColumnCount" Number="143">
1374 <Instance>
1375 A parsed row has more fields that contain data for table '{0}' than are defined. This is potentially because a standard table is being redefined as a custom table or is based on an older table schema.
1376 <Parameter Type="System.String" Name="tableName" />
1377 </Instance>
1378 </Message>
1379 <Message Id="InvalidExtension" Number="144" SourceLineNumbers="no">
1380 <Instance>
1381 The extension '{0}' could not be loaded.
1382 <Parameter Type="System.String" Name="extension" />
1383 </Instance>
1384 <Instance>
1385 The extension '{0}' could not be loaded because of the following reason: {1}
1386 <Parameter Type="System.String" Name="extension" />
1387 <Parameter Type="System.String" Name="invalidReason" />
1388 </Instance>
1389 <Instance>
1390 The extension '{0}' is the wrong type: '{1}'. The expected type was '{2}'.
1391 <Parameter Type="System.String" Name="extension" />
1392 <Parameter Type="System.String" Name="extensionType" />
1393 <Parameter Type="System.String" Name="expectedType" />
1394 </Instance>
1395 <Instance>
1396 The extension '{0}' is the wrong type: '{1}'. The expected type was '{2}' or '{3}'.
1397 <Parameter Type="System.String" Name="extension" />
1398 <Parameter Type="System.String" Name="extensionType" />
1399 <Parameter Type="System.String" Name="expectedType1" />
1400 <Parameter Type="System.String" Name="expectedType2" />
1401 </Instance>
1402 </Message>
1403 <Message Id="InvalidSubExpression" Number="145">
1404 <Instance>
1405 Found invalid subexpression '{0}' in expression '{1}'.
1406 <Parameter Type="System.String" Name="subExpression" />
1407 <Parameter Type="System.String" Name="expression" />
1408 </Instance>
1409 </Message>
1410 <Message Id="UnmatchedPreprocessorInstruction" Number="146">
1411 <Instance>
1412 Found a &lt;?{1}?&gt; processing instruction without a matching &lt;?{0}?&gt; before it.
1413 <Parameter Type="System.String" Name="beginInstruction" />
1414 <Parameter Type="System.String" Name="endInstruction" />
1415 </Instance>
1416 </Message>
1417 <Message Id="NonterminatedPreprocessorInstruction" Number="147">
1418 <Instance>
1419 Found a &lt;?{0}?&gt; processing instruction without a matching &lt;?{1}?&gt; after it.
1420 <Parameter Type="System.String" Name="beginInstruction" />
1421 <Parameter Type="System.String" Name="endInstruction" />
1422 </Instance>
1423 </Message>
1424 <Message Id="ExpectedExpressionAfterNot" Number="148">
1425 <Instance>
1426 Expecting an argument for 'NOT' in expression '{0}'.
1427 <Parameter Type="System.String" Name="expression" />
1428 </Instance>
1429 </Message>
1430 <Message Id="InvalidPreprocessorVariable" Number="149">
1431 <Instance>
1432 Ill-formed preprocessor variable '$({0})'. Variables must have a prefix (like 'var.', 'env.', or 'sys.') and a name at least 1 character long. If the literal string '$({0})' is desired, use '$$({0})'.
1433 <Parameter Type="System.String" Name="variable" />
1434 </Instance>
1435 </Message>
1436 <Message Id="UndefinedPreprocessorVariable" Number="150">
1437 <Instance>
1438 Undefined preprocessor variable '$({0})'.
1439 <Parameter Type="System.String" Name="variableName" />
1440 </Instance>
1441 </Message>
1442 <Message Id="IllegalDefineStatement" Number="151">
1443 <Instance>
1444 The define statement '&lt;?define {0}?&gt;' is not well-formed. Define statements should be in the form &lt;?define variableName = "variable value"?&gt;.
1445 <Parameter Type="System.String" Name="defineStatement" />
1446 </Instance>
1447 </Message>
1448 <Message Id="VariableDeclarationCollision" Number="152">
1449 <Instance>
1450 The variable '{0}' with value '{1}' was previously declared with value '{2}'.
1451 <Parameter Type="System.String" Name="variableName" />
1452 <Parameter Type="System.String" Name="variableValue" />
1453 <Parameter Type="System.String" Name="variableCollidingValue" />
1454 </Instance>
1455 </Message>
1456 <Message Id="CannotReundefineVariable" Number="153">
1457 <Instance>
1458 The variable '{0}' cannot be undefined because its already undefined.
1459 <Parameter Type="System.String" Name="variableName" />
1460 </Instance>
1461 </Message>
1462 <Message Id="IllegalForeach" Number="154">
1463 <Instance>
1464 The foreach statement '{0}' is illegal. The proper format for foreach is &lt;?foreach varName in valueList?&gt;.
1465 <Parameter Type="System.String" Name="foreachStatement" />
1466 </Instance>
1467 </Message>
1468 <Message Id="IllegalParentAttributeWhenNested" Number="155">
1469 <Instance>
1470 The {0}/@{1} attribute cannot be specified when a {2} element is nested underneath the {0} element.
1471 <Parameter Type="System.String" Name="parentElementName" />
1472 <Parameter Type="System.String" Name="parentAttributeName" />
1473 <Parameter Type="System.String" Name="childElement" />
1474 </Instance>
1475 </Message>
1476 <Message Id="ExpectedEndforeach" Number="156">
1477 <Instance>A &lt;?foreach?&gt; statement was found that had no matching &lt;?endforeach?&gt;.</Instance>
1478 </Message>
1479 <Message Id="UnmatchedQuotesInExpression" Number="158">
1480 <Instance>
1481 The quotes don't match in the expression '{0}'.
1482 <Parameter Type="System.String" Name="expression" />
1483 </Instance>
1484 </Message>
1485 <Message Id="UnmatchedParenthesisInExpression" Number="159">
1486 <Instance>
1487 The parenthesis don't match in the expression '{0}'.
1488 <Parameter Type="System.String" Name="expression" />
1489 </Instance>
1490 </Message>
1491 <Message Id="ExpectedVariable" Number="160">
1492 <Instance>
1493 A required variable was missing in the expression '{0}'.
1494 <Parameter Type="System.String" Name="expression" />
1495 </Instance>
1496 </Message>
1497 <Message Id="UnexpectedLiteral" Number="161">
1498 <Instance>
1499 An unexpected literal was found in the expression '{0}'.
1500 <Parameter Type="System.String" Name="expression" />
1501 </Instance>
1502 </Message>
1503 <Message Id="IllegalIntegerInExpression" Number="162">
1504 <Instance>
1505 An illegal number was found in the expression '{0}'.
1506 <Parameter Type="System.String" Name="expression" />
1507 </Instance>
1508 </Message>
1509 <Message Id="UnexpectedPreprocessorOperator" Number="163">
1510 <Instance>
1511 The operator '{0}' is unexpected.
1512 <Parameter Type="System.String" Name="op" />
1513 </Instance>
1514 </Message>
1515 <Message Id="UnexpectedEmptySubexpression" Number="164">
1516 <Instance>
1517 The empty subexpression is unexpected in the expression '{0}'.
1518 <Parameter Type="System.String" Name="expression" />
1519 </Instance>
1520 </Message>
1521 <Message Id="UnexpectedCustomTableColumn" Number="165">
1522 <Instance>
1523 The custom table column '{0}' is unknown.
1524 <Parameter Type="System.String" Name="column" />
1525 </Instance>
1526 </Message>
1527 <Message Id="UnknownCustomTableColumnType" Number="166">
1528 <Instance>
1529 Encountered an unknown custom table column type '{0}'.
1530 <Parameter Type="System.String" Name="columnType" />
1531 </Instance>
1532 </Message>
1533 <Message Id="IllegalFileCompressionAttributes" Number="167">
1534 <Instance>Cannot have both the MsidbFileAttributesCompressed and MsidbFileAttributesNoncompressed options set in a file attributes column.</Instance>
1535 </Message>
1536 <Message Id="OverridableActionCollision" Number="168">
1537 <Instance>
1538 The {0} table contains an action '{1}' that is declared overridable in two different locations. Please remove one of the actions or the Overridable='yes' attribute from one of the actions.
1539 <Parameter Type="System.String" Name="sequenceTableName" />
1540 <Parameter Type="System.String" Name="actionName" />
1541 </Instance>
1542 </Message>
1543 <Message Id="OverridableActionCollision2" Number="169">
1544 <Instance>The location of the action related to previous error.</Instance>
1545 </Message>
1546 <Message Id="ActionCollision" Number="170">
1547 <Instance>
1548 The {0} table contains an action '{1}' that is declared in two different locations. Please remove one of the actions or set the Overridable='yes' attribute on one of their elements.
1549 <Parameter Type="System.String" Name="sequenceTableName" />
1550 <Parameter Type="System.String" Name="actionName" />
1551 </Instance>
1552 </Message>
1553 <Message Id="ActionCollision2" Number="171">
1554 <Instance>The location of the action related to previous error.</Instance>
1555 </Message>
1556 <Message Id="SuppressNonoverridableAction" Number="172">
1557 <Instance>
1558 The {0} table contains an action '{1}' that cannot be suppressed because it is not declared overridable in the base definition. Please stop suppressing the action or make it overridable in its base declaration.
1559 <Parameter Type="System.String" Name="sequenceTableName" />
1560 <Parameter Type="System.String" Name="actionName" />
1561 </Instance>
1562 </Message>
1563 <Message Id="SuppressNonoverridableAction2" Number="173">
1564 <Instance>The location of the non-overridable definition of the action related to previous error.</Instance>
1565 </Message>
1566 <Message Id="CustomActionSequencedInModule" Number="174">
1567 <Instance>
1568 The {0} table contains a custom action '{1}' that has a sequence number specified. The Sequence attribute is not allowed for custom actions in a merge module. Please remove the action or use the Before or After attributes to specify where this action should be sequenced relative to another action.
1569 <Parameter Type="System.String" Name="sequenceTableName" />
1570 <Parameter Type="System.String" Name="actionName" />
1571 </Instance>
1572 </Message>
1573 <Message Id="StandardActionRelativelyScheduledInModule" Number="175">
1574 <Instance>
1575 The {0} table contains a standard action '{1}' that does not have a sequence number specified. The Sequence attribute is required for standard actions in a merge module. Please remove the action or use the Sequence attribute.
1576 <Parameter Type="System.String" Name="sequenceTableName" />
1577 <Parameter Type="System.String" Name="actionName" />
1578 </Instance>
1579 </Message>
1580 <Message Id="ActionCircularDependency" Number="176">
1581 <Instance>
1582 The {0} table contains an action '{1}' that is scheduled to come before or after action '{2}', which is also scheduled to come before or after action '{1}'. Please remove this circular dependency by changing the Before or After attribute for one of the actions.
1583 <Parameter Type="System.String" Name="sequenceTableName" />
1584 <Parameter Type="System.String" Name="actionName1" />
1585 <Parameter Type="System.String" Name="actionName2" />
1586 </Instance>
1587 </Message>
1588 <Message Id="ActionScheduledRelativeToTerminationAction" Number="177">
1589 <Instance>
1590 The {0} table contains an action '{1}' that is scheduled to come before or after action '{2}', which is a special action which only occurs when the installer terminates. These special actions can be identified by their negative sequence numbers. Please schedule the action '{1}' to come before or after a different action.
1591 <Parameter Type="System.String" Name="sequenceTableName" />
1592 <Parameter Type="System.String" Name="actionName1" />
1593 <Parameter Type="System.String" Name="actionName2" />
1594 </Instance>
1595 </Message>
1596 <Message Id="ActionScheduledRelativeToTerminationAction2" Number="178">
1597 <Instance>The location of the special termination action related to previous error(s).</Instance>
1598 </Message>
1599 <Message Id="NoUniqueActionSequenceNumber" Number="179">
1600 <Instance>
1601 The {0} table contains an action '{1}' which cannot have a unique sequence number because it is scheduled before or after action '{2}'. There is not enough room before or after this action to assign a unique sequence number. Please schedule one of the actions differently so that it will be in a position with more sequence numbers available. Please note that sequence numbers must be an integer in the range 1 - 32767 (inclusive).
1602 <Parameter Type="System.String" Name="sequenceTableName" />
1603 <Parameter Type="System.String" Name="actionName1" />
1604 <Parameter Type="System.String" Name="actionName2" />
1605 </Instance>
1606 </Message>
1607 <Message Id="NoUniqueActionSequenceNumber2" Number="180">
1608 <Instance>The location of the sequenced action related to previous error.</Instance>
1609 </Message>
1610 <Message Id="ActionScheduledRelativeToItself" Number="181">
1611 <Instance>
1612 The {0}/@{1} attribute's value '{2}' is invalid because it would make this action dependent upon itself. Please change the value to the name of a different action.
1613 <Parameter Type="System.String" Name="elementName" />
1614 <Parameter Type="System.String" Name="attributeName" />
1615 <Parameter Type="System.String" Name="attributeValue" />
1616 </Instance>
1617 </Message>
1618 <Message Id="MissingTableDefinition" Number="182" SourceLineNumbers="no">
1619 <Instance>
1620 Cannot find the table definitions for the '{0}' table. This is likely due to a typing error or missing extension. Please ensure all the necessary extensions are supplied on the command line with the -ext parameter.
1621 <Parameter Type="System.String" Name="tableName" />
1622 </Instance>
1623 </Message>
1624 <Message Id="ExpectedRowInPatchCreationPackage" Number="183" SourceLineNumbers="no">
1625 <Instance>
1626 Could not find a row in the '{0}' table for this patch creation package. Patch creation packages must contain at least one row in the '{0}' table.
1627 <Parameter Type="System.String" Name="tableName" />
1628 </Instance>
1629 </Message>
1630 <Message Id="UnexpectedTableInMergeModule" Number="184">
1631 <Instance>
1632 An unexpected row in the '{0}' table was found in this merge module. Merge modules cannot contain the '{0}' table.
1633 <Parameter Type="System.String" Name="tableName" />
1634 </Instance>
1635 </Message>
1636 <Message Id="UnexpectedTableInPatchCreationPackage" Number="185">
1637 <Instance>
1638 An unexpected row in the '{0}' table was found in this patch creation package. Patch creation packages cannot contain the '{0}' table.
1639 <Parameter Type="System.String" Name="tableName" />
1640 </Instance>
1641 </Message>
1642 <Message Id="MergeExcludedModule" Number="186">
1643 <Instance>
1644 The module '{0}' cannot be merged because it excludes or is excluded by the merge module with signature '{1}'.
1645 <Parameter Type="System.String" Name="mergeId" />
1646 <Parameter Type="System.String" Name="otherMergeId" />
1647 </Instance>
1648 </Message>
1649 <Message Id="MergeFeatureRequired" Number="187">
1650 <Instance>
1651 The {0} table contains a row with primary key(s) '{1}' which requires a feature to properly merge from the merge module '{2}'. Nest a MergeRef element with an Id attribute set to the value '{3}' under a Feature element to fix this error.
1652 <Parameter Type="System.String" Name="tableName" />
1653 <Parameter Type="System.String" Name="primaryKeys" />
1654 <Parameter Type="System.String" Name="mergeModuleFile" />
1655 <Parameter Type="System.String" Name="mergeId" />
1656 </Instance>
1657 </Message>
1658 <Message Id="MergeLanguageFailed" Number="188">
1659 <Instance>
1660 The language '{0}' is supported but uses an invalid language transform in the merge module '{1}'.
1661 <Parameter Type="System.Int16" Name="language" />
1662 <Parameter Type="System.String" Name="mergeModuleFile" />
1663 </Instance>
1664 </Message>
1665 <Message Id="MergeLanguageUnsupported" Number="189">
1666 <Instance>
1667 Could not locate language '{0}' (or a transform for this language) in the merge module '{1}'. This is likely due to an incorrectly authored Merge/@Language attribute.
1668 <Parameter Type="System.Int16" Name="language" />
1669 <Parameter Type="System.String" Name="mergeModuleFile" />
1670 </Instance>
1671 </Message>
1672 <Message Id="TableDecompilationUnimplemented" Number="190" SourceLineNumbers="no">
1673 <Instance>
1674 Decompilation of the {0} table has not been implemented by its extension.
1675 <Parameter Type="System.String" Name="tableName" />
1676 </Instance>
1677 </Message>
1678 <Message Id="CannotDefaultMismatchedAdvertiseStates" Number="191">
1679 <Instance>
1680 MIME element cannot be marked as the default when its advertise state differs from its parent element. Ensure that the advertise state of the MIME element matches its parents element or remove the Mime/@Advertise attribute completely.
1681 </Instance>
1682 </Message>
1683 <Message Id="VersionIndependentProgIdsCannotHaveIcons" Number="192">
1684 <Instance>
1685 Version independent ProgIds cannot have Icons. Remove the Icon and/or IconIndex attributes from your ProgId element.
1686 </Instance>
1687 </Message>
1688 <Message Id="IllegalAttributeValueWithOtherAttribute" Number="193">
1689 <Instance>
1690 The {0}/@{1} attribute's value, '{2}', cannot be specified with attribute {3} present.
1691 <Parameter Type="System.String" Name="elementName" />
1692 <Parameter Type="System.String" Name="attributeName" />
1693 <Parameter Type="System.String" Name="attributeValue" />
1694 <Parameter Type="System.String" Name="otherAttributeName" />
1695 </Instance>
1696 <Instance>
1697 The {0}/@{1} attribute's value, '{2}', cannot be specified with attribute {3} present with value '{4}'.
1698 <Parameter Type="System.String" Name="elementName" />
1699 <Parameter Type="System.String" Name="attributeName" />
1700 <Parameter Type="System.String" Name="attributeValue" />
1701 <Parameter Type="System.String" Name="otherAttributeName" />
1702 <Parameter Type="System.String" Name="otherAttributeValue" />
1703 </Instance>
1704 </Message>
1705 <Message Id="InvalidMergeLanguage" Number="194">
1706 <Instance>
1707 The Merge element '{0}' specified an invalid language '{1}'. Verify that localization tokens are being properly resolved to a numeric LCID.
1708 <Parameter Type="System.String" Name="mergeId" />
1709 <Parameter Type="System.String" Name="mergeLanguage" />
1710 </Instance>
1711 </Message>
1712 <Message Id="WixVariableCollision" Number="195">
1713 <Instance>
1714 The WiX variable '{0}' is declared in more than one location. Please remove one of the declarations.
1715 <Parameter Type="System.String" Name="variableId" />
1716 </Instance>
1717 </Message>
1718 <Message Id="ExpectedWixVariableValue" Number="196" SourceLineNumbers="no">
1719 <Instance>
1720 The WiX variable '{0}' was declared without a value. Please specify a value for the variable.
1721 <Parameter Type="System.String" Name="variableId" />
1722 </Instance>
1723 </Message>
1724 <Message Id="WixVariableUnknown" Number="197">
1725 <Instance>
1726 The WiX variable !(wix.{0}) is unknown. Please ensure the variable is declared on the command line for light.exe, via a WixVariable element, or inline using the syntax !(wix.{0}=some value which doesn't contain parenthesis).
1727 <Parameter Type="System.String" Name="variableId" />
1728 </Instance>
1729 </Message>
1730 <Message Id="IllegalWixVariablePrefix" Number="198">
1731 <Instance>
1732 The WiX variable $(wix.{0}) uses an illegal prefix '$'. Please use the '!' prefix instead.
1733 <Parameter Type="System.String" Name="variableId" />
1734 </Instance>
1735 </Message>
1736 <Message Id="InvalidWixXmlNamespace" Number="199">
1737 <Instance>
1738 The {0} element has no namespace. Please make the {0} element look like the following: &lt;{0} xmlns="{1}"&gt;.
1739 <Parameter Type="System.String" Name="wixElementName" />
1740 <Parameter Type="System.String" Name="wixNamespace" />
1741 </Instance>
1742 <Instance>
1743 The {0} element has an incorrect namespace of '{1}'. Please make the {0} element look like the following: &lt;{0} xmlns="{2}"&gt;.
1744 <Parameter Type="System.String" Name="wixElementName" />
1745 <Parameter Type="System.String" Name="elementNamespace" />
1746 <Parameter Type="System.String" Name="wixNamespace" />
1747 </Instance>
1748 </Message>
1749 <Message Id="UnhandledExtensionElement" Number="200">
1750 <Instance>
1751 The {0} element contains an unhandled extension element '{1}'. Please ensure that the extension for elements in the '{2}' namespace has been provided.
1752 <Parameter Type="System.String" Name="elementName" />
1753 <Parameter Type="System.String" Name="extensionElementName" />
1754 <Parameter Type="System.String" Name="extensionNamespace" />
1755 </Instance>
1756 </Message>
1757 <Message Id="UnhandledExtensionAttribute" Number="201">
1758 <Instance>
1759 The {0} element contains an unhandled extension attribute '{1}'. Please ensure that the extension for attributes in the '{2}' namespace has been provided.
1760 <Parameter Type="System.String" Name="elementName" />
1761 <Parameter Type="System.String" Name="extensionAttributeName" />
1762 <Parameter Type="System.String" Name="extensionNamespace" />
1763 </Instance>
1764 </Message>
1765 <Message Id="UnsupportedExtensionAttribute" Number="202">
1766 <Instance>
1767 The {0} element contains an unsupported extension attribute '{1}'. The {0} element does not currently support extension attributes. Is the {1} attribute using the correct XML namespace?
1768 <Parameter Type="System.String" Name="elementName" />
1769 <Parameter Type="System.String" Name="extensionElementName" />
1770 </Instance>
1771 </Message>
1772 <Message Id="UnsupportedExtensionElement" Number="203">
1773 <Instance>
1774 The {0} element contains an unsupported extension element '{1}'. The {0} element does not currently support extension elements. Is the {1} element using the correct XML namespace?
1775 <Parameter Type="System.String" Name="elementName" />
1776 <Parameter Type="System.String" Name="extensionElementName" />
1777 </Instance>
1778 </Message>
1779 <Message Id="ValidationError" Number="204">
1780 <Instance>
1781 {0}: {1}
1782 <Parameter Type="System.String" Name="ice" />
1783 <Parameter Type="System.String" Name="message" />
1784 </Instance>
1785 </Message>
1786 <Message Id="IllegalRootDirectory" Number="205">
1787 <Instance>
1788 The Directory with Id '{0}' is not a valid root directory. There may only be a single root directory per product or module and its Id attribute value must be 'TARGETDIR' and its Name attribute value must be 'SourceDir'.
1789 <Parameter Type="System.String" Name="directoryId" />
1790 </Instance>
1791 </Message>
1792 <Message Id="IllegalTargetDirDefaultDir" Number="206">
1793 <Instance>
1794 The 'TARGETDIR' directory has an illegal DefaultDir value of '{0}'. The DefaultDir value is created from the *Name attributes of the Directory element. The TARGETDIR directory is a special directory which must have its Name attribute set to 'SourceDir'.
1795 <Parameter Type="System.String" Name="defaultDir" />
1796 </Instance>
1797 </Message>
1798 <Message Id="TooManyElements" Number="207">
1799 <Instance>
1800 The {0} element contains an unexpected child element '{1}'. The '{1}' element may only occur {2} time(s) under the {0} element.
1801 <Parameter Type="System.String" Name="elementName" />
1802 <Parameter Type="System.String" Name="childElementName" />
1803 <Parameter Type="System.Int32" Name="expectedInstances" />
1804 </Instance>
1805 </Message>
1806 <Message Id="ExpectedBinaryCategory" Number="208">
1807 <Instance>The Column element specifies a binary column but does not have the correct Category specified. Windows Installer requires binary columns to specify their category as binary. Please set the Category attribute's value to 'Binary'.</Instance>
1808 </Message>
1809 <Message Id="RootFeatureCannotFollowParent" Number="209">
1810 <Instance>The Feature element specifies a root feature with an illegal InstallDefault value of 'followParent'. Root features cannot follow their parent feature's install state because they don't have a parent feature. Please remove or change the value of the InstallDefault attribute.</Instance>
1811 </Message>
1812 <Message Id="FeatureNameTooLong" Number="210">
1813 <Instance>
1814 The {0}/@{1} attribute with value '{2}', is too long for a feature name. Due to limitations in the Windows Installer, feature names cannot be longer than 38 characters in length.
1815 <Parameter Type="System.String" Name="elementName" />
1816 <Parameter Type="System.String" Name="attributeName" />
1817 <Parameter Type="System.String" Name="attributeValue" />
1818 </Instance>
1819 </Message>
1820 <Message Id="SignedEmbeddedCabinet" Number="211">
1821 <Instance>The DigitalSignature element cannot be nested under a Media element which specifies EmbedCab='yes'. This is because Windows Installer can only verify the digital signatures of external cabinets. Please either remove the DigitalSignature element or change the value of the Media/@EmbedCab attribute to 'no'.</Instance>
1822 </Message>
1823 <Message Id="ExpectedSignedCabinetName" Number="212">
1824 <Instance>The Media/@Cabinet attribute was not found; it is required when this element contains a DigitalSignature child element. This is because Windows Installer can only verify the digital signatures of external cabinets. Please either remove the DigitalSignature element or specify a valid external cabinet name via the Cabinet attribute.</Instance>
1825 </Message>
1826 <Message Id="IllegalInlineLocVariable" Number="213">
1827 <Instance>
1828 The localization variable '{0}' specifies an illegal inline default value of '{1}'. Localization variables cannot specify default values inline, instead the value should be specified in a WiX localization (.wxl) file.
1829 <Parameter Type="System.String" Name="variableName" />
1830 <Parameter Type="System.String" Name="variableValue" />
1831 </Instance>
1832 </Message>
1833 <Message Id="MergeModuleExpectedFeature" Number="215">
1834 <Instance>
1835 The merge module '{0}' is not assigned to a feature. All merge modules must be assigned to at least one feature.
1836 <Parameter Type="System.String" Name="mergeId" />
1837 </Instance>
1838 </Message>
1839 <Message Id="Win32Exception" Number="216" SourceLineNumbers="no">
1840 <Instance>
1841 An unexpected Win32 exception with error code 0x{0:X} occurred: {1}
1842 <Parameter Type="System.Int32" Name="nativeErrorCode"/>
1843 <Parameter Type="System.String" Name="message" />
1844 </Instance>
1845 <Instance>
1846 An unexpected Win32 exception with error code 0x{0:X} occurred while accessing file '{1}': {2}
1847 <Parameter Type="System.Int32" Name="nativeErrorCode"/>
1848 <Parameter Type="System.String" Name="file"/>
1849 <Parameter Type="System.String" Name="message" />
1850 </Instance>
1851 </Message>
1852 <Message Id="UnexpectedExternalUIMessage" Number="217" SourceLineNumbers="no">
1853 <Instance>
1854 Error executing unknown ICE action. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See http://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: &quot;{0}&quot;.
1855 <Parameter Type="System.String" Name="message" />
1856 </Instance>
1857 <Instance>
1858 Error executing ICE action '{1}'. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See http://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: &quot;{0}&quot;.
1859 <Parameter Type="System.String" Name="message" />
1860 <Parameter Type="System.String" Name="action" />
1861 </Instance>
1862 </Message>
1863 <Message Id="IllegalCabbingThreadCount" Number="218" SourceLineNumbers="no">
1864 <Instance>
1865 Illegal number of threads to create cabinets: '{0}' for -ct &lt;N&gt; command line option. Specify the number of threads to use like -ct 2.
1866 <Parameter Type="System.String" Name="numThreads" />
1867 </Instance>
1868 </Message>
1869 <Message Id="IllegalEnvironmentVariable" Number="219" SourceLineNumbers="no">
1870 <Instance>
1871 The {0} environment variable is set to an invalid value of '{1}'.
1872 <Parameter Type="System.String" Name="environmentVariable" />
1873 <Parameter Type="System.String" Name="value" />
1874 </Instance>
1875 </Message>
1876 <Message Id="InvalidKeyColumn" Number="220" SourceLineNumbers="no">
1877 <Instance>
1878 The definition for the '{0}' table's '{1}' column is an invalid foreign key relationship to the {2} table's column number {3}. It is not a valid foreign key table column number because it is too small (less than 1) or greater than the count of columns in the foreign table's definition.
1879 <Parameter Type="System.String" Name="tableName" />
1880 <Parameter Type="System.String" Name="columnName" />
1881 <Parameter Type="System.String" Name="foreignTableName" />
1882 <Parameter Type="System.Int32" Name="foreignColumnNumber" />
1883 </Instance>
1884 </Message>
1885 <Message Id="CollidingModularizationTypes" Number="221" SourceLineNumbers="no">
1886 <Instance>
1887 The definition for the '{0}' table's '{1}' column is a foreign key relationship to the '{2}' table's column number {3}. The modularization types of the two column definitions differ: one is {4} and the other is {5}. Change one of the modularization types so that they match.
1888 <Parameter Type="System.String" Name="tableName" />
1889 <Parameter Type="System.String" Name="columnName" />
1890 <Parameter Type="System.String" Name="foreignTableName" />
1891 <Parameter Type="System.Int32" Name="foreignColumnNumber" />
1892 <Parameter Type="System.String" Name="modularizationType" />
1893 <Parameter Type="System.String" Name="foreignModularizationType" />
1894 </Instance>
1895 </Message>
1896 <Message Id="CubeFileNotFound" Number="222" SourceLineNumbers="no">
1897 <Instance>
1898 The cube file '{0}' cannot be found. This file is required for MSI validation.
1899 <Parameter Type="System.String" Name="cubeFile" />
1900 </Instance>
1901 </Message>
1902 <Message Id="OpenDatabaseFailed" Number="223" SourceLineNumbers="no">
1903 <Instance>
1904 Failed to open database '{0}'. Ensure it is a valid database, and it is not open by another process.
1905 <Parameter Type="System.String" Name="databaseFile" />
1906 </Instance>
1907 </Message>
1908 <Message Id="OutputTypeMismatch" Number="224">
1909 <Instance>
1910 The types of the outputs do not match. One output's type is '{0}' while the other is '{1}'.
1911 <Parameter Type="System.String" Name="beforeOutputType" />
1912 <Parameter Type="System.String" Name="afterOutputType" />
1913 </Instance>
1914 </Message>
1915 <Message Id="RealTableMissingPrimaryKeyColumn" Number="225">
1916 <Instance>
1917 The table '{0}' does not contain any primary key columns. At least one column must be marked as the primary key to ensure this table can be patched.
1918 <Parameter Type="System.String" Name="tableName" />
1919 </Instance>
1920 </Message>
1921 <Message Id="IllegalColumnName" Number="226">
1922 <Instance>
1923 The {0}/@{1} attribute's value, '{2}', is not a legal column name. It will collide with the sentinel values used in the _TransformView table.
1924 <Parameter Type="System.String" Name="elementName" />
1925 <Parameter Type="System.String" Name="attributeName" />
1926 <Parameter Type="System.String" Name="value" />
1927 </Instance>
1928 </Message>
1929 <Message Id="NoDifferencesInTransform" Number="227">
1930 <Instance>
1931 The transform being built did not contain any differences so it could not be created.
1932 </Instance>
1933 </Message>
1934 <Message Id="OutputCodepageMismatch" Number="228">
1935 <Instance>
1936 The code pages of the outputs do not match. One output's code page is '{0}' while the other is '{1}'.
1937 <Parameter Type="System.Int32" Name="beforeCodepage" />
1938 <Parameter Type="System.Int32" Name="afterCodepage" />
1939 </Instance>
1940 </Message>
1941 <Message Id="OutputCodepageMismatch2" Number="229">
1942 <Instance>
1943 The location of the mismatched code page related to the previous warning.
1944 </Instance>
1945 </Message>
1946 <Message Id="IllegalComponentWithAutoGeneratedGuid" Number="230">
1947 <Instance>
1948 The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components using a Directory as a KeyPath or containing ODBCDataSource child elements cannot use an automatically generated guid. Make sure your component doesn't have a Directory as the KeyPath and move any ODBCDataSource child elements to components with explicit component guids.
1949 </Instance>
1950 <Instance>
1951 The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with registry keypaths and files cannot use an automatically generated guid. Create multiple components, each with one file and/or one registry value keypath, to use automatically generated guids.
1952 <Parameter Type="System.Boolean" Name="registryKeyPath" />
1953 </Instance>
1954 </Message>
1955 <Message Id="IllegalPathForGeneratedComponentGuid" Number="231">
1956 <Instance>
1957 The component '{0}' has a key file with path '{1}'. Since this path is not rooted in one of the standard directories (like ProgramFilesFolder), this component does not fit the criteria for having an automatically generated guid. (This error may also occur if a path contains a likely standard directory such as nesting a directory with name "Common Files" under ProgramFilesFolder.)
1958 <Parameter Type="System.String" Name="componentName" />
1959 <Parameter Type="System.String" Name="keyFilePath" />
1960 </Instance>
1961 </Message>
1962 <Message Id="IllegalTerminalServerCustomActionAttributes" Number="232">
1963 <Instance>
1964 The CustomAction/@TerminalServerAware attribute's value is 'yes' but the Execute attribute is not 'deferred,' 'rollback,' or 'commit.' Terminal-Server-aware custom actions must be deferred, rollback, or commit custom actions. For more information, see http://msdn.microsoft.com/library/aa372071.aspx."
1965 </Instance>
1966 </Message>
1967 <Message Id="IllegalPropertyCustomActionAttributes" Number="233">
1968 <Instance>
1969 The CustomAction sets a property but its Execute attribute is not 'immediate' (the default). Property-setting custom actions cannot be deferred."
1970 </Instance>
1971 </Message>
1972 <Message Id="InvalidPreprocessorFunction" Number="234">
1973 <Instance>
1974 Ill-formed preprocessor function '${0}'. Functions must have a prefix (like 'fun.'), a name at least 1 character long, and matching opening and closing parentheses.
1975 <Parameter Type="System.String" Name="variable" />
1976 </Instance>
1977 </Message>
1978 <Message Id="UndefinedPreprocessorFunction" Number="235">
1979 <Instance>
1980 Undefined preprocessor function '$({0})'.
1981 <Parameter Type="System.String" Name="variableName" />
1982 </Instance>
1983 </Message>
1984 <Message Id="PreprocessorExtensionEvaluateFunctionFailed" Number="236">
1985 <Instance>
1986 In the preprocessor extension that handles prefix '{0}' while trying to call function '{1}({2})' and exception has occurred : {3}
1987 <Parameter Type="System.String" Name="prefix" />
1988 <Parameter Type="System.String" Name="function" />
1989 <Parameter Type="System.String" Name="args" />
1990 <Parameter Type="System.String" Name="message" />
1991 </Instance>
1992 </Message>
1993 <Message Id="PreprocessorExtensionGetVariableValueFailed" Number="237">
1994 <Instance>
1995 In the preprocessor extension that handles prefix '{0}' while trying to get the value for variable '{1}' and exception has occured : {2}
1996 <Parameter Type="System.String" Name="prefix" />
1997 <Parameter Type="System.String" Name="variable" />
1998 <Parameter Type="System.String" Name="message" />
1999 </Instance>
2000 </Message>
2001 <Message Id="InvalidManifestContent" Number="238">
2002 <Instance>
2003 The manifest '{0}' does not have the required assembly/assemblyIdentity element.
2004 <Parameter Type="System.String" Name="fileName" />
2005 </Instance>
2006 </Message>
2007 <Message Id="InvalidWixTransform" Number="239" SourceLineNumbers="no">
2008 <Instance>
2009 The file '{0}' is not a valid WiX Transform.
2010 <Parameter Type="System.String" Name="fileName" />
2011 </Instance>
2012 </Message>
2013 <Message Id="UnexpectedFileExtension" Number="240" SourceLineNumbers="no">
2014 <Instance>
2015 The file '{0}' has an unexpected extension. Expected one of the following: '{1}'.
2016 <Parameter Type="System.String" Name="fileName" />
2017 <Parameter Type="System.String" Name="expectedExtensions" />
2018 </Instance>
2019 </Message>
2020 <Message Id="UnexpectedTableInPatch" Number="241">
2021 <Instance>
2022 An unexpected row in the '{0}' table was found in this patch. Patches cannot contain the '{0}' table.
2023 <Parameter Type="System.String" Name="tableName" />
2024 </Instance>
2025 </Message>
2026 <Message Id="InvalidProductVersion" Number="242">
2027 <Instance>
2028 Invalid product version '{0}'. Product version must have a major version less than 256, a minor version less than 256, and a build version less than 65536.
2029 <Parameter Type="System.String" Name="version" />
2030 </Instance>
2031 <Instance>
2032 Invalid product version '{0}' in package '{1}'. When included in a bundle, all product version fields in an MSI package must be less than 65536.
2033 <Parameter Type="System.String" Name="version" />
2034 <Parameter Type="System.String" Name="packagePath" />
2035 </Instance>
2036 </Message>
2037 <Message Id="InvalidKeypathChange" Number="243">
2038 <Instance>
2039 Component '{0}' has a changed keypath in the transform '{1}'. Patches cannot change the keypath of a component.
2040 <Parameter Type="System.String" Name="component" />
2041 <Parameter Type="System.String" Name="transformPath" />
2042 </Instance>
2043 </Message>
2044 <Message Id="MissingValidatorExtension" Number="244" SourceLineNumbers="no">
2045 <Instance>
2046 The validator requires at least one extension. Add "ValidatorExtension, Wix" for the default implementation.
2047 </Instance>
2048 </Message>
2049 <Message Id="InvalidValidatorMessageType" Number="245" SourceLineNumbers="no">
2050 <Instance>
2051 Unknown validation message type '{0}'.
2052 <Parameter Type="System.String" Name="type" />
2053 </Instance>
2054 </Message>
2055 <Message Id="PatchWithoutTransforms" Number="246" SourceLineNumbers="no">
2056 <Instance>
2057 No transforms were provided to attach to the patch.
2058 </Instance>
2059 </Message>
2060 <Message Id="SingleExtensionSupported" Number="247" SourceLineNumbers="no">
2061 <Instance>
2062 Multiple extensions were specified on the command line, only a single extension is supported.
2063 </Instance>
2064 </Message>
2065 <Message Id="DuplicateTransform" Number="248" SourceLineNumbers="no">
2066 <Instance>
2067 The transform {0} was included twice on the command line. Each transform can be applied to a patch only once.
2068 <Parameter Type="System.String" Name="transform" />
2069 </Instance>
2070 </Message>
2071 <Message Id="BaselineRequired" Number="249" SourceLineNumbers="no">
2072 <Instance>
2073 No baseline was specified for one of the transforms specified. A baseline is required for all transforms in a patch.
2074 </Instance>
2075 </Message>
2076 <Message Id="PreprocessorError" Number="250">
2077 <Instance>
2078 {0}
2079 <Parameter Type="System.String" Name="message" />
2080 </Instance>
2081 </Message>
2082 <Message Id="ExpectedArgument" Number="251" SourceLineNumbers="no">
2083 <Instance>
2084 {0} is expected to be followed by a value argument.
2085 <Parameter Type="System.String" Name="argument" />
2086 </Instance>
2087 </Message>
2088 <Message Id="PatchWithoutValidTransforms" Number="252" SourceLineNumbers="no">
2089 <Instance>
2090 No valid transforms were provided to attach to the patch. Check to make sure the transforms you passed on the command line have a matching baseline authored in the patch. Also, make sure there are differences between your target and upgrade.
2091 </Instance>
2092 </Message>
2093 <Message Id="ExpectedDecompiler" Number="253" SourceLineNumbers="no">
2094 <Instance>
2095 No decompiler was provided. {0} requires a decompiler.
2096 <Parameter Type="System.String" Name="identifier" />
2097 </Instance>
2098 </Message>
2099 <Message Id="ExpectedTableInMergeModule" Number="254" SourceLineNumbers="no">
2100 <Instance>
2101 The table '{0}' was expected but was missing.
2102 <Parameter Type="System.String" Name="identifier" />
2103 </Instance>
2104 </Message>
2105 <Message Id="UnexpectedElementWithAttributeValue" Number="255">
2106 <Instance>
2107 The {0} element cannot have a child element '{1}' unless attribute '{2}' is set to '{3}'.
2108 <Parameter Type="System.String" Name="elementName" />
2109 <Parameter Type="System.String" Name="childElementName" />
2110 <Parameter Type="System.String" Name="attribute" />
2111 <Parameter Type="System.String" Name="attributeValue" />
2112 </Instance>
2113 <Instance>
2114 The {0} element cannot have a child element '{1}' unless attribute '{2}' is set to '{3}' or '{4}'.
2115 <Parameter Type="System.String" Name="elementName" />
2116 <Parameter Type="System.String" Name="childElementName" />
2117 <Parameter Type="System.String" Name="attribute" />
2118 <Parameter Type="System.String" Name="attributeValue1" />
2119 <Parameter Type="System.String" Name="attributeValue2" />
2120 </Instance>
2121 </Message>
2122 <Message Id="ExpectedPatchIdInWixMsp" Number="256" SourceLineNumbers="no">
2123 <Instance>
2124 The WixMsp is missing the patch ID.
2125 </Instance>
2126 </Message>
2127 <Message Id="ExpectedMediaRowsInWixMsp" Number="257" SourceLineNumbers="no">
2128 <Instance>
2129 The WixMsp has no media rows defined.
2130 </Instance>
2131 </Message>
2132 <Message Id="WixFileNotFound" Number="258" SourceLineNumbers="no">
2133 <Instance>
2134 The file '{0}' cannot be found.
2135 <Parameter Type="System.String" Name="file" />
2136 </Instance>
2137 </Message>
2138 <Message Id="ExpectedClientPatchIdInWixMsp" Number="259" SourceLineNumbers="no">
2139 <Instance>
2140 The WixMsp is missing the client patch ID. Recompile the patch source files with the latest WiX toolset.
2141 </Instance>
2142 </Message>
2143 <Message Id="NewRowAddedInTable" Number="260">
2144 <Instance>
2145 Product '{0}': Table '{1}' has a new row '{2}' added. This makes the patch not uninstallable.
2146 <Parameter Type="System.String" Name="productCode" />
2147 <Parameter Type="System.String" Name="tableName" />
2148 <Parameter Type="System.String" Name="rowId" />
2149 </Instance>
2150 </Message>
2151 <Message Id="PatchNotRemovable" Number="261" SourceLineNumbers="no">
2152 <Instance>
2153 This patch is not uninstallable. The 'Patch' element's attribute 'AllowRemoval' should be set to 'no'.
2154 </Instance>
2155 </Message>
2156 <Message Id="PathTooLong" Number="262">
2157 <Instance>
2158 '{0}' is too long, the fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
2159 <Parameter Type="System.String" Name="fileName" />
2160 </Instance>
2161 </Message>
2162 <Message Id="FileTooLarge" Number="263">
2163 <Instance>
2164 '{0}' is too large, file size must be less than 2147483648.
2165 <Parameter Type="System.String" Name="fileName" />
2166 </Instance>
2167 </Message>
2168 <Message Id="InvalidPlatformParameter" Number="264" SourceLineNumbers="no">
2169 <Instance>
2170 The parameter '{0}' is missing or has an invalid value {1}. Possible values are x86, x64, or ia64.
2171 <Parameter Type="System.String" Name="name" />
2172 <Parameter Type="System.String" Name="value" />
2173 </Instance>
2174 </Message>
2175 <Message Id="InvalidPlatformValue" Number="265">
2176 <Instance>
2177 The Platform attribute has an invalid value {0}. Possible values are x86, x64, or ia64.
2178 <Parameter Type="System.String" Name="value" />
2179 </Instance>
2180 </Message>
2181 <Message Id="IllegalValidationArguments" Number="266" SourceLineNumbers="no">
2182 <Instance>
2183 You may only specify a single default type using -t or specify custom validation using -serr and -val.
2184 </Instance>
2185 </Message>
2186 <Message Id="OrphanedComponent" Number="267">
2187 <Instance>
2188 Found orphaned Component '{0}'. If this is a Product, every Component must have at least one parent Feature. To include a Component in a Module, you must include it directly as a Component element of the Module element or indirectly via ComponentRef, ComponentGroup, or ComponentGroupRef elements.
2189 <Parameter Type="System.String" Name="componentName" />
2190 </Instance>
2191 </Message>
2192 <Message Id="IllegalCommandlineArgumentCombination" Number="268" SourceLineNumbers="no">
2193 <Instance>
2194 '-{0}' cannot be specfied in combination with '-{1}'.
2195 <Parameter Type="System.String" Name="arg1" />
2196 <Parameter Type="System.String" Name="arg2" />
2197 </Instance>
2198 </Message>
2199 <Message Id="ProductCodeInvalidForTransform" Number="269">
2200 <Instance>
2201 The value '*' is not valid for the ProductCode when used in a transform or in a patch. Copy the ProductCode from your target product MSI into the Product/@Id attribute value for your product authoring.
2202 </Instance>
2203 </Message>
2204 <Message Id="InsertInvalidSequenceActionOrder" Number="270">
2205 <Instance>
2206 Invalid order of actions {1} and {2} in sequence table {0}. Action {3} must occur after {1} and before {2}, but {2} is currently sequenced after {1}. Please fix the ordering or explicitly supply a location for the action {3}.
2207 <Parameter Type="System.String" Name="sequenceTableName" />
2208 <Parameter Type="System.String" Name="actionNameBefore" />
2209 <Parameter Type="System.String" Name="actionNameAfter" />
2210 <Parameter Type="System.String" Name="actionNameNew" />
2211 </Instance>
2212 </Message>
2213 <Message Id="InsertSequenceNoSpace" Number="271">
2214 <Instance>
2215 Not enough space exists to sequence action {3} in table {0}. It must be sequenced after {1} and before {2}, but those two actions are currently sequenced next to each other. Please move one of those actions to allow {3} to be inserted between them.
2216 <Parameter Type="System.String" Name="sequenceTableName" />
2217 <Parameter Type="System.String" Name="actionNameBefore" />
2218 <Parameter Type="System.String" Name="actionNameAfter" />
2219 <Parameter Type="System.String" Name="actionNameNew" />
2220 </Instance>
2221 </Message>
2222 <Message Id="MissingManifestForWin32Assembly" Number="272">
2223 <Instance>
2224 File '{0}' is marked as a Win32 assembly but it refers to assembly manifest '{1}' that is not present in this product.
2225 <Parameter Type="System.String" Name="file" />
2226 <Parameter Type="System.String" Name="manifest" />
2227 </Instance>
2228 </Message>
2229 <Message Id="UnableToOpenModule" Number="273">
2230 <Instance>
2231 Unable to open merge module '{0}'. Check to make sure the module language is correct. '{1}'
2232 <Parameter Type="System.String" Name="modulePath" />
2233 <Parameter Type="System.String" Name="message" />
2234 </Instance>
2235 </Message>
2236 <Message Id="ExpectedAttributeWhenElementNotUnderElement" Number="274">
2237 <Instance>
2238 The '{0}/@{1}' attribute was not found; it is required when element '{0}' is not nested under a '{2}' element.
2239 <Parameter Type="System.String" Name="elementName" />
2240 <Parameter Type="System.String" Name="attributeName" />
2241 <Parameter Type="System.String" Name="parentElementName" />
2242 </Instance>
2243 </Message>
2244 <Message Id="IllegalIdentifierLooksLikeFormatted" Number="275">
2245 <Instance>
2246 The {0}/@{1} attribute's value, '{2}', is not a legal identifier. The {0}/@{1} attribute does not support formatted string values, such as property names enclosed in brackets ([LIKETHIS]). The value must be the identifier of another element, such as the Directory/@Id attribute value.
2247 <Parameter Type="System.String" Name="elementName" />
2248 <Parameter Type="System.String" Name="attributeName" />
2249 <Parameter Type="System.String" Name="value" />
2250 </Instance>
2251 </Message>
2252 <Message Id="IllegalCodepageAttribute" Number="276">
2253 <Instance>
2254 The code page '{0}' is not a valid Windows code page. Please check the {1}/@{2} attribute value in your source file.
2255 <Parameter Type="System.String" Name="codepage" />
2256 <Parameter Type="System.String" Name="elementName" />
2257 <Parameter Type="System.String" Name="attributeName" />
2258 </Instance>
2259 </Message>
2260 <Message Id="IllegalCompressionLevel" Number="277" SourceLineNumbers="no">
2261 <Instance>
2262 The compression level '{0}' is not valid. Valid values are 'none', 'low', 'medium', 'high', and 'mszip'.
2263 <Parameter Type="System.String" Name="compressionLevel" />
2264 </Instance>
2265 </Message>
2266 <Message Id="TransformSchemaMismatch" Number="278" SourceLineNumbers="no">
2267 <Instance>The transform schema does not match the database schema. The transform may have been generated from a different database.</Instance>
2268 </Message>
2269 <Message Id="DatabaseSchemaMismatch" Number="279">
2270 <Instance>
2271 The table definition of '{0}' in the target database does not match the table definition in the updated database. A transform requires that the target database schema match the updated database schema.
2272 <Parameter Type="System.String" Name="tableName" />
2273 </Instance>
2274 </Message>
2275 <Message Id="ExpectedDirectoryGotFile" Number="280" SourceLineNumbers="no">
2276 <Instance>
2277 The {0} option requires a directory, but the provided path is a file: {1}
2278 <Parameter Type="System.String" Name="option" />
2279 <Parameter Type="System.String" Name="path" />
2280 </Instance>
2281 </Message>
2282 <Message Id="ExpectedFileGotDirectory" Number="281" SourceLineNumbers="no">
2283 <Instance>
2284 The {0} option requires a file, but the provided path is a directory: {1}
2285 <Parameter Type="System.String" Name="option" />
2286 <Parameter Type="System.String" Name="path" />
2287 </Instance>
2288 </Message>
2289 <Message Id="GacAssemblyNoStrongName" Number="282">
2290 <Instance>
2291 Assembly {0} in component {1} has no strong name and has been marked to be placed in the GAC. All assemblies installed to the GAC must have a valid strong name.
2292 <Parameter Type="System.String" Name="assemblyName" />
2293 <Parameter Type="System.String" Name="componentName" />
2294 </Instance>
2295 </Message>
2296 <Message Id="FileWriteError" Number="283" SourceLineNumbers="no">
2297 <Instance>
2298 Error writing to the path: '{0}'. Error message: '{1}'
2299 <Parameter Type="System.String" Name="path" />
2300 <Parameter Type="System.String" Name="error" />
2301 </Instance>
2302 </Message>
2303 <Message Id="InvalidCommandLineFileName" Number="284" SourceLineNumbers="no">
2304 <Instance>
2305 Invalid file name specified on the command line: '{0}'. Error message: '{1}'
2306 <Parameter Type="System.String" Name="fileName" />
2307 <Parameter Type="System.String" Name="error" />
2308 </Instance>
2309 </Message>
2310 <Message Id="ExpectedParentWithAttribute" Number="285">
2311 <Instance>
2312 When the {0}/@{1} attribute is specified, the {0} element must be nested under a {2} element.
2313 <Parameter Type="System.String" Name="parentElement" />
2314 <Parameter Type="System.String" Name="attribute" />
2315 <Parameter Type="System.String" Name="grandparentElement" />
2316 </Instance>
2317 </Message>
2318 <Message Id="IllegalWarningIdAsError" Number="286" SourceLineNumbers="no">
2319 <Instance>
2320 Illegal value '{0}' for the -wx&lt;N&gt; command line option. Specify a particular warning number, like '-wx6' to display the warning with ID 6 as an error, or '-wx' alone to suppress all warnings.
2321 <Parameter Type="System.String" Name="warningId" />
2322 </Instance>
2323 </Message>
2324 <Message Id="ExpectedAttributeOrElement" Number="287">
2325 <Instance>
2326 Element '{0}' missing attribute '{1}' or child element '{2}'. Exactly one of those is required.
2327 <Parameter Type="System.String" Name="parentElement" />
2328 <Parameter Type="System.String" Name="attribute" />
2329 <Parameter Type="System.String" Name="childElement" />
2330 </Instance>
2331 </Message>
2332 <Message Id="DuplicateVariableDefinition" Number="288" SourceLineNumbers="no">
2333 <Instance>
2334 The variable '{0}' with value '{1}' was previously declared with value '{2}'.
2335 <Parameter Type="System.String" Name="variableName" />
2336 <Parameter Type="System.String" Name="variableValue" />
2337 <Parameter Type="System.String" Name="variableCollidingValue" />
2338 </Instance>
2339 </Message>
2340 <Message Id="InvalidVariableDefinition" Number="289" SourceLineNumbers="no">
2341 <Instance>
2342 The variable definition '{0}' is not valid. Variable definitions should be in the form -dname=value where the value is optional.
2343 <Parameter Type="System.String" Name="variableDefinition" />
2344 </Instance>
2345 </Message>
2346 <Message Id="DuplicateCabinetName" Number="290">
2347 <Instance>
2348 Duplicate cabinet name '{0}' found.
2349 <Parameter Type="System.String" Name="cabinetName" />
2350 </Instance>
2351 </Message>
2352 <Message Id="DuplicateCabinetName2" Number="291">
2353 <Instance>
2354 Duplicate cabinet name '{0}' error related to previous error.
2355 <Parameter Type="System.String" Name="cabinetName" />
2356 </Instance>
2357 </Message>
2358 <Message Id="InvalidAddedFileRowWithoutSequence" Number="292">
2359 <Instance>
2360 A row has been added to the File table with id '{1}' that does not have a sequence number assigned to it. Create your transform from a pair of msi's instead of xml outputs to get sequences assigned to your File table's rows.
2361 <Parameter Type="System.String" Name="fileRowId" />
2362 </Instance>
2363 </Message>
2364 <Message Id="DuplicateFileId" Number="293" SourceLineNumbers="no">
2365 <Instance>
2366 Multiple files with ID '{0}' exist. Windows Installer does not support file IDs that differ only by case. Change the file IDs to be unique.
2367 <Parameter Type="System.String" Name="fileId" />
2368 </Instance>
2369 </Message>
2370 <Message Id="FullTempDirectory" Number="294" SourceLineNumbers="no">
2371 <Instance>
2372 Unable to create temporary file. A common cause is that too many files that have names beginning with '{0}' are present. Delete any unneeded files in the '{1}' directory and try again.
2373 <Parameter Type="System.String" Name="prefix" />
2374 <Parameter Type="System.String" Name="directory" />
2375 </Instance>
2376 </Message>
2377 <Message Id="CreateCabAddFileFailed" Number="296" SourceLineNumbers="no">
2378 <Instance>
2379 An error (E_FAIL) was returned while adding files to a CAB file. This most commonly happens when creating a CAB file 2 GB or larger. Either reduce the size of your installation package, raise Media/@CompressionLevel to a higher compression level, or split your installation package's files into more than one CAB file.
2380 </Instance>
2381 </Message>
2382 <Message Id="CreateCabInsufficientDiskSpace" Number="297" SourceLineNumbers="no">
2383 <Instance>
2384 An error (ERROR_DISK_FULL) was returned while creating a CAB file. This means you have insufficient disk space - please clear more disk space and try this operation again.
2385 </Instance>
2386 </Message>
2387 <Message Id="UnresolvedBindReference" Number="298" SourceLineNumbers="yes">
2388 <Instance>
2389 Unresolved bind-time variable {0}.
2390 <Parameter Type="System.String" Name="BindRef" />
2391 </Instance>
2392 </Message>
2393 <Message Id="GACAssemblyIdentityWarning" Number="299" SourceLineNumbers="yes">
2394 <Instance>
2395 The destination name of file '{0}' does not match its assembly name '{1}' in your authoring. This will cause an installation failure for this assembly, because it will be installed to the Global Assembly Cache. To fix this error, update File/@Name of file '{0}' to be the actual name of the assembly.
2396 <Parameter Type="System.String" Name="fileName" />
2397 <Parameter Type="System.String" Name="assemblyName" />
2398 </Instance>
2399 </Message>
2400 <Message Id="IllegalCharactersInPath" Number="300" SourceLineNumbers="no">
2401 <Instance>
2402 Illegal characters in path '{0}'. Ensure you provided a valid path to the file.
2403 <Parameter Type="System.String" Name="pathName" />
2404 </Instance>
2405 </Message>
2406 <Message Id="ValidationFailedToOpenDatabase" Number="301" SourceLineNumbers="no">
2407 <Instance>
2408 Failed to open the database. During validation, this most commonly happens when attempting to open a database using an unsupported code page or a file that is not a valid Windows Installer database. Please use a different code page in Module/@Codepage, Package/@SummaryCodepage, Product/@Codepage, or WixLocalization/@Codepage; or make sure you provide the path to a valid Windows Installer database.
2409 </Instance>
2410 </Message>
2411 <Message Id="MustSpecifyOutputWithMoreThanOneInput" Number="302" SourceLineNumbers="no">
2412 <Instance>
2413 You must specify an output file using the "-o" or "-out" switch when you provide more than one input file.
2414 </Instance>
2415 </Message>
2416 <Message Id="IllegalSearchIdForParentDepth" Number="303">
2417 <Instance>
2418 When the parent DirectorySearch/@Depth attribute is greater than 1 for the DirectorySearch '{1}', the FileSearch/@Id attribute must be absent for FileSearch '{0}' unless the parent DirectorySearch/@AssignToProperty attribute value is 'yes'. Remove the FileSearch/@Id attribute for '{0}' to resolve this issue.
2419 <Parameter Type="System.String" Name="id" />
2420 <Parameter Type="System.String" Name="parentId" />
2421 </Instance>
2422 </Message>
2423 <Message Id="IdentifierTooLongError" Number="304">
2424 <Instance>
2425 The {0}/@{1} attribute's value, '{2}', is too long. {0}/@{1} attribute's must be {3} characters long or less.
2426 <Parameter Type="System.String" Name="elementName" />
2427 <Parameter Type="System.String" Name="attributeName" />
2428 <Parameter Type="System.String" Name="value" />
2429 <Parameter Type="System.Int32" Name="maxLength" />
2430 </Instance>
2431 </Message>
2432 <Message Id="InvalidRemoveComponent" Number="305">
2433 <Instance>
2434 Removing component '{0}' from feature '{1}' is not supported. Either the component was removed or the guid changed in the transform '{2}'. Add the component back, undo the change to the component guid, or remove the entire feature.
2435 <Parameter Type="System.String" Name="component" />
2436 <Parameter Type="System.String" Name="feature" />
2437 <Parameter Type="System.String" Name="transformPath" />
2438 </Instance>
2439 </Message>
2440 <Message Id="FinishCabFailed" Number="306" SourceLineNumbers="no">
2441 <Instance>
2442 An error (E_FAIL) was returned while finalizing a CAB file. This most commonly happens when creating a CAB file with more than 65535 files in it. Either reduce the number of files in your installation package or split your installation package's files into more than one CAB file using the Media element.
2443 </Instance>
2444 </Message>
2445 <Message Id="InvalidExtensionType" Number="307" SourceLineNumbers="no">
2446 <Instance>
2447 Either '{1}' was not defined in the assembly or the type defined in extension '{0}' could not be loaded.
2448 <Parameter Type="System.String" Name="extension" />
2449 <Parameter Type="System.String" Name="attributeType" />
2450 </Instance>
2451 <Instance>
2452 The extension type '{1}' in extension '{0}' does not inherit from the expected class '{2}'.
2453 <Parameter Type="System.String" Name="extension" />
2454 <Parameter Type="System.String" Name="className" />
2455 <Parameter Type="System.String" Name="expectedType" />
2456 </Instance>
2457 <Instance>
2458 The type '{1}' in extension '{0}' could not be loaded. Exception type '{2}' returned the following message: {3}
2459 <Parameter Type="System.String" Name="extension" />
2460 <Parameter Type="System.String" Name="className" />
2461 <Parameter Type="System.String" Name="exceptionType" />
2462 <Parameter Type="System.String" Name="exceptionMessage"/>
2463 </Instance>
2464 </Message>
2465 <Message Id="ValidationFailedDueToMultilanguageMergeModule" Number="309" SourceLineNumbers="no">
2466 <Instance>
2467 Failed to open merge module for validation. The most common cause of this error is specifying that the merge module supports multiple languages (using the Package/@Languages attribute) but not including language-specific embedded transforms. To fix this error, make the merge module language-neutral, make it language-specific, embed language transforms as specified in the MSI SDK at http://msdn.microsoft.com/library/aa367799.aspx, or disable validation.
2468 </Instance>
2469 </Message>
2470 <Message Id="ValidationFailedDueToInvalidPackage" Number="310" SourceLineNumbers="no">
2471 <Instance>
2472 Failed to open package for validation. The most common cause of this error is validating an x64 package on an x86 system. To fix this error, run validation on an x64 system or disable validation.
2473 </Instance>
2474 </Message>
2475 <Message Id="InvalidStringForCodepage" Number="311">
2476 <Instance>
2477 A string was provided with characters that are not available in the specified database code page '{0}'. Either change these characters to ones that exist in the database's code page, or update the database's code page by modifying one of the following attributes: Product/@Codepage, Module/@Codepage, Patch/@Codepage, PatchCreation/@Codepage, or WixLocalization/@Codepage.
2478 <Parameter Type="System.String" Name="codepage" />
2479 </Instance>
2480 </Message>
2481 <Message Id="InvalidEmbeddedUIFileName" Number="312">
2482 <Instance>
2483 The EmbeddedUI/@Name attribute value, '{0}', does not contain an extension. Windows Installer will not load an embedded UI DLL without an extension. Include an extension or just omit the Name attribute so it defaults to the file name portion of the Source attribute value.
2484 <Parameter Type="System.String" Name="codepage" />
2485 </Instance>
2486 </Message>
2487 <Message Id="UniqueFileSearchIdRequired" Number="313">
2488 <Instance>
2489 The DirectorySearch element '{0}' requires that the child {1} element has a unique Id when the DirectorySearch/@AssignToProperty attribute is set to 'yes'.
2490 <Parameter Type="System.String" Name="id" />
2491 <Parameter Type="System.String" Name="elementName" />
2492 </Instance>
2493 </Message>
2494 <Message Id="IllegalAttributeValueWhenNested" Number="314">
2495 <Instance>
2496 The {0}/@{1} attribute value, '{2}', cannot be specified when the {0} element is nested underneath a {3} element.
2497 <Parameter Type="System.String" Name="elementName" />
2498 <Parameter Type="System.String" Name="attributeName" />
2499 <Parameter Type="System.String" Name="attrivuteValue" />
2500 <Parameter Type="System.String" Name="parentElementName" />
2501 </Instance>
2502 </Message>
2503 <Message Id="AdminImageRequired" Number="315" SourceLineNumbers="no">
2504 <Instance>
2505 Source information is required for the product '{0}'. If you ran torch.exe with both target and updated .msi files, you must first perform an administrative installation of both .msi files then pass -a when running torch.exe.
2506 <Parameter Type="System.String" Name="productCode" />
2507 </Instance>
2508 </Message>
2509 <Message Id="SamePatchBaselineId" Number="316">
2510 <Instance>
2511 The PatchBaseline/@Id attribute value '{0}' is a child of multiple Media elements. This prevents transforms from being resolved to distinct media. Change the PatchBaseline/@Id attribute values to be unique.
2512 <Parameter Type="System.String" Name="id" />
2513 </Instance>
2514 </Message>
2515 <Message Id="SameFileIdDifferentSource" Number="317">
2516 <Instance>
2517 Two different source paths '{1}' and '{2}' were detected for the same file identifier '{0}'. You must either author these under Media elements with different Id attribute values or in different patches.
2518 <Parameter Type="System.String" Name="fileId" />
2519 <Parameter Type="System.String" Name="sourcePath1" />
2520 <Parameter Type="System.String" Name="sourcePath2" />
2521 </Instance>
2522 </Message>
2523 <Message Id="HarvestSourceNotSpecified" Number="318" SourceLineNumbers="no">
2524 <Instance>
2525 A harvest source must be specified after the harvest type and can be followed by harvester arguments.
2526 </Instance>
2527 </Message>
2528 <Message Id="OutputTargetNotSpecified" Number="319" SourceLineNumbers="no">
2529 <Instance>
2530 The '-out' or '-o' parameter must specify a file path.
2531 </Instance>
2532 </Message>
2533 <Message Id="DuplicateCommandLineOptionInExtension" Number="320" SourceLineNumbers="no">
2534 <Instance>
2535 The command line option '{0}' has already been loaded by another Heat extension.
2536 <Parameter Type="System.String" Name="arg" />
2537 </Instance>
2538 </Message>
2539 <Message Id="HarvestTypeNotFound" Number="321" SourceLineNumbers="no">
2540 <Instance>
2541 The harvest type was not found in the list of loaded Heat extensions.
2542 </Instance>
2543 <Instance>
2544 The harvest type '{0}' was specified. Harvest types cannot start with a '-'. Remove the '-' to specify a valid harvest type.
2545 <Parameter Type="System.String" Name="harvestType" />
2546 </Instance>
2547 </Message>
2548 <Message Id="BothUpgradeCodesRequired" Number="322" SourceLineNumbers="no">
2549 <Instance>
2550 Both the target and updated product authoring must define the Product/@UpgradeCode attribute if the transform validates the UpgradeCode (default). Either define the Product/@UpgradeCode attribute in both the target and updated authoring, or set the Validate/@UpgradeCode attribute to 'no' in the patch authoring.
2551 </Instance>
2552 </Message>
2553 <Message Id="IllegalBinderClassName" Number="323" SourceLineNumbers="no">
2554 <Instance>
2555 Illegal binder class name specified for -binder command line option.
2556 </Instance>
2557 </Message>
2558 <Message Id="SpecifiedBinderNotFound" Number="324" SourceLineNumbers="no">
2559 <Instance>
2560 The specified binder class '{0}' was not found in any extensions.
2561 <Parameter Type="System.String" Name="binderClass" />
2562 </Instance>
2563 </Message>
2564 <Message Id="CannotLoadBinderFileManager" Number="325" SourceLineNumbers="no">
2565 <Instance>
2566 Cannot load binder file manager: {0}. Light can only load one binder file manager and has already loaded binder file manager: {1}.
2567 <Parameter Type="System.String" Name="binderFileManager" />
2568 <Parameter Type="System.String" Name="currentBinderFileManager" />
2569 </Instance>
2570 </Message>
2571 <Message Id="CannotLoadLinkerExtension" Number="326" SourceLineNumbers="no">
2572 <Instance>
2573 Cannot load linker extension: {0}. Light can only load one link extension and has already loaded link extension: {1}.
2574 <Parameter Type="System.String" Name="linkerExtension" />
2575 <Parameter Type="System.String" Name="currentLinkerExtension" />
2576 </Instance>
2577 </Message>
2578 <Message Id="UnableToGetAuthenticodeCertOfFile" Number="327" SourceLineNumbers="no">
2579 <Instance>
2580 Unable to get the authenticode certificate of '{0}'. More information: {1}
2581 <Parameter Type="System.String" Name="filePath" />
2582 <Parameter Type="System.String" Name="moreInformation" />
2583 </Instance>
2584 </Message>
2585 <Message Id="UnableToGetAuthenticodeCertOfFileDownlevelOS" Number="328" SourceLineNumbers="no">
2586 <Instance>
2587 Unable to get the authenticode certificate of '{0}'. The cryptography API has limitations on Windows XP and Windows Server 2003. More information: {1}
2588 <Parameter Type="System.String" Name="filePath" />
2589 <Parameter Type="System.String" Name="moreInformation" />
2590 </Instance>
2591 </Message>
2592 <Message Id="ReadOnlyOutputFile" Number="329" SourceLineNumbers="no">
2593 <Instance>
2594 Unable to output to file '{0}' because it is marked as read-only.
2595 <Parameter Type="System.String" Name="filePath" />
2596 </Instance>
2597 </Message>
2598 <Message Id="CannotDefaultComponentId" Number="330">
2599 <Instance>
2600 The Component/@Id attribute was not found; it is required when there is no valid keypath to use as the default id value.
2601 </Instance>
2602 </Message>
2603 <Message Id="ParentElementAttributeRequired" Number="331">
2604 <Instance>
2605 The parent {0} element is missing the {1} attribute that is required for the {2} child element.
2606 <Parameter Type="System.String" Name="parentElement" />
2607 <Parameter Type="System.String" Name="parentAttribute" />
2608 <Parameter Type="System.String" Name="childElement" />
2609 </Instance>
2610 </Message>
2611 <Message Id="PreprocessorExtensionPragmaFailed" Number="333">
2612 <Instance>
2613 Exception thrown while processing pragma '{0}'. The exception's message is: {1}
2614 <Parameter Type="System.String" Name="pragma" />
2615 <Parameter Type="System.String" Name="message" />
2616 </Instance>
2617 </Message>
2618 <Message Id="InvalidPreprocessorPragma" Number="334">
2619 <Instance>
2620 Malformed preprocessor pragma '{0}'. Pragmas must have a prefix, a name of at least 1 character long, and be followed by optional arguments.
2621 <Parameter Type="System.String" Name="variable" />
2622 </Instance>
2623 </Message>
2624 <Message Id="SmokeUnknownFileExtension" Number="335" SourceLineNumbers="no">
2625 <Instance>
2626 Unknown input file format - expected a .msi or .msm file.
2627 </Instance>
2628 </Message>
2629 <Message Id="SmokeUnsupportedFileExtension" Number="336" SourceLineNumbers="no">
2630 <Instance>
2631 Files with an extension of .msp are not currently supported.
2632 </Instance>
2633 </Message>
2634 <Message Id="SmokeMalformedPath" Number="337" SourceLineNumbers="no">
2635 <Instance>
2636 Path contains one or more invalid characters.
2637 </Instance>
2638 </Message>
2639 <Message Id="InvalidStubExe" Number="338" SourceLineNumbers="no">
2640 <Instance>
2641 Stub executable '{0}' is not a valid Win32 executable.
2642 <Parameter Type="System.String" Name="filename" />
2643 </Instance>
2644 </Message>
2645 <Message Id="StubMissingWixburnSection" Number="339" SourceLineNumbers="no">
2646 <Instance>
2647 Stub executable '{0}' does not contain a .wixburn data section.
2648 <Parameter Type="System.String" Name="filename" />
2649 </Instance>
2650 </Message>
2651 <Message Id="StubWixburnSectionTooSmall" Number="340" SourceLineNumbers="no">
2652 <Instance>
2653 Stub executable '{0}' .wixburn data section is too small to store the Burn container header.
2654 <Parameter Type="System.String" Name="filename" />
2655 </Instance>
2656 </Message>
2657 <Message Id="MissingBundleInformation" Number="341" SourceLineNumbers="no">
2658 <Instance>
2659 The Bundle is missing '{0}' data, and cannot continue.
2660 <Parameter Type="System.String" Name="data" />
2661 </Instance>
2662 </Message>
2663 <Message Id="UnexpectedGroupChild" Number="342" SourceLineNumbers="no">
2664 <Instance>
2665 A group parent ('{0}'/'{1}') had an unexpected child ('{2}'/'{3}').
2666 <Parameter Type="System.String" Name="parentType" />
2667 <Parameter Type="System.String" Name="parentId" />
2668 <Parameter Type="System.String" Name="childType" />
2669 <Parameter Type="System.String" Name="childId" />
2670 </Instance>
2671 </Message>
2672 <Message Id="OrderingReferenceLoopDetected" Number="343">
2673 <Instance>
2674 A circular reference of ordering dependencies was detected. The infinite loop includes: {0}. Ordering dependency references must form a directed acyclic graph.
2675 <Parameter Type="System.String" Name="loopList" />
2676 </Instance>
2677 </Message>
2678 <Message Id="IdentifierNotFound" Number="344" SourceLineNumbers="no">
2679 <Instance>
2680 An expected identifier ('{1}', of type '{0}') was not found.
2681 <Parameter Type="System.String" Name="type" />
2682 <Parameter Type="System.String" Name="identifier" />
2683 </Instance>
2684 </Message>
2685 <Message Id="MergePlatformMismatch" Number="345">
2686 <Instance>
2687 '{0}' is a 64-bit merge module but the product consuming it is 32-bit. 32-bit products can consume only 32-bit merge modules.
2688 <Parameter Type="System.String" Name="mergeModuleFile" />
2689 </Instance>
2690 </Message>
2691 <Message Id="IllegalRelativeLongFilename" Number="346">
2692 <Instance>
2693 The {0}/@{1} attribute's value, '{2}', is not a valid relative long name because it contains illegal characters. Legal relative long names contain no more than 260 characters and must contain at least one non-period character. Any character except for the follow may be used: ? | &gt; &lt; : / * ".
2694 <Parameter Type="System.String" Name="elementName" />
2695 <Parameter Type="System.String" Name="attributeName" />
2696 <Parameter Type="System.String" Name="value" />
2697 </Instance>
2698 </Message>
2699 <Message Id="IllegalAttributeValueWithLegalList" Number="347">
2700 <Instance>
2701 The {0}/@{1} attribute's value, '{2}', is not one of the legal options: {3}.
2702 <Parameter Type="System.String" Name="elementName" />
2703 <Parameter Type="System.String" Name="attributeName" />
2704 <Parameter Type="System.String" Name="value" />
2705 <Parameter Type="System.String" Name="legalValueList" />
2706 </Instance>
2707 </Message>
2708 <Message Id="IllegalAttributeValueWithIllegalList" Number="348">
2709 <Instance>
2710 The {0}/@{1} attribute's value, '{2}', is one of the illegal options: {3}.
2711 <Parameter Type="System.String" Name="elementName" />
2712 <Parameter Type="System.String" Name="attributeName" />
2713 <Parameter Type="System.String" Name="value" />
2714 <Parameter Type="System.String" Name="illegalValueList" />
2715 </Instance>
2716 </Message>
2717
2718 <Message Id="InvalidSummaryInfoCodePage" Number="349">
2719 <Instance>
2720 The code page '{0}' is invalid for summary information. You must specify an ANSI code page.
2721 <Parameter Type="System.Int32" Name="codePage" />
2722 </Instance>
2723 </Message>
2724 <Message Id="ValidationFailedDueToLowMsiEngine" Number="350" SourceLineNumbers="no">
2725 <Instance>
2726 The package being validated requires a higher version of Windows Installer than is installed on this machine. Validation cannot continue.
2727 </Instance>
2728 </Message>
2729 <Message Id="DuplicateSourcesForOutput" Number="351" SourceLineNumbers="no">
2730 <Instance>
2731 Multiple source files ({0}) have resulted in the same output file '{1}'. This is likely because the source files only differ in extension or path. Rename the source files to avoid this problem.
2732 <Parameter Type="System.String" Name="sourceList" />
2733 <Parameter Type="System.String" Name="outputFile" />
2734 </Instance>
2735 </Message>
2736 <Message Id="UnableToReadPackageInformation" Number="352">
2737 <Instance>
2738 Unable to read package '{0}'. {1}
2739 <Parameter Type="System.String" Name="packagePath" />
2740 <Parameter Type="System.String" Name="detailedErrorMessage" />
2741 </Instance>
2742 </Message>
2743 <Message Id="MultipleFilesMatchedWithOutputSpecification" Number="353" SourceLineNumbers="no">
2744 <Instance>
2745 A per-source file output specification has been provided ('{0}'), but multiple source files match the source specification ({1}). Specifying a unique output requires that only a single source file match.
2746 <Parameter Type="System.String" Name="sourceSpecification" />
2747 <Parameter Type="System.String" Name="sourceList" />
2748 </Instance>
2749 </Message>
2750 <Message Id="InvalidBundle" Number="354" SourceLineNumbers="no">
2751 <Instance>
2752 Unable to read bundle executable '{0}'. This is not a valid WiX bundle.
2753 <Parameter Type="System.String" Name="bundleExecutable" />
2754 </Instance>
2755 </Message>
2756 <Message Id="BundleTooNew" Number="355" SourceLineNumbers="no">
2757 <Instance>
2758 Unable to read bundle executable '{0}', because this bundle was created with a newer version of WiX (bundle version '{1}'). You must use a newer version of WiX in order to read this bundle.
2759 <Parameter Type="System.String" Name="bundleExecutable" />
2760 <!-- we use a 64-bit field here because the field is really a 32-bit UInt,
2761 but UInt gives a non-CLS-compliant warning.
2762 So 64-bit makes sure we don't drop the last bit -->
2763 <Parameter Type="System.Int64" Name="bundleVersion" />
2764 </Instance>
2765 </Message>
2766 <Message Id="WrongFileExtensionForNumberOfInputs" Number="356" SourceLineNumbers="no">
2767 <Instance>
2768 The extension '{0}' on the input specified '{1}' does not match the number of inputs required to handle an input with this extension. Check if you are missing an input or have too many.
2769 <Parameter Type="System.String" Name="inputExtension" />
2770 <Parameter Type="System.String" Name="input" />
2771 </Instance>
2772 </Message>
2773 <Message Id="MediaTableCollision" Number="357">
2774 <Instance>
2775 Only one of Media and MediaTemplate tables should be authored.
2776 </Instance>
2777 </Message>
2778 <Message Id="InvalidCabinetTemplate" Number="358">
2779 <Instance>
2780 CabinetTemplate attribute's value '{0}' must contain '{{0}}' and should contain no more than 8 characters followed by an optional extension of no more than 3 characters. Any character except for the follow may be used: \ ? | &gt; &lt; : / * " + , ; = [ ] (space). The Windows Installer team has recommended following the 8.3 format for external cabinet files and any other naming scheme is officially unsupported (which means it is not guaranteed to work on all platforms).
2781 <Parameter Type="System.String" Name="cabinetTemplate" />
2782 </Instance>
2783 </Message>
2784 <Message Id="MaximumUncompressedMediaSizeTooLarge" Number="359">
2785 <Instance>
2786 '{0}' is too large. Reduce the size of maximum uncompressed media size.
2787 <Parameter Type="System.Int32" Name="maximumUncompressedMediaSize" />
2788 </Instance>
2789 </Message>
2790 <Message Id="CatalogVerificationFailed" Number="360" SourceLineNumbers="no">
2791 <Instance>
2792 File '{0}' could not be verified with a catalog file.
2793 <Parameter Type="System.String" Name="fileName" />
2794 </Instance>
2795 </Message>
2796 <Message Id="CatalogFileHashFailed" Number="361" SourceLineNumbers="no">
2797 <Instance>
2798 Could not get hash of file '{0}'. Error: {2}.
2799 <Parameter Type="System.String" Name="fileName" />
2800 <Parameter Type="System.Int32" Name="errorCode" />
2801 </Instance>
2802 </Message>
2803 <Message Id="ReservedNamespaceViolation" Number="362">
2804 <Instance>
2805 The {0}/@{1} attribute's value begins with the reserved prefix '{2}'. Some prefixes are reserved by the Windows Installer and WiX toolset for well-known values. Change your attribute's value to not begin with the same prefix.
2806 <Parameter Type="System.String" Name="element" />
2807 <Parameter Type="System.String" Name="attribute" />
2808 <Parameter Type="System.String" Name="prefix" />
2809 </Instance>
2810 </Message>
2811 <Message Id="PerUserButAllUsersEquals1" Number="363">
2812 <Instance>
2813 The MSI '{0}' is explicitly marked to not elevate so it must be a per-user package but the ALLUSERS Property is set to '1' creating a per-machine package. Remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute to be explicit instead.
2814 <Parameter Type="System.String" Name="path" />
2815 </Instance>
2816 </Message>
2817 <Message Id="UnsupportedAllUsersValue" Number="364">
2818 <Instance>
2819 The MSI '{0}' set the ALLUSERS Property to '{0}' which is not supported. Remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute instead.
2820 <Parameter Type="System.String" Name="path" />
2821 <Parameter Type="System.String" Name="value" />
2822 </Instance>
2823 </Message>
2824 <Message Id="DisallowedMsiProperty" Number="365">
2825 <Instance>
2826 The '{0}' MsiProperty is controlled by the bootstrapper and cannot be authored. (Illegal properties are: {1}.) Remove the MsiProperty element.
2827 <Parameter Type="System.String" Name="property" />
2828 <Parameter Type="System.String" Name="illegalValueList" />
2829 </Instance>
2830 </Message>
2831 <Message Id="MissingOrInvalidModuleInstallerVersion" Number="366">
2832 <Instance>
2833 The merge module '{0}' from file '{1}' is either missing or has an invalid installer version. The value read from the installer version in module's summary information was '{2}'. This should be a numeric value representing a valid installer version such as 200 or 301.
2834 <Parameter Type="System.String" Name="moduleId" />
2835 <Parameter Type="System.String" Name="mergeModuleFile" />
2836 <Parameter Type="System.String" Name="productInstallerVersion" />
2837 </Instance>
2838 </Message>
2839 <Message Id="IllegalGeneratedGuidComponentUnversionedKeypath" Number="367">
2840 <Instance>
2841 The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with more than one file cannot use an automatically generated guid unless a versioned file is the keypath and the other files are unversioned. This component's keypath is not versioned. Create multiple components to use automatically generated guids.
2842 </Instance>
2843 </Message>
2844 <Message Id="IllegalGeneratedGuidComponentVersionedNonkeypath" Number="368">
2845 <Instance>
2846 The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with more than one file cannot use an automatically generated guid unless a versioned file is the keypath and the other files are unversioned. This component has a non-keypath file that is versioned. Create multiple components to use automatically generated guids.
2847 </Instance>
2848 </Message>
2849 <Message Id="DuplicateComponentGuids" Number="369">
2850 <Instance>
2851 Component/@Id='{0}' has a @Guid value '{1}' that duplicates another component in this package. It is recommended to give each component its own unique GUID.
2852 <Parameter Type="System.String" Name="componentId" />
2853 <Parameter Type="System.String" Name="guid" />
2854 </Instance>
2855 </Message>
2856 <Message Id="DuplicateProviderDependencyKey" Number="370" SourceLineNumbers="no">
2857 <Instance>
2858 The provider dependency key '{0}' was already imported from the package with Id '{1}'. Please remove the Provides element with the key '{0}' from the package authoring.
2859 <Parameter Type="System.String" Name="providerKey" />
2860 <Parameter Type="System.String" Name="packageId" />
2861 </Instance>
2862 </Message>
2863 <Message Id="MissingDependencyVersion" Number="371" SourceLineNumbers="no">
2864 <Instance>
2865 The provider dependency version was not authored for the package with Id '{0}'. Please author the Provides/@Version attribute for this package.
2866 <Parameter Type="System.String" Name="packageId" />
2867 </Instance>
2868 </Message>
2869
2870 <Message Id="UnexpectedElementWithAttribute" Number="372">
2871 <Instance>
2872 The {0} element cannot have a child element '{1}' when attribute '{2}' is set.
2873 <Parameter Type="System.String" Name="elementName" />
2874 <Parameter Type="System.String" Name="childElementName" />
2875 <Parameter Type="System.String" Name="attribute" />
2876 </Instance>
2877 </Message>
2878 <Message Id="ExpectedAttributeWithElement" Number="373">
2879 <Instance>
2880 The {0} element must have attribute '{1}' when child element '{2}' is present.
2881 <Parameter Type="System.String" Name="elementName" />
2882 <Parameter Type="System.String" Name="attribute" />
2883 <Parameter Type="System.String" Name="childElementName" />
2884 </Instance>
2885 </Message>
2886 <Message Id="DuplicatedUiLocalization" Number="374">
2887 <Instance>
2888 The localization for control {0} in dialog {1} is duplicated. Only one localization per control is allowed.
2889 <Parameter Type="System.String" Name="controlName" />
2890 <Parameter Type="System.String" Name="dialogName" />
2891 </Instance>
2892 <Instance>
2893 The localization for dialog {0} is duplicated. Only one localization per dialog is allowed.
2894 <Parameter Type="System.String" Name="dialogName" />
2895 </Instance>
2896 </Message>
2897 <Message Id="MaximumCabinetSizeForLargeFileSplittingTooLarge" Number="375">
2898 <Instance>
2899 '{0}' is too large. Reduce the size of maximum cabinet size for large file splitting. The maximum permitted value is '{1}' MB.
2900 <Parameter Type="System.Int32" Name="maximumCabinetSizeForLargeFileSplitting" />
2901 <Parameter Type="System.Int32" Name="maxValueOfMaxCabSizeForLargeFileSplitting" />
2902 </Instance>
2903 </Message>
2904 <Message Id="SplitCabinetCopyRegistrationFailed" Number="376" SourceLineNumbers="no">
2905 <Instance>
2906 Failed to register the copy command for cabinet '{0}' formed by splitting cabinet '{1}'.
2907 <Parameter Type="System.String" Name="newCabName" />
2908 <Parameter Type="System.String" Name="firstCabName" />
2909 </Instance>
2910 </Message>
2911 <Message Id="SplitCabinetNameCollision" Number="377" SourceLineNumbers="no">
2912 <Instance>
2913 The cabinet name '{0}' collides with the new cabinet formed by splitting cabinet '{1}', consider renaming cabinet '{0}'.
2914 <Parameter Type="System.String" Name="newCabName" />
2915 <Parameter Type="System.String" Name="firstCabName" />
2916 </Instance>
2917 </Message>
2918 <Message Id="SplitCabinetInsertionFailed" Number="378" SourceLineNumbers="no">
2919 <Instance>
2920 Could not find the last split cabinet '{2}' in the Media Table. So failed to add new cabinet '{0}' formed by splitting cabinet '{1}' to the installer package.
2921 <Parameter Type="System.String" Name="newCabName" />
2922 <Parameter Type="System.String" Name="firstCabName" />
2923 <Parameter Type="System.String" Name="lastCabinetOfThisSequence" />
2924 </Instance>
2925 </Message>
2926 <Message Id="InvalidPreprocessorFunctionAutoVersion" Number="379">
2927 <Instance>
2928 Invalid AutoVersion template specified.
2929 </Instance>
2930 </Message>
2931 <Message Id="InvalidModuleOrBundleVersion" Number="380">
2932 <Instance>
2933 Invalid {0}/@Version '{1}'. {0} version has a max value of "65535.65535.65535.65535" and must be all numeric.
2934 <Parameter Type="System.String" Name="moduleOrBundle" />
2935 <Parameter Type="System.String" Name="version" />
2936 </Instance>
2937 </Message>
2938 <Message Id="UnsupportedPlatformForElement" Number="381">
2939 <Instance>
2940 The element {1} does not support platform '{0}'. Consider removing the element or using the preprocessor to conditionally include the element based on the platform.
2941 <Parameter Type="System.String" Name="platform" />
2942 <Parameter Type="System.String" Name="elementName" />
2943 </Instance>
2944 </Message>
2945 <Message Id="MissingMedia" Number="382">
2946 <Instance>
2947 There is no media defined for disk id '{0}'. You must author either &lt;Media Id='{0}' ...&gt; or &lt;MediaTemplate ...&gt;.
2948 <Parameter Type="System.Int32" Name="diskId" />
2949 </Instance>
2950 </Message>
2951 <Message Id="RemotePayloadUnsupported" Number="383">
2952 <Instance>
2953 The RemotePayload element can only be used for ExePackage and MsuPackage payloads.
2954 </Instance>
2955 </Message>
2956 <Message Id="IllegalYesNoAlwaysValue" Number="384">
2957 <Instance>
2958 The {0}/@{1} attribute's value, '{2}', is not a legal yes/no/always value. The only legal values are 'always', 'no' or 'yes'.
2959 <Parameter Type="System.String" Name="elementName" />
2960 <Parameter Type="System.String" Name="attributeName" />
2961 <Parameter Type="System.String" Name="value" />
2962 </Instance>
2963 </Message>
2964 <Message Id="TooDeeplyIncluded" Number="385">
2965 <Instance>
2966 Include files cannot be nested more deeply than {0} times. Make sure included files don't accidentally include themselves.
2967 <Parameter Type="System.Int32" Name="depth" />
2968 </Instance>
2969 </Message>
2970 <Message Id="TooManyColumnsInRealTable" Number="386" SourceLineNumbers="no">
2971 <Instance>
2972 The table '{0}' contains {1} columns which is not supported by Windows Installer. Windows Installer supports a maximum of {2} columns.
2973 <Parameter Type="System.String" Name="tableName" />
2974 <Parameter Type="System.Int32" Name="columnCount" />
2975 <Parameter Type="System.Int32" Name="supportedColumnCount" />
2976 </Instance>
2977 </Message>
2978 <Message Id="InlineDirectorySyntaxRequiresPath" Number="387">
2979 <Instance>
2980 The {0}/@{1} attribute's value '{2}' only specifies a directory reference. The inline directory syntax requires that at least one directory be specified in addition to the value. For example, use '{3}:\foo\' to add a 'foo' directory.
2981 <Parameter Type="System.String" Name="elementName" />
2982 <Parameter Type="System.String" Name="attributeName" />
2983 <Parameter Type="System.String" Name="value" />
2984 <Parameter Type="System.String" Name="identifier" />
2985 </Instance>
2986 </Message>
2987 <Message Id="InsecureBundleFilename" Number="388" SourceLineNumbers="no">
2988 <Instance>
2989 The file name '{0}' creates an insecure bundle. Windows will load unnecessary compatibility shims into a bundle with that file name. These compatibility shims can be DLL hijacked allowing attackers to compromise your customers' computer. Choose a different bundle file name.
2990 <Parameter Type="System.String" Name="filename" />
2991 </Instance>
2992 </Message>
2993 <Message Id="PayloadMustBeRelativeToCache" Number="389">
2994 <Instance>
2995 The {0}/@{1} attribute's value, '{2}', is not a legal path name: Payload names must be relative to their cache directory and cannot contain '..'.
2996 <Parameter Type="System.String" Name="elementName" />
2997 <Parameter Type="System.String" Name="attributeName" />
2998 <Parameter Type="System.String" Name="attributeValue" />
2999 </Instance>
3000 </Message>
3001 <Message Id="MsiTransactionX86BeforeX64" Number="390">
3002 <Instance>
3003 MSI transactions must install all x64 packages before any x86 package.
3004 </Instance>
3005 </Message>
3006 </Class>
3007
3008 <Class Name="WixWarnings" ContainerName="WixWarningEventArgs" BaseContainerName="MessageEventArgs" Level="Warning">
3009 <Message Id="IdentifierCannotBeModularized" Number="1000">
3010 <Instance>
3011 The {0}/@{1} attribute's value, '{2}', is {3} characters long. It will be too long if modularized. The identifier shouldn't be longer than {4} characters long to allow for modularization (appending a guid for merge modules).
3012 <Parameter Type="System.String" Name="elementName" />
3013 <Parameter Type="System.String" Name="attributeName" />
3014 <Parameter Type="System.String" Name="identifier" />
3015 <Parameter Type="System.Int32" Name="length" />
3016 <Parameter Type="System.Int32" Name="maximumLength" />
3017 </Instance>
3018 </Message>
3019 <Message Id="EmptyAttributeValue" Number="1001">
3020 <Instance>
3021 The {0}/@{1} attribute's value cannot be an empty string. If you want the value to be null or empty, simply remove the entire attribute.
3022 <Parameter Type="System.String" Name="elementName" />
3023 <Parameter Type="System.String" Name="attributeName" />
3024 </Instance>
3025 </Message>
3026 <Message Id="UnableToFindFileFromCabOrImage" Number="1002">
3027 <Instance>
3028 Unable to find existing file {0} to place in src location {1}. Will likely cause a linker break.
3029 <Parameter Type="System.String" Name="existingFileSpec" />
3030 <Parameter Type="System.String" Name="srcFileSpec" />
3031 </Instance>
3032 </Message>
3033 <Message Id="CopyFileFileIdUseless" Number="1003">
3034 <Instance>Since the CopyFile/@FileId attribute was specified but none of the following attributes (DestinationName, DestinationDirectory, DestinationProperty) were specified, this authoring will not do anything.</Instance>
3035 </Message>
3036 <Message Id="NestedInstall" Number="1004">
3037 <Instance>
3038 The {0}.{1} column's value, '{2}', indicates a nested install. Nested installations are not supported by the WiX team. This action will be left out of the decompiled output.
3039 <Parameter Type="System.String" Name="tableName" />
3040 <Parameter Type="System.String" Name="columnName" />
3041 <Parameter Type="System.Object" Name="value" />
3042 </Instance>
3043 </Message>
3044 <Message Id="OrphanedProgId" Number="1005">
3045 <Instance>
3046 ProgId '{0}' is orphaned. It has no associated component, so it will never install. Every ProgId should have either a parent Class element or child Extension element (at any distance).
3047 <Parameter Type="System.String" Name="progId" />
3048 </Instance>
3049 </Message>
3050 <Message Id="PropertyUseless" Number="1006">
3051 <Instance>
3052 Property '{0}' does not contain a Value attribute and is not marked as Admin, Secure, or Hidden. The Property element is being ignored.
3053 <Parameter Type="System.String" Name="id" />
3054 </Instance>
3055 </Message>
3056 <Message Id="RemoveFileNameRequired" Number="1007">
3057 <Instance>The RemoveFile/@Name attribute will soon become required. In order to match the old functionality of not specifying this attribute, please use the new RemoveFolder element instead.</Instance>
3058 </Message>
3059 <Message Id="SuppressAction" Number="1008">
3060 <Instance>
3061 The action '{0}' in the {1} table is being suppressed.
3062 <Parameter Type="System.String" Name="action" />
3063 <Parameter Type="System.String" Name="sequenceName" />
3064 </Instance>
3065 </Message>
3066 <Message Id="SuppressMergedAction" Number="1009" SourceLineNumbers="no">
3067 <Instance>
3068 The merged action '{0}' in the {1} table is being suppressed.
3069 <Parameter Type="System.String" Name="action" />
3070 <Parameter Type="System.String" Name="sequenceName" />
3071 </Instance>
3072 </Message>
3073 <Message Id="TargetDirCorrectedDefaultDir" Number="1010" SourceLineNumbers="no">
3074 <Instance>
3075 The Directory with Id 'TARGETDIR' must have the value 'SourceDir' in its 'DefaultDir' column. This has been automatically corrected for you in the decompiled output.
3076 </Instance>
3077 </Message>
3078 <Message Id="AccessDeniedForDeletion" Number="1011">
3079 <Instance>
3080 Access denied; cannot delete '{0}'.
3081 <Parameter Type="System.String" Name="tempFilesBasePath" />
3082 </Instance>
3083 </Message>
3084 <Message Id="DirectoryInUse" Number="1012">
3085 <Instance>
3086 The directory '{0}' is in use and cannot be deleted.
3087 <Parameter Type="System.String" Name="filePath" />
3088 </Instance>
3089 </Message>
3090 <Message Id="AccessDeniedForSettingAttributes" Number="1013">
3091 <Instance>
3092 Access denied; cannot set attributes on '{0}'.
3093 <Parameter Type="System.String" Name="filePath" />
3094 </Instance>
3095 </Message>
3096 <Message Id="UnknownAction" Number="1024">
3097 <Instance>
3098 The {0} table contains an action '{1}' which is not a known custom action, dialog, or standard action. This action will be left out of the decompiled output.
3099 <Parameter Type="System.String" Name="sequenceTableName" />
3100 <Parameter Type="System.String" Name="actionName" />
3101 </Instance>
3102 </Message>
3103 <Message Id="IdentifierTooLong" Number="1026">
3104 <Instance>
3105 The {0}/@{1} attribute's value, '{2}', is too long for an identifier. Standard identifiers are 72 characters long or less.
3106 <Parameter Type="System.String" Name="elementName" />
3107 <Parameter Type="System.String" Name="attributeName" />
3108 <Parameter Type="System.String" Name="value" />
3109 </Instance>
3110 </Message>
3111 <Message Id="UnknownPermission" Number="1030">
3112 <Instance>
3113 The {0} table contains a row with primary key '{1}' which has an unknown permission at bit {2}.
3114 <Parameter Type="System.String" Name="tableName" />
3115 <Parameter Type="System.String" Name="primaryKey" />
3116 <Parameter Type="System.Int32" Name="bitPosition" />
3117 </Instance>
3118 </Message>
3119 <Message Id="DirectoryRedundantNames" Number="1031">
3120 <Instance>
3121 The {0} element's {1} and {2} values are both '{3}'. This is redundant; the {2} attribute should be removed.
3122 <Parameter Type="System.String" Name="elementName" />
3123 <Parameter Type="System.String" Name="shortNameAttributeName" />
3124 <Parameter Type="System.String" Name="longNameAttributeName" />
3125 <Parameter Type="System.String" Name="attributeValue" />
3126 </Instance>
3127 <Instance>
3128 The {0} element's source and destination names are identical. This is redundant; the {1} and {2} attributes should be removed if present.
3129 <Parameter Type="System.String" Name="elementName" />
3130 <Parameter Type="System.String" Name="sourceNameAttributeName" />
3131 <Parameter Type="System.String" Name="longSourceAttributeName" />
3132 </Instance>
3133 </Message>
3134 <Message Id="UnableToResetAcls" Number="1032" SourceLineNumbers="no">
3135 <Instance>Unable to reset acls on destination files.</Instance>
3136 </Message>
3137 <Message Id="MediaExternalCabinetFilenameIllegal" Number="1033">
3138 <Instance>
3139 The {0}/@{1} attribute's value, '{2}', is not a valid external cabinet name. Legal cabinet names should follow 8.3 format: they should contain no more than 8 characters followed by an optional extension of no more than 3 characters. Any character except for the following may be used: \ ? | &gt; &lt; : / * " + , ; = [ ] (space). The Windows Installer team has recommended following the 8.3 format for external cabinet files and any other naming scheme is officially unsupported (which means it is not guaranteed to work on all platforms).
3140 <Parameter Type="System.String" Name="elementName" />
3141 <Parameter Type="System.String" Name="attributeName" />
3142 <Parameter Type="System.String" Name="value" />
3143 </Instance>
3144 </Message>
3145 <Message Id="DeprecatedPreProcVariable" Number="1034">
3146 <Instance>
3147 The built-in preprocessor variable '{0}' is deprecated. Please correct your authoring to use the new '{1}' preprocessor variable instead.
3148 <Parameter Type="System.String" Name="oldName" />
3149 <Parameter Type="System.String" Name="newName" />
3150 </Instance>
3151 </Message>
3152 <Message Id="FileSearchFileNameIssue" Number="1043">
3153 <Instance>
3154 The {0} element's {1} and {2} attributes were found. Due to a bug with the Windows Installer, only the Name or LongName attribute should be used. Use the Name attribute for 8.3 compliant file names and the LongName attribute for longer ones. When using only the LongName attribute, ICE03 should be ignored for the Signature table's FileName column.
3155 <Parameter Type="System.String" Name="elementName" />
3156 <Parameter Type="System.String" Name="attributeName1" />
3157 <Parameter Type="System.String" Name="attributeName2" />
3158 </Instance>
3159 </Message>
3160 <Message Id="AmbiguousFileOrDirectoryName" Number="1044">
3161 <Instance>
3162 The {0}/@{1} attribute's value '{2}' is an ambiguous short name because it ends with a '~' character followed by a number. Under some circumstances, this name could resolve to more than one file or directory name and lead to unpredictable results (for example 'MICROS~1' may correspond to 'Microsoft Shared' or 'Microsoft Foo' or literally 'Micros~1').
3163 <Parameter Type="System.String" Name="elementName" />
3164 <Parameter Type="System.String" Name="attributeName" />
3165 <Parameter Type="System.String" Name="value" />
3166 </Instance>
3167 </Message>
3168 <Message Id="PossiblyIncorrectTypelibVersion" Number="1048">
3169 <Instance>
3170 The Typelib table entry with Id '{0}' could have an incorrect version of '256.0'. InstallShield has a bug relating to the Typelib Version column: it will incorrectly set the value '65536' in to represent version '1.0'. However, this number actually corresponds to version '256.0'. This bug will not affect the typelib version that is registered during installation, however, it will prevent the Windows Installer from correctly identifying whether a typelib is already installed and lead to unnecessary reinstallations of the typelib.
3171 <Parameter Type="System.String" Name="id" />
3172 </Instance>
3173 </Message>
3174 <Message Id="ImplicitComponentPrimaryFeature" Number="1049" SourceLineNumbers="no">
3175 <Instance>
3176 The component '{0}' does not have an explicit primary feature parent specified. If the source files are linked in a different order, the primary parent feature may change. To prevent accidental changes, the primary feature parent should be set to 'yes' in one of the ComponentRef/@Primary, ComponentGroupRef/@Primary, or FeatureGroupRef/@Primary locations for this component.
3177 <Parameter Type="System.String" Name="componentId" />
3178 </Instance>
3179 </Message>
3180 <Message Id="ActionSequenceCollision" Number="1050">
3181 <Instance>
3182 The {0} table contains actions '{1}' and '{2}' which both have the same sequence number {3}. Please change the sequence number for one of these actions to avoid an ICE warning.
3183 <Parameter Type="System.String" Name="sequenceTableName" />
3184 <Parameter Type="System.String" Name="actionName1" />
3185 <Parameter Type="System.String" Name="actionName2" />
3186 <Parameter Type="System.Int32" Name="sequenceNumber" />
3187 </Instance>
3188 </Message>
3189 <Message Id="ActionSequenceCollision2" Number="1051">
3190 <Instance>The location of the action related to previous warning.</Instance>
3191 </Message>
3192 <Message Id="SuppressAction2" Number="1052">
3193 <Instance>The location of the suppressed action related to previous warning.</Instance>
3194 </Message>
3195 <Message Id="UnexpectedTableInProduct" Number="1053">
3196 <Instance>
3197 An unexpected row in the '{0}' table was found in this product. Products should not contain the '{0}' table.
3198 <Parameter Type="System.String" Name="tableName" />
3199 </Instance>
3200 </Message>
3201 <Message Id="DeprecatedAttribute" Number="1054">
3202 <Instance>
3203 The {0}/@{1} attribute has been deprecated.
3204 <Parameter Type="System.String" Name="elementName" />
3205 <Parameter Type="System.String" Name="attributeName" />
3206 </Instance>
3207 <Instance>
3208 The {0}/@{1} attribute has been deprecated. Please use the {2} attribute instead.
3209 <Parameter Type="System.String" Name="elementName" />
3210 <Parameter Type="System.String" Name="attributeName" />
3211 <Parameter Type="System.String" Name="newAttributeName" />
3212 </Instance>
3213 <Instance>
3214 The {0}/@{1} attribute has been deprecated. Please use the {2} or {3} attribute instead.
3215 <Parameter Type="System.String" Name="elementName" />
3216 <Parameter Type="System.String" Name="attributeName" />
3217 <Parameter Type="System.String" Name="newAttributeName1" />
3218 <Parameter Type="System.String" Name="newAttributeName2" />
3219 </Instance>
3220 </Message>
3221 <Message Id="MergeRescheduledAction" Number="1055">
3222 <Instance>
3223 The {0} table contains an action '{1}' which cannot be merged from the merge module '{2}'. This action is likely colliding with an action in the database that is being created. The colliding action may have been authored in the database or merged in from another merge module. If this is a standard action, it is likely colliding due to a difference in the condition for the action in the database and merge module. If this is a custom action, it should only be declared in the database or one merge module.
3224 <Parameter Type="System.String" Name="tableName" />
3225 <Parameter Type="System.String" Name="actionName" />
3226 <Parameter Type="System.String" Name="mergeModuleFile" />
3227 </Instance>
3228 </Message>
3229 <Message Id="MergeTableFailed" Number="1056">
3230 <Instance>
3231 The {0} table contains a row with primary key(s) '{1}' which cannot be merged from the merge module '{2}'. This is likely due to collision of rows with the same primary key(s) (but other different values in other columns) between the database and the merge module.
3232 <Parameter Type="System.String" Name="tableName" />
3233 <Parameter Type="System.String" Name="primaryKeys" />
3234 <Parameter Type="System.String" Name="mergeModuleFile" />
3235 </Instance>
3236 </Message>
3237 <Message Id="DecompiledStandardActionRelativelyScheduledInModule" Number="1057">
3238 <Instance>
3239 The {0} table contains a standard action '{1}' that does not have a sequence number specified. A value in the Sequence column is required for standard actions in a merge module. Remove the action from the decompiled authoring to have WiX automatically sequence it.
3240 <Parameter Type="System.String" Name="sequenceTableName" />
3241 <Parameter Type="System.String" Name="actionName" />
3242 </Instance>
3243 </Message>
3244 <Message Id="IllegalActionInSequence" Number="1058">
3245 <Instance>
3246 The {0} table contains an action '{1}' which is not allowed in this table. If this is a standard action then it is not valid for this table, if it is a custom action or dialog then this table does not accept actions of that type. This action will be left out of the decompiled output.
3247 <Parameter Type="System.String" Name="sequenceTableName" />
3248 <Parameter Type="System.String" Name="actionName" />
3249 </Instance>
3250 </Message>
3251 <Message Id="ExpectedForeignRow" Number="1059">
3252 <Instance>
3253 The {0} table contains a row with primary key(s) '{1}' whose {2} column contains a value, '{3}', which specifies a foreign key relationship with the {4} table. However, since the expected foreign row specified by this value does not exist, this will result in some information being left out of the decompiled output.
3254 <Parameter Type="System.String" Name="tableName" />
3255 <Parameter Type="System.String" Name="primaryKey" />
3256 <Parameter Type="System.String" Name="columnName" />
3257 <Parameter Type="System.String" Name="columnValue" />
3258 <Parameter Type="System.String" Name="foreignTableName" />
3259 </Instance>
3260 <Instance>
3261 The {0} table contains a row with primary key(s) '{1}' whose {2} and {4} columns contain the values, '{3}' and '{5}', which specify a foreign key relationship with the {6} table. However, since the expected foreign row specified by this value does not exist, this will result in some information being left out of the decompiled output.
3262 <Parameter Type="System.String" Name="tableName" />
3263 <Parameter Type="System.String" Name="primaryKey" />
3264 <Parameter Type="System.String" Name="columnName1" />
3265 <Parameter Type="System.String" Name="columnValue1" />
3266 <Parameter Type="System.String" Name="columnName2" />
3267 <Parameter Type="System.String" Name="columnValue2" />
3268 <Parameter Type="System.String" Name="foreignTableName" />
3269 </Instance>
3270 </Message>
3271 <Message Id="DecompilingAsCustomTable" Number="1060">
3272 <Instance>
3273 The {0} table is being decompiled as a custom table.
3274 <Parameter Type="System.String" Name="tableName" />
3275 </Instance>
3276 </Message>
3277 <Message Id="IllegalPatchCreationTable" Number="1061">
3278 <Instance>
3279 The {0} table is not legal in a patch creation file. The information in this table will be left out of the decompiled output.
3280 <Parameter Type="System.String" Name="tableName" />
3281 </Instance>
3282 </Message>
3283 <Message Id="SkippingMergeModuleTable" Number="1062">
3284 <Instance>
3285 The {0} table can only be represented in WiX for merge modules. The information in this table will be left out of the decompiled output.
3286 <Parameter Type="System.String" Name="tableName" />
3287 </Instance>
3288 </Message>
3289 <Message Id="SkippingPatchCreationTable" Number="1063">
3290 <Instance>
3291 The {0} table can only be represented in WiX for patch creation files. The information in this table will be left out of the decompiled output.
3292 <Parameter Type="System.String" Name="tableName" />
3293 </Instance>
3294 </Message>
3295 <Message Id="UnrepresentableColumnValue" Number="1064">
3296 <Instance>
3297 The {0}.{1} column's value, '{2}', cannot currently be represented in the WiX schema.
3298 <Parameter Type="System.String" Name="tableName" />
3299 <Parameter Type="System.String" Name="columnName" />
3300 <Parameter Type="System.Object" Name="value" />
3301 </Instance>
3302 </Message>
3303 <Message Id="DeprecatedTable" Number="1065" SourceLineNumbers="no">
3304 <Instance>
3305 The {0} table is not supported by the WiX toolset because it has been deprecated by the Windows Installer team. Any information in this table will be left out of the decompiled output.
3306 <Parameter Type="System.String" Name="tableName" />
3307 </Instance>
3308 </Message>
3309 <Message Id="PatchTable" Number="1066">
3310 <Instance>
3311 The {0} table is added to the install package by a transform from a patch package (.msp) and not authored directly into an install package (.msi). The information in this table will be left out of the decompiled output.
3312 <Parameter Type="System.String" Name="tableName" />
3313 </Instance>
3314 </Message>
3315 <Message Id="IllegalColumnValue" Number="1067">
3316 <Instance>
3317 The {0}.{1} column's value, '{2}', is not a recognized legal value. This information will be left out of the decompiled output.
3318 <Parameter Type="System.String" Name="tableName" />
3319 <Parameter Type="System.String" Name="columnName" />
3320 <Parameter Type="System.Object" Name="value" />
3321 </Instance>
3322 </Message>
3323 <Message Id="DeprecatedLongNameAttribute" Number="1069">
3324 <Instance>
3325 The {0}/@{1} attribute has been deprecated. Since WiX now has the ability to generate short file/directory names, the desired name should be specified in the {2} attribute instead. If the name specified in the {2} attribute is a short name, then WiX will not generate a short name. If the name specified in the {2} attribute is a long name and you want to manually specify the short name, please set the short name value in the {3} attribute.
3326 <Parameter Type="System.String" Name="elementName" />
3327 <Parameter Type="System.String" Name="longNameAttributeName" />
3328 <Parameter Type="System.String" Name="nameAttributeName" />
3329 <Parameter Type="System.String" Name="shortNameAttributeName" />
3330 </Instance>
3331 </Message>
3332 <Message Id="GeneratedShortFileNameConflict" Number="1070">
3333 <Instance>
3334 The short file name '{0}' was generated for multiple files that may be installed to the same directory. This could be due to conflicting long file names specified by the File/@Name attribute. If that is the case, please resolve the conflict in those attributes. Otherwise, please manually set the File/@ShortName attribute on the conflicting row to fix the collision. If one of the colliding files was added via a patch, that short file name should be specified manually to avoid disturbing the original short file name.
3335 <Parameter Type="System.String" Name="shortFileName" />
3336 </Instance>
3337 </Message>
3338 <Message Id="GeneratedShortFileNameConflict2" Number="1071">
3339 <Instance>
3340 The location of a conflicting generated short file name related to the previous warning.
3341 </Instance>
3342 </Message>
3343 <Message Id="DangerousTableInMergeModule" Number="1072">
3344 <Instance>
3345 Merge modules should not contain the '{0}' table because all merge conflicts cannot avoided. However, this warning can be suppressed if all of the consumers of the Merge Module agree to not duplicate identifiers in the '{0}' table.
3346 <Parameter Type="System.String" Name="tableName" />
3347 </Instance>
3348 </Message>
3349 <Message Id="DeprecatedLocalizationVariablePrefix" Number="1073">
3350 <Instance>
3351 The localization variable $(loc.{0}) uses a deprecated prefix '$'. Please use the '!' prefix instead. Since the prefix '$' is also used by the preprocessor, it has been deprecated to avoid namespace collisions.
3352 <Parameter Type="System.String" Name="variableId" />
3353 </Instance>
3354 </Message>
3355 <Message Id="PlaceholderValue" Number="1074">
3356 <Instance>
3357 The {0}/@{1} attribute's value, '{2}', is a placeholder value used in example files. Please replace this placeholder with the appropriate value.
3358 <Parameter Type="System.String" Name="elementName" />
3359 <Parameter Type="System.String" Name="attributeName" />
3360 <Parameter Type="System.String" Name="value" />
3361 </Instance>
3362 </Message>
3363 <Message Id="MissingUpgradeCode" Number="1075">
3364 <Instance>The Product/@UpgradeCode attribute was not found; it is strongly recommended to ensure that this product can be upgraded.</Instance>
3365 </Message>
3366 <Message Id="ValidationWarning" Number="1076">
3367 <Instance>
3368 {0}: {1}
3369 <Parameter Type="System.String" Name="ice" />
3370 <Parameter Type="System.String" Name="message" />
3371 </Instance>
3372 </Message>
3373 <Message Id="PropertyValueContainsPropertyReference" Number="1077">
3374 <Instance>
3375 The '{0}' Property contains '[{1}]' in its value which is an illegal reference to another property. If this value is a string literal, not a property reference, please ignore this warning. To set a property with the value of another property, use a CustomAction with Property and Value attributes.
3376 <Parameter Type="System.String" Name="propertyId" />
3377 <Parameter Type="System.String" Name="otherProperty" />
3378 </Instance>
3379 </Message>
3380 <Message Id="DeprecatedUpgradeProperty" Number="1078">
3381 <Instance>Specifying a Property element as a child of an Upgrade element has been deprecated. Please specify this Property element as a child of a different element such as Product or Fragment.</Instance>
3382 </Message>
3383 <Message Id="EmptyCabinet" Number="1079">
3384 <Instance>
3385 The cabinet '{0}' does not contain any files. If this installation contains no files, this warning can likely be safely ignored. Otherwise, please add files to the cabinet or remove it.
3386 <Parameter Type="System.String" Name="cabinetName" />
3387 </Instance>
3388 <Instance>
3389 The cabinet '{0}' does not contain any files. If this patch contains no files, this warning can likely be safely ignored. Otherwise, try passing -p to torch.exe when first building the transforms, or add a ComponentRef to your PatchFamily authoring to pull changed files into the cabinet.
3390 <Parameter Type="System.String" Name="cabinetName" />
3391 <Parameter Type="System.Boolean" Name="isPatch" />
3392 </Instance>
3393 </Message>
3394 <Message Id="DeprecatedRegistryElement" Number="1080">
3395 <Instance>The Registry element has been deprecated. Please use one of the new elements which replaces its functionality: RegistryKey for creating registry keys, RegistryValue for writing registry values, RemoveRegistryKey for removing registry keys, and RemoveRegistryValue for removing registry values.</Instance>
3396 </Message>
3397 <Message Id="IllegalRegistryKeyPath" Number="1081">
3398 <Instance>
3399 Component '{0}' specifies an illegal registry keypath of '{1}'. Since this entry actually represents a registry key, not a registry value, it cannot be the keypath.
3400 <Parameter Type="System.String" Name="componentName" />
3401 <Parameter Type="System.String" Name="registryId" />
3402 </Instance>
3403 </Message>
3404 <Message Id="DeprecatedPatchSequenceTargetAttribute" Number="1082">
3405 <Instance>
3406 The {0}/@{1} attribute has been deprecated in favor of the more strongly-typed ProductCode or TargetImage attributes. Please use the ProductCode attribute for indicating the ProductCode of a patch family directly, or the TargetImage attribute to specify the TargetImage which in turn will retrieve the ProductCode of the patch family.
3407 <Parameter Type="System.String" Name="elementName" />
3408 <Parameter Type="System.String" Name="attributeName" />
3409 </Instance>
3410 </Message>
3411 <Message Id="ProductIdAuthored" Number="1083">
3412 <Instance>
3413 The 'ProductID' property should not be directly authored because it will prevent the ValidateProductID standard action from performing any validation during the installation. This property will be set by the ValidateProductID standard action or control event.
3414 </Instance>
3415 </Message>
3416 <Message Id="ImplicitMergeModulePrimaryFeature" Number="1084" SourceLineNumbers="no">
3417 <Instance>
3418 The merge module '{0}' does not have an explicit primary feature parent specified. If the source files are linked in a different order, the primary parent feature may change. To prevent accidental changes, the primary feature parent should be set to 'yes' in one of the MergeRef/@Primary or FeatureGroupRef/@Primary locations for this component.
3419 <Parameter Type="System.String" Name="componentId" />
3420 </Instance>
3421 </Message>
3422 <Message Id="DeprecatedIgnoreModularizationElement" Number="1085">
3423 <Instance>
3424 The IgnoreModularization element has been deprecated. Use the Binary/@SuppressModularization, CustomAction/@SuppressModularization, or Property/@SuppressModularization attribute instead.
3425 </Instance>
3426 </Message>
3427 <Message Id="PropertyModularizationSuppressed" Number="1086">
3428 <Instance>
3429 The Property/@SuppressModularization attribute has been set to 'yes'. Using this functionality is strongly discouraged; it should only be necessary as a workaround of last resort in rare scenarios.
3430 </Instance>
3431 </Message>
3432 <Message Id="DeprecatedPackageCompressedAttribute" Number="1087">
3433 <Instance>
3434 The Package/@Compressed attribute is deprecated under the Module element because merge modules must always be compressed.
3435 </Instance>
3436 </Message>
3437 <Message Id="DeprecatedModuleGuidAttribute" Number="1088">
3438 <Instance>
3439 The Module/@Guid attribute is deprecated merge modules use their package code as the modularization guid. Use the Package/@Id attribute instead.
3440 </Instance>
3441 </Message>
3442 <Message Id="DeprecatedQuestionMarksGuid" Number="1090">
3443 <Instance>
3444 The {0}/@{1} attribute's value '????????-????-????-????-????????????' has been deprecated. Use '*' instead.
3445 <Parameter Type="System.String" Name="elementName" />
3446 <Parameter Type="System.String" Name="attributeName" />
3447 </Instance>
3448 </Message>
3449 <Message Id="PackageCodeSet" Number="1091">
3450 <Instance>
3451 The Package/@Id attribute has been set. Setting this attribute will allow nonidentical .msi files to have the same package code. This may be a problem because the package code is the primary identifier used by the installer to search for and validate the correct package for a given installation. If a package is changed without changing the package code, the installer may not use the newer package if both are still accessible to the installer. Please remove the Id attribute in order to automatically generate a new package code for each new .msi file.
3452 </Instance>
3453 </Message>
3454 <Message Id="InvalidModuleOrBundleVersion" Number="1093">
3455 <Instance>
3456 Invalid {0}/@Version '{1}'. {0} version has a max value of "65535.65535.65535.65535" and must be all numeric.
3457 <Parameter Type="System.String" Name="moduleOrBundle" />
3458 <Parameter Type="System.String" Name="version" />
3459 </Instance>
3460 </Message>
3461 <Message Id="InvalidRemoveFile" Number="1095">
3462 <Instance>
3463 File '{0}' was removed from component '{1}'. Removing a file from a component will not result in the file being removed by a patch. You should author a RemoveFile element in your component to remove the file from the installation if you want the file to be removed.
3464 <Parameter Type="System.String" Name="file" />
3465 <Parameter Type="System.String" Name="component" />
3466 </Instance>
3467 </Message>
3468 <Message Id="PreprocessorWarning" Number="1096">
3469 <Instance>
3470 {0}
3471 <Parameter Type="System.String" Name="message" />
3472 </Instance>
3473 </Message>
3474 <Message Id="UpdateOfNonKeyPathFile" Number="1097" SourceLineNumbers="no">
3475 <Instance>
3476 File '{0}' in Component '{1}' was changed, but the KeyPath file '{2}' was not. This file will not be patched on the target system if the REINSTALLMODE does not contain 'A'. The KeyPath file should also be changed and included in your patch.
3477 <Parameter Type="System.String" Name="nonKeyPathFileId" />
3478 <Parameter Type="System.String" Name="componentId" />
3479 <Parameter Type="System.String" Name="keyPathFileId" />
3480 </Instance>
3481 </Message>
3482 <Message Id="UnsupportedCommandLineArgument" Number="1098" SourceLineNumbers="no">
3483 <Instance>
3484 '{0}' is not a valid command line argument.
3485 <Parameter Type="System.String" Name="arg" />
3486 </Instance>
3487 </Message>
3488 <Message Id="MajorUpgradePatchNotRecommended" Number="1099" SourceLineNumbers="no">
3489 <Instance>
3490 Changing the ProductCode in a patch is not recommended because the patch cannot be uninstalled nor can it be sequenced along with other patches for the target product. See http://msdn2.microsoft.com/library/aa367571.aspx for more information.
3491 </Instance>
3492 </Message>
3493 <Message Id="RetainRangeMismatch" Number="1100">
3494 <Instance>
3495 Mismatch in RetainRangeCounts for the file '{0}' - ignoring the retain ranges.
3496 <Parameter Type="System.String" Name="fileId"/>
3497 </Instance>
3498 </Message>
3499 <Message Id="DefaultLanguageUsedForVersionedFile" Number="1101">
3500 <Instance>
3501 The DefaultLanguage '{0}' was used for file '{1}' which has no language. Specifying a language that is different from the actual file may result in unexpected versioning behavior during a repair or while patching. Either specify a value for DefaultLanguage or put the language in the version information resource to eliminate this warning.
3502 <Parameter Type="System.String" Name="language"/>
3503 <Parameter Type="System.String" Name="fileId"/>
3504 </Instance>
3505 </Message>
3506 <Message Id="DefaultLanguageUsedForUnversionedFile" Number="1102">
3507 <Instance>
3508 The DefaultLanguage '{0}' was used for file '{1}' which has no language or version. For unversioned files, specifying a value for DefaultLanguage is not neccessary and it will not be used when determining file versions. Remove the DefaultLanguage attribute to eliminate this warning.
3509 <Parameter Type="System.String" Name="language"/>
3510 <Parameter Type="System.String" Name="fileId"/>
3511 </Instance>
3512 </Message>
3513 <Message Id="DefaultVersionUsedForUnversionedFile" Number="1103">
3514 <Instance>
3515 The DefaultVersion '{0}' was used for file '{1}' which has no version. No entry for this file will be placed in the MsiFileHash table. For unversioned files, specifying a version that is different from the actual file may result in unexpected versioning behavior during a repair or while patching. Version the resource to eliminate this warning.
3516 <Parameter Type="System.String" Name="version"/>
3517 <Parameter Type="System.String" Name="fileId"/>
3518 </Instance>
3519 </Message>
3520 <Message Id="InvalidHigherInstallerVersionInModule" Number="1104">
3521 <Instance>
3522 Merge module '{0}' has an installer version of {1} which is greater than the product's installer version of {2}. Merging a module with a higher installer version than the product it is being merged into can result in invalid values in the resulting msi. You must set the Package/@InstallerVersion attribute to {1} or greater to merge this merge module into your product.
3523 <Parameter Type="System.String" Name="moduleId" />
3524 <Parameter Type="System.Int32" Name="moduleInstallerVersion" />
3525 <Parameter Type="System.Int32" Name="productInstallerVersion" />
3526 </Instance>
3527 </Message>
3528 <Message Id="ValidationFailedDueToSystemPolicy" Number="1105" SourceLineNumbers="no">
3529 <Instance>
3530 Validation could not run due to system policy. To eliminate this warning, run the process as admin or suppress ICE validation.
3531 </Instance>
3532 </Message>
3533 <Message Id="ColumnsIncompatibleWithInstallerVersion" Number="1106">
3534 <Instance>
3535 Table '{0}' uses columns that require a version of Windows Installer greater than specified in your package ('{1}').
3536 <Parameter Type="System.String" Name="tableName" />
3537 <Parameter Type="System.Int32" Name="productInstallerVersion" />
3538 </Instance>
3539 </Message>
3540 <Message Id="TableIncompatibleWithInstallerVersion" Number="1107">
3541 <Instance>
3542 Using table '{0}' requires a version of Windows Installer greater than specified in your package ('{1}').
3543 <Parameter Type="System.String" Name="tableName" />
3544 <Parameter Type="System.Int32" Name="productInstallerVersion" />
3545 </Instance>
3546 </Message>
3547 <Message Id="DeprecatedCommandLineSwitch" Number="1108" SourceLineNumbers="no">
3548 <Instance>
3549 The command line switch '{0}' is deprecated.
3550 <Parameter Type="System.String" Name="oldSwitch" />
3551 </Instance>
3552 <Instance>
3553 The command line switch '{0}' is deprecated. Please use '{1}' instead.
3554 <Parameter Type="System.String" Name="oldSwitch" />
3555 <Parameter Type="System.String" Name="newSwitch" />
3556 </Instance>
3557 </Message>
3558 <Message Id="UnexpectedEntrySection" Number="1109">
3559 <Instance>
3560 Found mismatched entry point &lt;{0}&gt;. Expected &lt;{1}&gt; for specified output package type {2}.
3561 <Parameter Type="System.String" Name="sectionType" />
3562 <Parameter Type="System.String" Name="expectedType" />
3563 <Parameter Type="System.String" Name="outputExtension" />
3564 </Instance>
3565 </Message>
3566 <Message Id="NewComponentAddedToExistingFeature" Number="1110">
3567 <Instance>
3568 Component '{0}' was added to feature '{1}' in the transform '{2}'. If you cannot guarantee that this feature will always be installed, you should consider adding new components to new top-level features to prevent prompts for source when installing this patch.
3569 <Parameter Type="System.String" Name="component" />
3570 <Parameter Type="System.String" Name="feature" />
3571 <Parameter Type="System.String" Name="transformPath" />
3572 </Instance>
3573 </Message>
3574 <Message Id="DeprecatedAttributeValue" Number="1111">
3575 <Instance>
3576 The value &quot;{0}&quot; for the {1}/@{2} attribute has been deprecated. Please use &quot;{3}&quot; instead.
3577 <Parameter Type="System.String" Name="attributeValue" />
3578 <Parameter Type="System.String" Name="elementName" />
3579 <Parameter Type="System.String" Name="attributeName" />
3580 <Parameter Type="System.String" Name="newAttributeValue" />
3581 </Instance>
3582 </Message>
3583 <Message Id="InsufficientPermissionHarvestTypeLib" Number="1112" SourceLineNumbers="no">
3584 <Instance>
3585 Not enough permissions to harvest type library. On Windows Vista, you must either run Heat elevated, or install Windows Vista SP1 (or higher).
3586 </Instance>
3587 </Message>
3588 <Message Id="UnclearShortcut" Number="1113">
3589 <Instance>
3590 Because it is an advertised shortcut, the target of shortcut '{0}' will be the keypath of component '{2}' rather than parent file '{1}'. To eliminate this warning, you can (1) make the Shortcut element a child of the File element that is the keypath of component '{2}', (2) make file '{1}' the keypath of component '{2}', or (3) remove the @Advertise attribute so the shortcut is a non-advertised shortcut.
3591 <Parameter Type="System.String" Name="shortcutId" />
3592 <Parameter Type="System.String" Name="fileId" />
3593 <Parameter Type="System.String" Name="componentId" />
3594 </Instance>
3595 </Message>
3596 <Message Id="TooManyProgIds" Number="1114">
3597 <Instance>
3598 Class '{0}' tried to use ProgId '{1}' which has already been associated with class '{2}'. This information will be left out of the decompiled output.
3599 <Parameter Type="System.String" Name="clsId" />
3600 <Parameter Type="System.String" Name="progId" />
3601 <Parameter Type="System.String" Name="otherClsId" />
3602 </Instance>
3603 </Message>
3604 <Message Id="BadColumnDataIgnored" Number="1115">
3605 <Instance>
3606 The value '{0}' in table '{1}', column '{2}' is invalid according to the column's validation information. The decompiled output includes a best-effort representation of this value.
3607 <Parameter Type="System.String" Name="value" />
3608 <Parameter Type="System.String" Name="tableName" />
3609 <Parameter Type="System.String" Name="columnName" />
3610 </Instance>
3611 </Message>
3612 <Message Id="NullMsiAssemblyNameValue" Number="1116">
3613 <Instance>
3614 The assembly in component '{0}' has a null or empty {1} assembly name value.
3615 <Parameter Type="System.String" Name="componentName" />
3616 <Parameter Type="System.String" Name="name" />
3617 </Instance>
3618 </Message>
3619 <Message Id="InvalidAttributeCombination" Number="1117">
3620 <Instance>
3621 It is invalid to combine attributes {0} and {1}. The decompiled output will set attribute {2} to {3}.
3622 <Parameter Type="System.String" Name="attrib1" />
3623 <Parameter Type="System.String" Name="attrib2" />
3624 <Parameter Type="System.String" Name="name" />
3625 <Parameter Type="System.String" Name="value" />
3626 </Instance>
3627 </Message>
3628 <Message Id="VariableDeclarationCollision" Number="1118">
3629 <Instance>
3630 The variable '{0}' with value '{1}' was previously declared with value '{2}'.
3631 <Parameter Type="System.String" Name="variableName" />
3632 <Parameter Type="System.String" Name="variableValue" />
3633 <Parameter Type="System.String" Name="variableCollidingValue" />
3634 </Instance>
3635 </Message>
3636 <Message Id="DuplicatePrimaryKey" Number="1119">
3637 <Instance>
3638 The primary key '{0}' is duplicated in table '{1}' and will be ignored. Please remove one of the entries or rename a part of the primary key to avoid the collision.
3639 <Parameter Type="System.String" Name="primaryKey" />
3640 <Parameter Type="System.String" Name="tableName" />
3641 </Instance>
3642 </Message>
3643 <Message Id="RequiresMsi200for64bitPackage" Number="1121">
3644 <Instance>
3645 Package/@InstallerVersion must be 200 or greater for a 64-bit package. The value will be changed to 200. Please specify a value of 200 or greater in order to eliminate this warning.
3646 </Instance>
3647 </Message>
3648 <Message Id="ExternalCabsAreNotSigned" Number="1122" SourceLineNumbers="no">
3649 <Instance>
3650 The installer database '{0}' has external cabs, but at least one of them is not signed. Please ensure that all external cabs are signed, if you mean to sign them. If you don't mean to sign them, there is no need to run the insignia tool as part of your build.
3651 <Parameter Type="System.String" Name="databaseFile" />
3652 </Instance>
3653 </Message>
3654 <Message Id="FailedToDeleteTempDir" Number="1123" SourceLineNumbers="no">
3655 <Instance>
3656 Failed to delete temporary directory: {0}
3657 <Parameter Type="System.String" Name="directory" />
3658 </Instance>
3659 </Message>
3660 <Message Id="StandardDirectoryConflictInMergeModule" Number="1124">
3661 <Instance>
3662 The Directory '{0}' starts with the same Id as the standard folder in Windows Installer '{1}'. A directory Id that begins with the same Id as a standard folder that is in an MSM may encounter a conflict when merging the MSM into an MSI. This may result in the contents of this merge module being installed to an unexpected location. To eliminate this warning, change your directory Id to not start with the same Id as any standard folders.
3663 <Parameter Type="System.String" Name="directory" />
3664 <Parameter Type="System.String" Name="standardDirectory" />
3665 </Instance>
3666 </Message>
3667 <Message Id="PreprocessorUnknownPragma" Number="1125">
3668 <Instance>
3669 The pragma '{0}' is unknown. Please ensure you have referenced the extension that defines this pragma.
3670 <Parameter Type="System.String" Name="pragmaName" />
3671 </Instance>
3672 </Message>
3673 <Message Id="DeprecatedComponentGroupId" Number="1126">
3674 <Instance>
3675 The {0}/@Id attribute contains invalid characters for an identifier. Being able to use invalid identifier characters for a {0} identifier has been deprecated.
3676 <Parameter Type="System.String" Name="elementName" />
3677 </Instance>
3678 </Message>
3679 <Message Id="UxPayloadsOnlySupportEmbedding" Number="1127">
3680 <Instance>
3681 A UX Payload ('{0}') was marked for something other than embedded packaging, possibly because it included a @DownloadUrl attribute. At present, UX Payloads must be embedded in the Bundle, so the requested packaging is being ignored.
3682 <Parameter Type="System.String" Name="sourceFile" />
3683 </Instance>
3684 </Message>
3685 <Message Id="DiscardedRollbackBoundary" Number="1129">
3686 <Instance>
3687 The RollbackBoundary '{0}' was discarded because it was not followed by a package. Without a package the rollback boundary doesn't do anything. Verify that the RollbackBoundary element is not followed by another RollbackBoundary and that the element is not at the end of the chain.
3688 <Parameter Type="System.String" Name="rollbackBoundaryId" />
3689 </Instance>
3690 </Message>
3691 <Message Id="DeprecatedElement" Number="1130">
3692 <Instance>
3693 The {0} element has been deprecated.
3694 <Parameter Type="System.String" Name="elementName" />
3695 </Instance>
3696 <Instance>
3697 The {0} element has been deprecated. Please use the {1} element instead.
3698 <Parameter Type="System.String" Name="elementName" />
3699 <Parameter Type="System.String" Name="newElementName" />
3700 </Instance>
3701 <Instance>
3702 The {0} element has been deprecated. Please use the {1} or {2} element instead.
3703 <Parameter Type="System.String" Name="elementName" />
3704 <Parameter Type="System.String" Name="newElementName1" />
3705 <Parameter Type="System.String" Name="newElementName2" />
3706 </Instance>
3707 </Message>
3708 <Message Id="CannotUpdateCabCache" Number="1131">
3709 <Instance>
3710 Cannot update the timestamp of cached cabinet: '{0}'. If the timestamp is not updated, the build may rebuild more than is necessary. To fix the issue, ensure that the cabinet file is writable, error: {1}
3711 <Parameter Type="System.String" Name="cabinetPath" />
3712 <Parameter Type="System.String" Name="detail" />
3713 </Instance>
3714 </Message>
3715 <Message Id="DownloadUrlNotSupportedForEmbeddedPayloads" Number="1132">
3716 <Instance>
3717 The Payload '{0}' is embedded but included a @DownloadUrl attribute. Embedded Payloads cannot be downloaded so the download URL is being ignored.
3718 <Parameter Type="System.String" Name="payloadId" />
3719 </Instance>
3720 </Message>
3721 <Message Id="DiscouragedAllUsersValue" Number="1133">
3722 <Instance>
3723 Bundles require a package to be either per-machine or per-user. The MSI '{0}' ALLUSERS Property is set to '2' which may change from per-user to per-machine at install time. The Bundle will assume the package is per-{1} and will not work correctly if that changes. If possible, remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute instead.
3724 <Parameter Type="System.String" Name="path" />
3725 <Parameter Type="System.String" Name="machineOrUser" />
3726 </Instance>
3727 </Message>
3728 <Message Id="ImplicitlyPerUser" Number="1134">
3729 <Instance>
3730 The MSI '{0}' does not explicitly indicate that it is a per-user package even though the ALLUSERS Property is blank. This suggests a per-user package so the Bundle will assume the package is per-user. If possible, use the Package/@InstallScope attribute to be explicit instead.
3731 <Parameter Type="System.String" Name="path" />
3732 </Instance>
3733 </Message>
3734 <Message Id="PerUserButForcingPerMachine" Number="1135">
3735 <Instance>
3736 The MSI '{0}' is a per-user package being forced to per-machine. Verify that the MsiPackage/@ForcePerMachine attribute is expected and that the per-user package works correctly when forced to install per-machine.
3737 <Parameter Type="System.String" Name="path" />
3738 </Instance>
3739 </Message>
3740 <Message Id="AttributeShouldContain" Number="1136">
3741 <Instance>
3742 The {0}/@{1} attribute value '{2}' should contain '{3}' when the {0}/@{4} attribute is set to '{5}'.
3743 <Parameter Type="System.String" Name="elementName" />
3744 <Parameter Type="System.String" Name="attributeName" />
3745 <Parameter Type="System.String" Name="attributeValue" />
3746 <Parameter Type="System.String" Name="expectedContains" />
3747 <Parameter Type="System.String" Name="otherAttributeName" />
3748 <Parameter Type="System.String" Name="otherAttributeValue" />
3749 </Instance>
3750 </Message>
3751 <Message Id="DuplicateComponentGuidsMustHaveMutuallyExclusiveConditions" Number="1137">
3752 <Instance>
3753 Component/@Id='{0}' has a @Guid value '{1}' that duplicates another component in this package. This is not officially supported by Windows Installer but works as long as all components have mutually-exclusive conditions. It is recommended to give each component its own unique GUID.
3754 <Parameter Type="System.String" Name="componentId" />
3755 <Parameter Type="System.String" Name="guid" />
3756 </Instance>
3757 </Message>
3758 <Message Id="DeprecatedRegistryKeyActionAttribute" Number="1138">
3759 <Instance>
3760 The RegistryKey/@Action attribute has been deprecated. In most cases, you can simply omit @Action. If you need to force Windows Installer to create an empty key or recursively delete the key, use the ForceCreateOnInstall or ForceDeleteOnUninstall attributes instead.
3761 </Instance>
3762 </Message>
3763 <Message Id="NotABinaryWixlib" Number="1139" SourceLineNumbers="no">
3764 <Instance>
3765 '{0}' is not a binary Wixlib and has no embedded files.
3766 <Parameter Type="System.String" Name="wixlib" />
3767 </Instance>
3768 </Message>
3769 <Message Id="NoPerMachineDependencies" Number="1140">
3770 <Instance>
3771 Bundle dependencies will not be registered on per-machine package '{0}' for a per-user bundle. Either make sure that all packages are installed per-machine, or author any per-machine dependencies as permanent packages.
3772 <Parameter Type="System.String" Name="packageId" />
3773 </Instance>
3774 </Message>
3775 <Message Id="DownloadUrlNotSupportedForAttachedContainers" Number="1141">
3776 <Instance>
3777 The Container '{0}' is attached but included a @DownloadUrl attribute. Attached Containers cannot be downloaded so the download URL is being ignored.
3778 <Parameter Type="System.String" Name="containerId" />
3779 </Instance>
3780 </Message>
3781 <Message Id="ReservedAttribute" Number="1142">
3782 <Instance>
3783 The {0}/@{1} attribute is reserved for future use and has no effect in this version of the WiX toolset.
3784 <Parameter Type="System.String" Name="elementName" />
3785 <Parameter Type="System.String" Name="attributeName" />
3786 </Instance>
3787 </Message>
3788 <Message Id="RequiresMsi500forArmPackage" Number="1143">
3789 <Instance>
3790 Package/@InstallerVersion must be 500 or greater for an Arm package. The value will be changed to 500. Please specify a value of 500 or greater in order to eliminate this warning.
3791 </Instance>
3792 </Message>
3793 <Message Id="RemotePayloadsMustNotAlsoBeCompressed" Number="1144">
3794 <Instance>
3795 The {0}/@Compressed attribute must have value 'no' when a RemotePayload child element is present. RemotePayload indicates that a package will always be downloaded and cannot be compressed into a bundle. To eliminate this warning, explicitly set the {0}/@Compressed attribute to 'no'.
3796 <Parameter Type="System.String" Name="elementName" />
3797 </Instance>
3798 </Message>
3799 <Message Id="AllChangesIncludedInPatch" Number="1145">
3800 <Instance>
3801 All changes between the baseline and upgraded packages will be included in the patch except for any change to the ProductCode. The 'All' element is supported primarily for testing purposes and negates the benefits of patch families.
3802 </Instance>
3803 </Message>
3804 <Message Id="RelatedAttributeConditionallyIgnored" Number="1146">
3805 <Instance>
3806 Ignoring attribute {0} because attribute {1} is set to {2}.
3807 <Parameter Type="System.String" Name="recessiveAttribute" />
3808 <Parameter Type="System.String" Name="dominantAttribute" />
3809 <Parameter Type="System.String" Name="dominantValue" />
3810 </Instance>
3811 </Message>
3812 <Message Id="BackslashTerminateInlineDirectorySyntax" Number="1147">
3813 <Instance>
3814 Backslash terminate the {0}/@{1} attribute's inline directory value '{2}'. A backslash ensures a directory name will not be mistaken for a directory reference.
3815 <Parameter Type="System.String" Name="elementName" />
3816 <Parameter Type="System.String" Name="attributeName" />
3817 <Parameter Type="System.String" Name="value" />
3818 </Instance>
3819 </Message>
3820 <Message Id="VersionTruncated" Number="1148">
3821 <Instance>
3822 Product version {0} in package '{1}' is not valid per the MSI SDK and cannot be represented in a bundle. It has been truncated to {2}.
3823 <Parameter Type="System.String" Name="originalVersion" />
3824 <Parameter Type="System.String" Name="package" />
3825 <Parameter Type="System.String" Name="truncatedVersion" />
3826 </Instance>
3827 </Message>
3828 <Message Id="ServiceConfigFamilyNotSupported" Number="1149">
3829 <Instance>
3830 {0} functionality is documented in the Windows Installer SDK to "not [work] as expected." Consider replacing {0} with the WixUtilExtension ServiceConfig element.
3831 <Parameter Type="System.String" Name="elementName" />
3832 </Instance>
3833 </Message>
3834 </Class>
3835
3836 <Class Name="WixVerboses" ContainerName="WixVerboseEventArgs" BaseContainerName="MessageEventArgs" Level="Verbose">
3837 <Message Id="ImportBinaryStream" Number="9000" SourceLineNumbers="no">
3838 <Instance>
3839 Importing binary stream from '{0}'.
3840 <Parameter Type="System.String" Name="streamSource" />
3841 </Instance>
3842 </Message>
3843 <Message Id="ImportIconStream" Number="9001" SourceLineNumbers="no">
3844 <Instance>
3845 Importing icon stream from '{0}'.
3846 <Parameter Type="System.String" Name="streamSource" />
3847 </Instance>
3848 </Message>
3849 <Message Id="CopyFile" Number="9002" SourceLineNumbers="no">
3850 <Instance>
3851 Copying file '{0}' to '{1}'.
3852 <Parameter Type="System.String" Name="sourceFile" />
3853 <Parameter Type="System.String" Name="destinationFile" />
3854 </Instance>
3855 </Message>
3856 <Message Id="MoveFile" Number="9003" SourceLineNumbers="no">
3857 <Instance>
3858 Moving file '{0}' to '{1}'.
3859 <Parameter Type="System.String" Name="sourceFile" />
3860 <Parameter Type="System.String" Name="destinationFile" />
3861 </Instance>
3862 </Message>
3863 <Message Id="CreateDirectory" Number="9004" SourceLineNumbers="no">
3864 <Instance>
3865 The directory '{0}' does not exist, creating it now.
3866 <Parameter Type="System.String" Name="directory" />
3867 </Instance>
3868 </Message>
3869 <Message Id="RemoveDestinationFile" Number="9005" SourceLineNumbers="no">
3870 <Instance>
3871 The destination file '{0}' already exists, attempting to remove it.
3872 <Parameter Type="System.String" Name="destinationFile" />
3873 </Instance>
3874 </Message>
3875 <Message Id="CabFile" Number="9006" SourceLineNumbers="no">
3876 <Instance>
3877 Cabbing file {0} from '{1}'.
3878 <Parameter Type="System.String" Name="fileId" />
3879 <Parameter Type="System.String" Name="filePath" />
3880 </Instance>
3881 </Message>
3882 <Message Id="UpdatingFileInformation" Number="9007" SourceLineNumbers="no">
3883 <Instance>Updating file information.</Instance>
3884 </Message>
3885 <Message Id="GeneratingDatabase" Number="9008" SourceLineNumbers="no">
3886 <Instance>Generating database.</Instance>
3887 </Message>
3888 <Message Id="MergingModules" Number="9009" SourceLineNumbers="no">
3889 <Instance>Merging modules.</Instance>
3890 </Message>
3891 <Message Id="CreatingCabinetFiles" Number="9010" SourceLineNumbers="no">
3892 <Instance>Creating cabinet files.</Instance>
3893 </Message>
3894 <Message Id="ImportingStreams" Number="9011" SourceLineNumbers="no">
3895 <Instance>Importing streams.</Instance>
3896 </Message>
3897 <Message Id="LayingOutMedia" Number="9012" SourceLineNumbers="no">
3898 <Instance>Laying out media.</Instance>
3899 </Message>
3900 <Message Id="DecompilingTable" Number="9013" SourceLineNumbers="no">
3901 <Instance>
3902 Decompiling the {0} table.
3903 <Parameter Type="System.String" Name="tableName" />
3904 </Instance>
3905 </Message>
3906 <Message Id="ValidationInfo" Number="9014" SourceLineNumbers="no">
3907 <Instance>
3908 {0}: {1}
3909 <Parameter Type="System.String" Name="ice" />
3910 <Parameter Type="System.String" Name="message" />
3911 </Instance>
3912 </Message>
3913 <Message Id="CreateCabinet" Number="9015" SourceLineNumbers="no">
3914 <Instance>
3915 Creating cabinet '{0}'.
3916 <Parameter Type="System.String" Name="cabinet" />
3917 </Instance>
3918 </Message>
3919 <Message Id="ValidatingDatabase" Number="9016" SourceLineNumbers="no">
3920 <Instance>Validating database.</Instance>
3921 </Message>
3922 <Message Id="OpeningMergeModule" Number="9017" SourceLineNumbers="no">
3923 <Instance>
3924 Opening merge module '{0}' with language '{1}'.
3925 <Parameter Type="System.String" Name="modulePath" />
3926 <Parameter Type="System.Int16" Name="language" />
3927 </Instance>
3928 </Message>
3929 <Message Id="MergingMergeModule" Number="9018" SourceLineNumbers="no">
3930 <Instance>
3931 Merging merge module '{0}'.
3932 <Parameter Type="System.String" Name="modulePath" />
3933 </Instance>
3934 </Message>
3935 <Message Id="ConnectingMergeModule" Number="9019" SourceLineNumbers="no">
3936 <Instance>
3937 Connecting merge module '{0}' to feature '{1}'.
3938 <Parameter Type="System.String" Name="modulePath" />
3939 <Parameter Type="System.String" Name="feature" />
3940 </Instance>
3941 </Message>
3942 <Message Id="ResequencingMergeModuleFiles" Number="9020" SourceLineNumbers="no">
3943 <Instance>Resequencing files from all merge modules.</Instance>
3944 </Message>
3945 <Message Id="BinderTempDirLocatedAt" Number="9021" SourceLineNumbers="no">
3946 <Instance>
3947 Binder temporary directory located at '{0}'.
3948 <Parameter Type="System.String" Name="directory" />
3949 </Instance>
3950 </Message>
3951 <Message Id="ValidatorTempDirLocatedAt" Number="9022" SourceLineNumbers="no">
3952 <Instance>
3953 Validator temporary directory located at '{0}'.
3954 <Parameter Type="System.String" Name="directory" />
3955 </Instance>
3956 </Message>
3957 <Message Id="GeneratingBundle" Number="9023" SourceLineNumbers="no">
3958 <Instance>
3959 Generating Burn bundle '{0}' from stub '{1}'.
3960 <Parameter Type="System.String" Name="bundleFile" />
3961 <Parameter Type="System.String" Name="stubFile" />
3962 </Instance>
3963 </Message>
3964 <Message Id="ResolvingManifest" Number="9024" SourceLineNumbers="no">
3965 <Instance>
3966 Generating resolved manifest '{0}'.
3967 <Parameter Type="System.String" Name="manifestFile" />
3968 </Instance>
3969 </Message>
3970 <Message Id="LoadingPayload" Number="9025" SourceLineNumbers="no">
3971 <Instance>
3972 Loading payload '{0}' into container.
3973 <Parameter Type="System.String" Name="payload" />
3974 </Instance>
3975 </Message>
3976 <Message Id="BundleGuid" Number="9026" SourceLineNumbers="no">
3977 <Instance>
3978 Assigning bundle GUID '{0}'.
3979 <Parameter Type="System.String" Name="bundleGuid" />
3980 </Instance>
3981 </Message>
3982 <Message Id="CopyingExternalPayload" Number="9027" SourceLineNumbers="no">
3983 <Instance>
3984 Copying external payload from '{0}' to '{1}'.
3985 <Parameter Type="System.String" Name="payload" />
3986 <Parameter Type="System.String" Name="outputDirectory" />
3987 </Instance>
3988 </Message>
3989 <Message Id="EmbeddingContainer" Number="9028" SourceLineNumbers="no">
3990 <Instance>
3991 Embedding container '{0}' ({1} bytes) with '{2}' compression.
3992 <Parameter Type="System.String" Name="container" />
3993 <Parameter Type="System.Int64" Name="size" />
3994 <Parameter Type="System.String" Name="compression" />
3995 </Instance>
3996 </Message>
3997 <Message Id="SwitchingToPerUserPackage" Number="9029">
3998 <Instance>
3999 Bundle switching from per-machine to per-user due to addition of per-user package '{0}'.
4000 <Parameter Type="System.String" Name="path" />
4001 </Instance>
4002 </Message>
4003 <Message Id="SetCabbingThreadCount" Number="9030" SourceLineNumbers="no">
4004 <Instance>
4005 There will be '{0}' threads used to produce CAB files.
4006 <Parameter Type="System.String" Name="threads" />
4007 </Instance>
4008 </Message>
4009 <Message Id="ValidationSerialized" Number="9031" SourceLineNumbers="no">
4010 <Instance>
4011 Multiple packages cannot reliably be validated simultaneously. This validation will resume when the other package being validated has completed.
4012 </Instance>
4013 </Message>
4014 <Message Id="ReusingCabCache" Number="9032">
4015 <Instance>
4016 Reusing cabinet '{0}' from cabinet cache path: '{1}'.
4017 <Parameter Type="System.String" Name="cabinetName" />
4018 <Parameter Type="System.String" Name="source" />
4019 </Instance>
4020 </Message>
4021 <Message Id="CabinetsSplitInParallel" Number="9033" SourceLineNumbers="no">
4022 <Instance>
4023 Multiple Cabinets with Large Files are splitting simultaneously. This current cabinet is waiting on a shared resource and splitting will resume when the other splitting has completed.
4024 </Instance>
4025 </Message>
4026 <Message Id="ValidatedDatabase" Number="9034" SourceLineNumbers="no">
4027 <Instance>
4028 Validation complete: {0:N0}ms elapsed.
4029 <Parameter Type="System.Int64" Name="size" />
4030 </Instance>
4031 </Message>
4032 </Class>
4033</Messages>
diff --git a/src/WixToolset.Data/Data/messages.xml.old b/src/WixToolset.Data/Data/messages.xml.old
deleted file mode 100644
index 986426c3..00000000
--- a/src/WixToolset.Data/Data/messages.xml.old
+++ /dev/null
@@ -1,107 +0,0 @@
1<?xml version='1.0' encoding='utf-8'?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4
5<Messages Namespace="WixToolset.Data" Resources="Data.Messages" xmlns="http://schemas.microsoft.com/genmsgs/2004/07/messages">
6 <Class Name="WixDataErrors" ContainerName="WixDataErrorEventArgs" BaseContainerName="MessageEventArgs" Level="Error">
7 <Message Id="UnexpectedFileFormat" Number="1" SourceLineNumbers="no">
8 <Instance>
9 Unexpected file format loaded from path: {0}. The file was expected to be a {1} but was actually: {2}. Ensure the correct path was provided.
10 <Parameter Type="System.String" Name="path" />
11 <Parameter Type="System.String" Name="expectedFormat" />
12 <Parameter Type="System.String" Name="actualFormat" />
13 </Instance>
14 </Message>
15 <Message Id="CorruptFileFormat" Number="2" SourceLineNumbers="no">
16 <Instance>
17 Attempted to load corrupt file from path: {0}. The file with format {1} contained unexpected content. Ensure the correct path was provided and that the file has not been incorrectly modified.
18 <Parameter Type="System.String" Name="path" />
19 <Parameter Type="System.String" Name="format" />
20 </Instance>
21 </Message>
22 <Message Id="InvalidFileName" Number="85">
23 <Instance>
24 Invalid file name '{0}'.
25 <Parameter Type="System.String" Name="fileName" />
26 </Instance>
27 </Message>
28 <Message Id="DuplicateLocalizationIdentifier" Number="100">
29 <Instance>
30 The localization identifier '{0}' has been duplicated in multiple locations. Please resolve the conflict.
31 <Parameter Type="System.String" Name="localizationId" />
32 </Instance>
33 </Message>
34 <Message Id="FileNotFound" Number="103">
35 <Instance>
36 The system cannot find the file '{0}'.
37 <Parameter Type="System.String" Name="file" />
38 </Instance>
39 <Instance>
40 The system cannot find the file '{0}' with type '{1}'.
41 <Parameter Type="System.String" Name="file" />
42 <Parameter Type="System.String" Name="fileType" />
43 </Instance>
44 </Message>
45 <Message Id="DuplicatePrimaryKey" Number="130">
46 <Instance>
47 The primary key '{0}' is duplicated in table '{1}'. Please remove one of the entries or rename a part of the primary key to avoid the collision.
48 <Parameter Type="System.String" Name="primaryKey" />
49 <Parameter Type="System.String" Name="tableName" />
50 </Instance>
51 </Message>
52 <Message Id="InvalidIdt" Number="136">
53 <Instance>
54 There was an error importing the file '{0}'.
55 <Parameter Type="System.String" Name="idtFile" />
56 </Instance>
57 <Instance>
58 There was an error importing table '{1}' from file '{0}'.
59 <Parameter Type="System.String" Name="idtFile" />
60 <Parameter Type="System.String" Name="tableName" />
61 </Instance>
62 </Message>
63 <Message Id="VersionMismatch" Number="141">
64 <Instance>
65 The {0} file format version {1} is not compatible with the expected {0} file format version {2}.
66 <Parameter Type="System.String" Name="fileType" />
67 <Parameter Type="System.String" Name="version" />
68 <Parameter Type="System.String" Name="expectedVersion" />
69 </Instance>
70 </Message>
71 <Message Id="IllegalFileCompressionAttributes" Number="167">
72 <Instance>Cannot have both the MsidbFileAttributesCompressed and MsidbFileAttributesNoncompressed options set in a file attributes column.</Instance>
73 </Message>
74 <Message Id="MissingTableDefinition" Number="182" SourceLineNumbers="no">
75 <Instance>
76 Cannot find the table definitions for the '{0}' table. This is likely due to a typing error or missing extension. Please ensure all the necessary extensions are supplied on the command line with the -ext parameter.
77 <Parameter Type="System.String" Name="tableName" />
78 </Instance>
79 </Message>
80 <Message Id="RealTableMissingPrimaryKeyColumn" Number="225">
81 <Instance>
82 The table '{0}' does not contain any primary key columns. At least one column must be marked as the primary key to ensure this table can be patched.
83 <Parameter Type="System.String" Name="tableName" />
84 </Instance>
85 </Message>
86 <Message Id="PathTooLong" Number="262">
87 <Instance>
88 '{0}' is too long, the fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
89 <Parameter Type="System.String" Name="fileName" />
90 </Instance>
91 </Message>
92 <Message Id="InvalidStringForCodepage" Number="311">
93 <Instance>
94 A string was provided with characters that are not available in the specified database code page '{0}'. Either change these characters to ones that exist in the database's code page, or update the database's code page by modifying one of the following attributes: Product/@Codepage, Module/@Codepage, Patch/@Codepage, PatchCreation/@Codepage, or WixLocalization/@Codepage.
95 <Parameter Type="System.String" Name="codepage" />
96 </Instance>
97 </Message>
98 <Message Id="TooManyColumnsInRealTable" Number="386" SourceLineNumbers="no">
99 <Instance>
100 The table '{0}' contains {1} columns which is not supported by Windows Installer. Windows Installer supports a maximum of {2} columns.
101 <Parameter Type="System.String" Name="tableName" />
102 <Parameter Type="System.Int32" Name="columnCount" />
103 <Parameter Type="System.Int32" Name="supportedColumnCount" />
104 </Instance>
105 </Message>
106 </Class>
107</Messages>
diff --git a/src/WixToolset.Data/DuplicateSymbolsException.cs b/src/WixToolset.Data/DuplicateSymbolsException.cs
deleted file mode 100644
index 6f14d049..00000000
--- a/src/WixToolset.Data/DuplicateSymbolsException.cs
+++ /dev/null
@@ -1,37 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6 using System.Collections;
7
8#if false
9 /// <summary>
10 /// Duplicate symbols exception.
11 /// </summary>
12 [Serializable]
13 public sealed class DuplicateSymbolsException : Exception
14 {
15 [NonSerialized]
16 private Symbol[] duplicateSymbols;
17
18 /// <summary>
19 /// Instantiate a new DuplicateSymbolException.
20 /// </summary>
21 /// <param name="symbols">The duplicated symbols.</param>
22 public DuplicateSymbolsException(ArrayList symbols)
23 {
24 this.duplicateSymbols = (Symbol[])symbols.ToArray(typeof(Symbol));
25 }
26
27 /// <summary>
28 /// Gets the duplicate symbols.
29 /// </summary>
30 /// <returns>List of duplicate symbols.</returns>
31 public Symbol[] GetDuplicateSymbols()
32 {
33 return this.duplicateSymbols;
34 }
35 }
36#endif
37}
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs
new file mode 100644
index 00000000..7ce94157
--- /dev/null
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -0,0 +1,2615 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6 using System.Resources;
7
8 public static class ErrorMessages
9 {
10 public static Message ActionCircularDependency(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName1, string actionName2)
11 {
12 return Message(sourceLineNumbers, Ids.ActionCircularDependency, "The {0} table contains an action '{1}' that is scheduled to come before or after action '{2}', which is also scheduled to come before or after action '{1}'. Please remove this circular dependency by changing the Before or After attribute for one of the actions.", sequenceTableName, actionName1, actionName2);
13 }
14
15 public static Message ActionCollision(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
16 {
17 return Message(sourceLineNumbers, Ids.ActionCollision, "The {0} table contains an action '{1}' that is declared in two different locations. Please remove one of the actions or set the Overridable='yes' attribute on one of their elements.", sequenceTableName, actionName);
18 }
19
20 public static Message ActionCollision2(SourceLineNumber sourceLineNumbers)
21 {
22 return Message(sourceLineNumbers, Ids.ActionCollision2, "The location of the action related to previous error.");
23 }
24
25 public static Message ActionScheduledRelativeToItself(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue)
26 {
27 return Message(sourceLineNumbers, Ids.ActionScheduledRelativeToItself, "The {0}/@{1} attribute's value '{2}' is invalid because it would make this action dependent upon itself. Please change the value to the name of a different action.", elementName, attributeName, attributeValue);
28 }
29
30 public static Message ActionScheduledRelativeToTerminationAction(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName1, string actionName2)
31 {
32 return Message(sourceLineNumbers, Ids.ActionScheduledRelativeToTerminationAction, "The {0} table contains an action '{1}' that is scheduled to come before or after action '{2}', which is a special action which only occurs when the installer terminates. These special actions can be identified by their negative sequence numbers. Please schedule the action '{1}' to come before or after a different action.", sequenceTableName, actionName1, actionName2);
33 }
34
35 public static Message ActionScheduledRelativeToTerminationAction2(SourceLineNumber sourceLineNumbers)
36 {
37 return Message(sourceLineNumbers, Ids.ActionScheduledRelativeToTerminationAction2, "The location of the special termination action related to previous error(s).");
38 }
39
40 public static Message AdditionalArgumentUnexpected(string argument)
41 {
42 return Message(null, Ids.AdditionalArgumentUnexpected, "Additional argument '{0}' was unexpected. Remove the argument and add the '-?' switch for more information.", argument);
43 }
44
45 public static Message AdminImageRequired(string productCode)
46 {
47 return Message(null, Ids.AdminImageRequired, "Source information is required for the product '{0}'. If you ran torch.exe with both target and updated .msi files, you must first perform an administrative installation of both .msi files then pass -a when running torch.exe.", productCode);
48 }
49
50 public static Message AdvertiseStateMustMatch(SourceLineNumber sourceLineNumbers, string advertiseState, string parentAdvertiseState)
51 {
52 return Message(sourceLineNumbers, Ids.AdvertiseStateMustMatch, "The advertise state of this element: '{0}', does not match the advertise state set on the parent element: '{1}'.", advertiseState, parentAdvertiseState);
53 }
54
55 public static Message AppIdIncompatibleAdvertiseState(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string parentValue)
56 {
57 return Message(sourceLineNumbers, Ids.AppIdIncompatibleAdvertiseState, "The {0}/@(1) attribute's value, '{2}' does not match the advertise state on its parent element: '{3}'. (Note: AppIds nested under Fragment, Module, or Product elements must be advertised.)", elementName, attributeName, value, parentValue);
58 }
59
60 public static Message BaselineRequired()
61 {
62 return Message(null, Ids.BaselineRequired, "No baseline was specified for one of the transforms specified. A baseline is required for all transforms in a patch.");
63 }
64
65 public static Message BinderFileManagerMissingFile(SourceLineNumber sourceLineNumbers, string exceptionMessage)
66 {
67 return Message(sourceLineNumbers, Ids.BinderFileManagerMissingFile, "{0}", exceptionMessage);
68 }
69
70 public static Message BothUpgradeCodesRequired()
71 {
72 return Message(null, Ids.BothUpgradeCodesRequired, "Both the target and updated product authoring must define the Product/@UpgradeCode attribute if the transform validates the UpgradeCode (default). Either define the Product/@UpgradeCode attribute in both the target and updated authoring, or set the Validate/@UpgradeCode attribute to 'no' in the patch authoring.");
73 }
74
75 public static Message BundleTooNew(string bundleExecutable, long bundleVersion)
76 {
77 return Message(null, Ids.BundleTooNew, "Unable to read bundle executable '{0}', because this bundle was created with a newer version of WiX (bundle version '{1}'). You must use a newer version of WiX in order to read this bundle.", bundleExecutable, bundleVersion);
78 }
79
80 public static Message CabClosureFailed(string cabinet)
81 {
82 return Message(null, Ids.CabClosureFailed, "Failed to close cab '{0}'.", cabinet);
83 }
84
85 public static Message CabClosureFailed(string cabinet, int error)
86 {
87 return Message(null, Ids.CabClosureFailed, "Failed to close cab '{0}', error: {1}.", cabinet, error);
88 }
89
90 public static Message CabCreationFailed(string cabName, string fileName, int error)
91 {
92 return Message(null, Ids.CabCreationFailed, "Failed to create cab '{0}' while compressing file '{1}' with error 0x{2:X8}.", cabName, fileName, error);
93 }
94
95 public static Message CabCreationFailed(string cabName, int error)
96 {
97 return Message(null, Ids.CabCreationFailed, "Failed to create cab '{0}' with error 0x{1:X8}.", cabName, error);
98 }
99
100 public static Message CabExtractionFailed(string cabName, string directoryName)
101 {
102 return Message(null, Ids.CabExtractionFailed, "Failed to extract cab '{0}' to directory '{1}'. This is most likely due to a lack of available disk space on the destination drive.", cabName, directoryName);
103 }
104
105 public static Message CabExtractionFailed(string cabName, string mergeModulePath, string directoryName)
106 {
107 return Message(null, Ids.CabExtractionFailed, "Failed to extract cab '{0}' from merge module '{1}' to directory '{2}'. This is most likely due to a lack of available disk space on the destination drive.", cabName, mergeModulePath, directoryName);
108 }
109
110 public static Message CabFileDoesNotExist(string cabName, string mergeModulePath, string directoryName)
111 {
112 return Message(null, Ids.CabFileDoesNotExist, "Attempted to extract cab '{0}' from merge module '{1}' to directory '{2}'. The cab file was not found. This usually means that you have a merge module without a cabinet inside it.", cabName, mergeModulePath, directoryName);
113 }
114
115 public static Message CannotAuthorSpecialProperties(SourceLineNumber sourceLineNumbers, string propertyName)
116 {
117 return Message(sourceLineNumbers, Ids.CannotAuthorSpecialProperties, "The {0} property was specified. Special MSI properties cannot be authored. Use the attributes on the Property element instead.", propertyName);
118 }
119
120 public static Message CannotDefaultComponentId(SourceLineNumber sourceLineNumbers)
121 {
122 return Message(sourceLineNumbers, Ids.CannotDefaultComponentId, "The Component/@Id attribute was not found; it is required when there is no valid keypath to use as the default id value.");
123 }
124
125 public static Message CannotDefaultMismatchedAdvertiseStates(SourceLineNumber sourceLineNumbers)
126 {
127 return Message(sourceLineNumbers, Ids.CannotDefaultMismatchedAdvertiseStates, "MIME element cannot be marked as the default when its advertise state differs from its parent element. Ensure that the advertise state of the MIME element matches its parents element or remove the Mime/@Advertise attribute completely.");
128 }
129
130 public static Message CannotFindFile(SourceLineNumber sourceLineNumbers, string fileId, string fileName, string filePath)
131 {
132 return Message(sourceLineNumbers, Ids.CannotFindFile, "The file with id '{0}' and name '{1}' could not be found with source path: '{2}'.", fileId, fileName, filePath);
133 }
134
135 public static Message CanNotHaveTwoParents(SourceLineNumber sourceLineNumbers, string directorySearch, string parentAttribute, string parentElement)
136 {
137 return Message(sourceLineNumbers, Ids.CanNotHaveTwoParents, "The DirectorySearchRef {0} can not have a Parent attribute {1} and also be nested under parent element {2}", directorySearch, parentAttribute, parentElement);
138 }
139
140 public static Message CannotLoadBinderFileManager(string binderFileManager, string currentBinderFileManager)
141 {
142 return Message(null, Ids.CannotLoadBinderFileManager, "Cannot load binder file manager: {0}. Light can only load one binder file manager and has already loaded binder file manager: {1}.", binderFileManager, currentBinderFileManager);
143 }
144
145 public static Message CannotLoadLinkerExtension(string linkerExtension, string currentLinkerExtension)
146 {
147 return Message(null, Ids.CannotLoadLinkerExtension, "Cannot load linker extension: {0}. Light can only load one link extension and has already loaded link extension: {1}.", linkerExtension, currentLinkerExtension);
148 }
149
150 public static Message CannotOpenMergeModule(SourceLineNumber sourceLineNumbers, string mergeModuleIdentifier, string mergeModuleFile)
151 {
152 return Message(sourceLineNumbers, Ids.CannotOpenMergeModule, "Cannot open the merge module '{0}' from file '{1}'.", mergeModuleIdentifier, mergeModuleFile);
153 }
154
155 public static Message CannotReundefineVariable(SourceLineNumber sourceLineNumbers, string variableName)
156 {
157 return Message(sourceLineNumbers, Ids.CannotReundefineVariable, "The variable '{0}' cannot be undefined because its already undefined.", variableName);
158 }
159
160 public static Message CatalogFileHashFailed(string fileName, int errorCode)
161 {
162 return Message(null, Ids.CatalogFileHashFailed, "Could not get hash of file '{0}'. Error: {2}.", fileName, errorCode);
163 }
164
165 public static Message CatalogVerificationFailed(string fileName)
166 {
167 return Message(null, Ids.CatalogVerificationFailed, "File '{0}' could not be verified with a catalog file.", fileName);
168 }
169
170 public static Message CheckBoxValueOnlyValidWithCheckBox(SourceLineNumber sourceLineNumbers, string elementName, string controlType)
171 {
172 return Message(sourceLineNumbers, Ids.CheckBoxValueOnlyValidWithCheckBox, "A {0} element was specified with Type='{1}' and a CheckBoxValue. Check box values can only be specified with Type='CheckBox'.", elementName, controlType);
173 }
174
175 public static Message CollidingModularizationTypes(string tableName, string columnName, string foreignTableName, int foreignColumnNumber, string modularizationType, string foreignModularizationType)
176 {
177 return Message(null, Ids.CollidingModularizationTypes, "The definition for the '{0}' table's '{1}' column is a foreign key relationship to the '{2}' table's column number {3}. The modularization types of the two column definitions differ: one is {4} and the other is {5}. Change one of the modularization types so that they match.", tableName, columnName, foreignTableName, foreignColumnNumber, modularizationType, foreignModularizationType);
178 }
179
180 public static Message ComponentExpectedFeature(SourceLineNumber sourceLineNumbers, string component, string type, string target)
181 {
182 return Message(sourceLineNumbers, Ids.ComponentExpectedFeature, "The component '{0}' is not assigned to a feature. The component's {1} '{2}' requires it to be assigned to at least one feature.", component, type, target);
183 }
184
185 public static Message ComponentMultipleKeyPaths(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string fileElementName, string registryElementName, string odbcDataSourceElementName)
186 {
187 return Message(sourceLineNumbers, Ids.ComponentMultipleKeyPaths, "The {0} element has multiple key paths set. The key path may only be set to '{2}' in extension elements that support it or one of the following locations: {0}/@{1}, {3}/@{1}, {4}/@{1}, or {5}/@{1}.", elementName, attributeName, value, fileElementName, registryElementName, odbcDataSourceElementName);
188 }
189
190 public static Message ComponentReferencedTwice(SourceLineNumber sourceLineNumbers, string crefChildId)
191 {
192 return Message(sourceLineNumbers, Ids.ComponentReferencedTwice, "Component {0} cannot be contained in a Module twice.", crefChildId);
193 }
194
195 public static Message ConditionExpected(SourceLineNumber sourceLineNumbers, string elementName)
196 {
197 return Message(sourceLineNumbers, Ids.ConditionExpected, "The {0} element's inner text cannot be an empty string or completely whitespace. If you don't want a condition, then simply remove the entire {0} element.", elementName);
198 }
199
200 public static Message CorruptFileFormat(string path, FileFormat format)
201 {
202 return Message(null, Ids.CorruptFileFormat, "Attempted to load corrupt file from path: {0}. The file with format {1} contained unexpected content. Ensure the correct path was provided and that the file has not been incorrectly modified.", path, format.ToString().ToLowerInvariant());
203 }
204
205 public static Message CreateCabAddFileFailed()
206 {
207 return Message(null, Ids.CreateCabAddFileFailed, "An error (E_FAIL) was returned while adding files to a CAB file. This most commonly happens when creating a CAB file 2 GB or larger. Either reduce the size of your installation package, raise Media/@CompressionLevel to a higher compression level, or split your installation package's files into more than one CAB file.");
208 }
209
210 public static Message CreateCabInsufficientDiskSpace()
211 {
212 return Message(null, Ids.CreateCabInsufficientDiskSpace, "An error (ERROR_DISK_FULL) was returned while creating a CAB file. This means you have insufficient disk space - please clear more disk space and try this operation again.");
213 }
214
215 public static Message CubeFileNotFound(string cubeFile)
216 {
217 return Message(null, Ids.CubeFileNotFound, "The cube file '{0}' cannot be found. This file is required for MSI validation.", cubeFile);
218 }
219
220 public static Message CustomActionIllegalInnerText(SourceLineNumber sourceLineNumbers, string elementName, string innerText, string attributeName)
221 {
222 return Message(sourceLineNumbers, Ids.CustomActionIllegalInnerText, "The {0} element contains illegal inner text: '{1}'. It may not contain inner text unless the {2} attribute is specified.", elementName, innerText, attributeName);
223 }
224
225 public static Message CustomActionMultipleSources(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeName1, string attributeName2, string attributeName3, string attributeName4, string attributeName5)
226 {
227 return Message(sourceLineNumbers, Ids.CustomActionMultipleSources, "The {0}/@{1} attribute cannot coexist with a previously specified attribute on this element. The {0} element may only have one of the following source attributes specified at a time: {2}, {3}, {4}, {5}, or {6}.", elementName, attributeName, attributeName1, attributeName2, attributeName3, attributeName4, attributeName5);
228 }
229
230 public static Message CustomActionMultipleTargets(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeName1, string attributeName2, string attributeName3, string attributeName4, string attributeName5, string attributeName6, string attributeName7)
231 {
232 return Message(sourceLineNumbers, Ids.CustomActionMultipleTargets, "The {0}/@{1} attribute cannot coexist with a previously specified attribute on this element. The {0} element may only have one of the following target attributes specified at a time: {2}, {3}, {4}, {5}, {6}, {7}, or {8}.", elementName, attributeName, attributeName1, attributeName2, attributeName3, attributeName4, attributeName5, attributeName6, attributeName7);
233 }
234
235 public static Message CustomActionSequencedInModule(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
236 {
237 return Message(sourceLineNumbers, Ids.CustomActionSequencedInModule, "The {0} table contains a custom action '{1}' that has a sequence number specified. The Sequence attribute is not allowed for custom actions in a merge module. Please remove the action or use the Before or After attributes to specify where this action should be sequenced relative to another action.", sequenceTableName, actionName);
238 }
239
240 public static Message CustomTableIllegalColumnWidth(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, int value)
241 {
242 return Message(sourceLineNumbers, Ids.CustomTableIllegalColumnWidth, "The {0}/@{1} attribute's value, '{2}', is not a valid column width. Valid column widths are 2 or 4.", elementName, attributeName, value);
243 }
244
245 public static Message CustomTableMissingPrimaryKey(SourceLineNumber sourceLineNumbers)
246 {
247 return Message(sourceLineNumbers, Ids.CustomTableMissingPrimaryKey, "The CustomTable is missing a Column element with the PrimaryKey attribute set to 'yes'. At least one column must be marked as the primary key.");
248 }
249
250 public static Message CustomTableNameTooLong(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
251 {
252 return Message(sourceLineNumbers, Ids.CustomTableNameTooLong, "The {0}/@{1} attribute's value, '{2}', is too long for a table name. It cannot be more than than 31 characters long.", elementName, attributeName, value);
253 }
254
255 public static Message DatabaseSchemaMismatch(SourceLineNumber sourceLineNumbers, string tableName)
256 {
257 return Message(sourceLineNumbers, Ids.DatabaseSchemaMismatch, "The table definition of '{0}' in the target database does not match the table definition in the updated database. A transform requires that the target database schema match the updated database schema.", tableName);
258 }
259
260 public static Message DirectoryPathRequired(string parameter)
261 {
262 return Message(null, Ids.DirectoryPathRequired, "The parameter '{0}' must be followed by a directory path.", parameter);
263 }
264
265 public static Message DirectoryRootWithoutName(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
266 {
267 return Message(sourceLineNumbers, Ids.DirectoryRootWithoutName, "The {0} element requires the {1} attribute because there is no parent {0} element.", elementName, attributeName);
268 }
269
270 public static Message DisallowedMsiProperty(SourceLineNumber sourceLineNumbers, string property, string illegalValueList)
271 {
272 return Message(sourceLineNumbers, Ids.DisallowedMsiProperty, "The '{0}' MsiProperty is controlled by the bootstrapper and cannot be authored. (Illegal properties are: {1}.) Remove the MsiProperty element.", property, illegalValueList);
273 }
274
275 public static Message DuplicateCabinetName(SourceLineNumber sourceLineNumbers, string cabinetName)
276 {
277 return Message(sourceLineNumbers, Ids.DuplicateCabinetName, "Duplicate cabinet name '{0}' found.", cabinetName);
278 }
279
280 public static Message DuplicateCabinetName2(SourceLineNumber sourceLineNumbers, string cabinetName)
281 {
282 return Message(sourceLineNumbers, Ids.DuplicateCabinetName2, "Duplicate cabinet name '{0}' error related to previous error.", cabinetName);
283 }
284
285 public static Message DuplicateCommandLineOptionInExtension(string arg)
286 {
287 return Message(null, Ids.DuplicateCommandLineOptionInExtension, "The command line option '{0}' has already been loaded by another Heat extension.", arg);
288 }
289
290 public static Message DuplicateComponentGuids(SourceLineNumber sourceLineNumbers, string componentId, string guid)
291 {
292 return Message(sourceLineNumbers, Ids.DuplicateComponentGuids, "Component/@Id='{0}' has a @Guid value '{1}' that duplicates another component in this package. It is recommended to give each component its own unique GUID.", componentId, guid);
293 }
294
295 public static Message DuplicateContextValue(SourceLineNumber sourceLineNumbers, string contextValue)
296 {
297 return Message(sourceLineNumbers, Ids.DuplicateContextValue, "The context value '{0}' was duplicated. Context values must be distinct.", contextValue);
298 }
299
300 public static Message DuplicatedUiLocalization(SourceLineNumber sourceLineNumbers, string controlName, string dialogName)
301 {
302 return Message(sourceLineNumbers, Ids.DuplicatedUiLocalization, "The localization for control {0} in dialog {1} is duplicated. Only one localization per control is allowed.", controlName, dialogName);
303 }
304
305 public static Message DuplicatedUiLocalization(SourceLineNumber sourceLineNumbers, string dialogName)
306 {
307 return Message(sourceLineNumbers, Ids.DuplicatedUiLocalization, "The localization for dialog {0} is duplicated. Only one localization per dialog is allowed.", dialogName);
308 }
309
310 public static Message DuplicateExtensionPreprocessorType(string extension, string variablePrefix, string collidingExtension)
311 {
312 return Message(null, Ids.DuplicateExtensionPreprocessorType, "The extension '{0}' uses the same preprocessor variable prefix, '{1}', as previously loaded extension '{2}'. Please remove one of the extensions or rename the prefix to avoid the collision.", extension, variablePrefix, collidingExtension);
313 }
314
315 public static Message DuplicateExtensionTable(string extension, string tableName)
316 {
317 return Message(null, Ids.DuplicateExtensionTable, "The extension '{0}' contains a definition for table '{1}' that collides with a previously loaded table definition. Please remove one of the conflicting extensions or rename one of the tables to avoid the collision.", extension, tableName);
318 }
319
320 public static Message DuplicateExtensionXmlSchemaNamespace(string extension, string extensionXmlSchemaNamespace, string collidingExtension)
321 {
322 return Message(null, Ids.DuplicateExtensionXmlSchemaNamespace, "The extension '{0}' uses the same xml schema namespace, '{1}', as previously loaded extension '{2}'. Please either remove one of the extensions or rename the xml schema namespace to avoid the collision.", extension, extensionXmlSchemaNamespace, collidingExtension);
323 }
324
325 public static Message DuplicateFileId(string fileId)
326 {
327 return Message(null, Ids.DuplicateFileId, "Multiple files with ID '{0}' exist. Windows Installer does not support file IDs that differ only by case. Change the file IDs to be unique.", fileId);
328 }
329
330 public static Message DuplicateLocalizationIdentifier(SourceLineNumber sourceLineNumbers, string localizationId)
331 {
332 return Message(sourceLineNumbers, Ids.DuplicateLocalizationIdentifier, "The localization identifier '{0}' has been duplicated in multiple locations. Please resolve the conflict.", localizationId);
333 }
334
335 public static Message DuplicateModuleCaseInsensitiveFileIdentifier(SourceLineNumber sourceLineNumbers, string moduleId, string fileId1, string fileId2)
336 {
337 return Message(sourceLineNumbers, Ids.DuplicateModuleCaseInsensitiveFileIdentifier, "The merge module '{0}' contains 2 or more file identifiers that only differ by case: '{1}' and '{2}'. The WiX toolset extracts merge module files to the file system using these identifiers. Since most file systems are not case-sensitive a collision is likely. Please contact the owner of the merge module for a fix.", moduleId, fileId1, fileId2);
338 }
339
340 public static Message DuplicateModuleFileIdentifier(SourceLineNumber sourceLineNumbers, string moduleId, string fileId)
341 {
342 return Message(sourceLineNumbers, Ids.DuplicateModuleFileIdentifier, "The merge module '{0}' contains a file identifier, '{1}', that is duplicated either in another merge module or in a File/@Id attribute. File identifiers must be unique. Please change one of the file identifiers to a different value.", moduleId, fileId);
343 }
344
345 public static Message DuplicatePrimaryKey(SourceLineNumber sourceLineNumbers, string primaryKey, string tableName)
346 {
347 return Message(sourceLineNumbers, Ids.DuplicatePrimaryKey, "The primary key '{0}' is duplicated in table '{1}'. Please remove one of the entries or rename a part of the primary key to avoid the collision.", primaryKey, tableName);
348 }
349
350 public static Message DuplicateProviderDependencyKey(string providerKey, string packageId)
351 {
352 return Message(null, Ids.DuplicateProviderDependencyKey, "The provider dependency key '{0}' was already imported from the package with Id '{1}'. Please remove the Provides element with the key '{0}' from the package authoring.", providerKey, packageId);
353 }
354
355 public static Message DuplicateSourcesForOutput(string sourceList, string outputFile)
356 {
357 return Message(null, Ids.DuplicateSourcesForOutput, "Multiple source files ({0}) have resulted in the same output file '{1}'. This is likely because the source files only differ in extension or path. Rename the source files to avoid this problem.", sourceList, outputFile);
358 }
359
360 public static Message DuplicateSymbol(SourceLineNumber sourceLineNumbers, string symbolName)
361 {
362 return Message(sourceLineNumbers, Ids.DuplicateSymbol, "Duplicate symbol '{0}' found. This typically means that an Id is duplicated. Access modifiers (internal, protected, private) cannot prevent these conflicts. Ensure all your identifiers of a given type (File, Component, Feature) are unique.", symbolName);
363 }
364
365 public static Message DuplicateSymbol(SourceLineNumber sourceLineNumbers, string symbolName, string referencingSourceLineNumber)
366 {
367 return Message(sourceLineNumbers, Ids.DuplicateSymbol, "Duplicate symbol '{0}' referenced by {1}. This typically means that an Id is duplicated. Ensure all your identifiers of a given type (File, Component, Feature) are unique or use an access modifier to scope the identfier.", symbolName, referencingSourceLineNumber);
368 }
369
370 public static Message DuplicateSymbol2(SourceLineNumber sourceLineNumbers)
371 {
372 return Message(sourceLineNumbers, Ids.DuplicateSymbol2, "Location of symbol related to previous error.");
373 }
374
375 public static Message DuplicateTransform(string transform)
376 {
377 return Message(null, Ids.DuplicateTransform, "The transform {0} was included twice on the command line. Each transform can be applied to a patch only once.", transform);
378 }
379
380 public static Message DuplicateVariableDefinition(string variableName, string variableValue, string variableCollidingValue)
381 {
382 return Message(null, Ids.DuplicateVariableDefinition, "The variable '{0}' with value '{1}' was previously declared with value '{2}'.", variableName, variableValue, variableCollidingValue);
383 }
384
385 public static Message ExampleGuid(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
386 {
387 return Message(sourceLineNumbers, Ids.ExampleGuid, "The {0}/@{1} attribute's value, '{2}', is not a legal Guid value. A Guid needs to be generated and put in place of '{2}' in the source file.", elementName, attributeName, value);
388 }
389
390 public static Message ExpectedArgument(string argument)
391 {
392 return Message(null, Ids.ExpectedArgument, "{0} is expected to be followed by a value argument.", argument);
393 }
394
395 public static Message ExpectedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
396 {
397 return Message(sourceLineNumbers, Ids.ExpectedAttribute, "The {0}/@{1} attribute was not found; it is required.", elementName, attributeName);
398 }
399
400 public static Message ExpectedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attribute1Name, string attribute2Name, Boolean eitherOr)
401 {
402 return Message(sourceLineNumbers, Ids.ExpectedAttribute, "The {0} element must have a value for exactly one of the {1} or {2} attributes.", elementName, attribute1Name, attribute2Name, eitherOr);
403 }
404
405 public static Message ExpectedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName)
406 {
407 return Message(sourceLineNumbers, Ids.ExpectedAttribute, "The {0}/@{1} attribute was not found; it is required when attribute {2} is specified.", elementName, attributeName, otherAttributeName);
408 }
409
410 public static Message ExpectedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName, string otherAttributeValue)
411 {
412 return Message(sourceLineNumbers, Ids.ExpectedAttribute, "The {0}/@{1} attribute was not found; it is required when attribute {2} has a value of '{3}'.", elementName, attributeName, otherAttributeName, otherAttributeValue);
413 }
414
415 public static Message ExpectedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName, string otherAttributeValue, Boolean otherAttributeValueUnless)
416 {
417 return Message(sourceLineNumbers, Ids.ExpectedAttribute, "The {0}/@{1} attribute was not found; it is required unless the attribute {2} has a value of '{3}'.", elementName, attributeName, otherAttributeName, otherAttributeValue, otherAttributeValueUnless);
418 }
419
420 public static Message ExpectedAttributeInElementOrParent(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string parentElementName)
421 {
422 return Message(sourceLineNumbers, Ids.ExpectedAttributeInElementOrParent, "The {0}/@{1} attribute was not found or empty; it is required, or it can be specified in the parent {2} element.", elementName, attributeName, parentElementName);
423 }
424
425 public static Message ExpectedAttributeInElementOrParent(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string parentElementName, string parentAttributeName)
426 {
427 return Message(sourceLineNumbers, Ids.ExpectedAttributeInElementOrParent, "The {0}/@{1} attribute was not found or empty; it is required, or it can be specified in the parent {2}/@{3} attribute.", elementName, attributeName, parentElementName, parentAttributeName);
428 }
429
430 public static Message ExpectedAttributeOrElement(SourceLineNumber sourceLineNumbers, string parentElement, string attribute, string childElement)
431 {
432 return Message(sourceLineNumbers, Ids.ExpectedAttributeOrElement, "Element '{0}' missing attribute '{1}' or child element '{2}'. Exactly one of those is required.", parentElement, attribute, childElement);
433 }
434
435 public static Message ExpectedAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2)
436 {
437 return Message(sourceLineNumbers, Ids.ExpectedAttributes, "The {0} element's {1} or {2} attribute was not found; one of these is required.", elementName, attributeName1, attributeName2);
438 }
439
440 public static Message ExpectedAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string attributeName3)
441 {
442 return Message(sourceLineNumbers, Ids.ExpectedAttributes, "The {0} element's {1}, {2}, or {3} attribute was not found; one of these is required.", elementName, attributeName1, attributeName2, attributeName3);
443 }
444
445 public static Message ExpectedAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string attributeName3, string attributeName4)
446 {
447 return Message(sourceLineNumbers, Ids.ExpectedAttributes, "The {0} element's {1}, {2}, {3}, or {4} attribute was not found; one of these is required.", elementName, attributeName1, attributeName2, attributeName3, attributeName4);
448 }
449
450 public static Message ExpectedAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string attributeName3, string attributeName4, string attributeName5)
451 {
452 return Message(sourceLineNumbers, Ids.ExpectedAttributes, "The {0} element's {1}, {2}, {3}, {4}, or {5} attribute was not found; one of these is required.", elementName, attributeName1, attributeName2, attributeName3, attributeName4, attributeName5);
453 }
454
455 public static Message ExpectedAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string attributeName3, string attributeName4, string attributeName5, string attributeName6)
456 {
457 return Message(sourceLineNumbers, Ids.ExpectedAttributes, "The {0} element's {1}, {2}, {3}, {4}, {5}, or {6} attribute was not found; one of these is required.", elementName, attributeName1, attributeName2, attributeName3, attributeName4, attributeName5, attributeName6);
458 }
459
460 public static Message ExpectedAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string attributeName3, string attributeName4, string attributeName5, string attributeName6, string attributeName7)
461 {
462 return Message(sourceLineNumbers, Ids.ExpectedAttributes, "The {0} element's {1}, {2}, {3}, {4}, {5}, {6}, or {7} attribute was not found; one of these is required.", elementName, attributeName1, attributeName2, attributeName3, attributeName4, attributeName5, attributeName6, attributeName7);
463 }
464
465 public static Message ExpectedAttributesWithOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2)
466 {
467 return Message(sourceLineNumbers, Ids.ExpectedAttributesWithOtherAttribute, "The {0} element's {1} or {2} attribute was not found; at least one of these attributes must be specified.", elementName, attributeName1, attributeName2);
468 }
469
470 public static Message ExpectedAttributesWithOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string otherAttributeName)
471 {
472 return Message(sourceLineNumbers, Ids.ExpectedAttributesWithOtherAttribute, "The {0} element's {1} or {2} attribute was not found; one of these is required when attribute {3} is present.", elementName, attributeName1, attributeName2, otherAttributeName);
473 }
474
475 public static Message ExpectedAttributesWithOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string otherAttributeName, string otherAttributeValue)
476 {
477 return Message(sourceLineNumbers, Ids.ExpectedAttributesWithOtherAttribute, "The {0} element's {1} or {2} attribute was not found; one of these is required when attribute {3} has a value of '{4}'.", elementName, attributeName1, attributeName2, otherAttributeName, otherAttributeValue);
478 }
479
480 public static Message ExpectedAttributesWithoutOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string otherAttributeName)
481 {
482 return Message(sourceLineNumbers, Ids.ExpectedAttributesWithoutOtherAttribute, "The {0} element's {1} or {2} attribute was not found; one of these is required without attribute {3} present.", elementName, attributeName1, attributeName2, otherAttributeName);
483 }
484
485 public static Message ExpectedAttributeWhenElementNotUnderElement(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string parentElementName)
486 {
487 return Message(sourceLineNumbers, Ids.ExpectedAttributeWhenElementNotUnderElement, "The '{0}/@{1}' attribute was not found; it is required when element '{0}' is not nested under a '{2}' element.", elementName, attributeName, parentElementName);
488 }
489
490 public static Message ExpectedAttributeWithElement(SourceLineNumber sourceLineNumbers, string elementName, string attribute, string childElementName)
491 {
492 return Message(sourceLineNumbers, Ids.ExpectedAttributeWithElement, "The {0} element must have attribute '{1}' when child element '{2}' is present.", elementName, attribute, childElementName);
493 }
494
495 public static Message ExpectedBinaryCategory(SourceLineNumber sourceLineNumbers)
496 {
497 return Message(sourceLineNumbers, Ids.ExpectedBinaryCategory, "The Column element specifies a binary column but does not have the correct Category specified. Windows Installer requires binary columns to specify their category as binary. Please set the Category attribute's value to 'Binary'.");
498 }
499
500 public static Message ExpectedClientPatchIdInWixMsp()
501 {
502 return Message(null, Ids.ExpectedClientPatchIdInWixMsp, "The WixMsp is missing the client patch ID. Recompile the patch source files with the latest WiX toolset.");
503 }
504
505 public static Message ExpectedDecompiler(string identifier)
506 {
507 return Message(null, Ids.ExpectedDecompiler, "No decompiler was provided. {0} requires a decompiler.", identifier);
508 }
509
510 public static Message ExpectedDirectory(string directory)
511 {
512 return Message(null, Ids.ExpectedDirectory, "The directory '{0}' could not be found.", directory);
513 }
514
515 public static Message ExpectedDirectoryGotFile(string option, string path)
516 {
517 return Message(null, Ids.ExpectedDirectoryGotFile, "The {0} option requires a directory, but the provided path is a file: {1}", option, path);
518 }
519
520 public static Message ExpectedElement(SourceLineNumber sourceLineNumbers, string elementName, string childName)
521 {
522 return Message(sourceLineNumbers, Ids.ExpectedElement, "A {0} element must have at least one child element of type {1}.", elementName, childName);
523 }
524
525 public static Message ExpectedElement(SourceLineNumber sourceLineNumbers, string elementName, string childName1, string childName2)
526 {
527 return Message(sourceLineNumbers, Ids.ExpectedElement, "A {0} element must have at least one child element of type {1} or {2}.", elementName, childName1, childName2);
528 }
529
530 public static Message ExpectedElement(SourceLineNumber sourceLineNumbers, string elementName, string childName1, string childName2, string childName3)
531 {
532 return Message(sourceLineNumbers, Ids.ExpectedElement, "A {0} element must have at least one child element of type {1}, {2}, or {3}.", elementName, childName1, childName2, childName3);
533 }
534
535 public static Message ExpectedElement(SourceLineNumber sourceLineNumbers, string elementName, string childName1, string childName2, string childName3, string childName4)
536 {
537 return Message(sourceLineNumbers, Ids.ExpectedElement, "A {0} element must have at least one child element of type {1}, {2}, {3}, or {4}.", elementName, childName1, childName2, childName3, childName4);
538 }
539
540 public static Message ExpectedEndElement(SourceLineNumber sourceLineNumbers, string elementName)
541 {
542 return Message(sourceLineNumbers, Ids.ExpectedEndElement, "The end element matching the '{0}' start element was not found.", elementName);
543 }
544
545 public static Message ExpectedEndforeach(SourceLineNumber sourceLineNumbers)
546 {
547 return Message(sourceLineNumbers, Ids.ExpectedEndforeach, "A <?foreach?> statement was found that had no matching <?endforeach?>.");
548 }
549
550 public static Message ExpectedExpressionAfterNot(SourceLineNumber sourceLineNumbers, string expression)
551 {
552 return Message(sourceLineNumbers, Ids.ExpectedExpressionAfterNot, "Expecting an argument for 'NOT' in expression '{0}'.", expression);
553 }
554
555 public static Message ExpectedFileGotDirectory(string option, string path)
556 {
557 return Message(null, Ids.ExpectedFileGotDirectory, "The {0} option requires a file, but the provided path is a directory: {1}", option, path);
558 }
559
560 public static Message ExpectedMediaCabinet(SourceLineNumber sourceLineNumbers, string fileId, int diskId)
561 {
562 return Message(sourceLineNumbers, Ids.ExpectedMediaCabinet, "The file '{0}' should be compressed but is not part of a compressed media. Files will be compressed if either the File/@Compressed or Package/@Compressed attributes are set to 'yes'. This can be fixed by setting the Media/@Cabinet attribute for media '{1}'.", fileId, diskId);
563 }
564
565 public static Message ExpectedMediaRowsInWixMsp()
566 {
567 return Message(null, Ids.ExpectedMediaRowsInWixMsp, "The WixMsp has no media rows defined.");
568 }
569
570 public static Message ExpectedParentWithAttribute(SourceLineNumber sourceLineNumbers, string parentElement, string attribute, string grandparentElement)
571 {
572 return Message(sourceLineNumbers, Ids.ExpectedParentWithAttribute, "When the {0}/@{1} attribute is specified, the {0} element must be nested under a {2} element.", parentElement, attribute, grandparentElement);
573 }
574
575 public static Message ExpectedPatchIdInWixMsp()
576 {
577 return Message(null, Ids.ExpectedPatchIdInWixMsp, "The WixMsp is missing the patch ID.");
578 }
579
580 public static Message ExpectedRowInPatchCreationPackage(string tableName)
581 {
582 return Message(null, Ids.ExpectedRowInPatchCreationPackage, "Could not find a row in the '{0}' table for this patch creation package. Patch creation packages must contain at least one row in the '{0}' table.", tableName);
583 }
584
585 public static Message ExpectedSignedCabinetName(SourceLineNumber sourceLineNumbers)
586 {
587 return Message(sourceLineNumbers, Ids.ExpectedSignedCabinetName, "The Media/@Cabinet attribute was not found; it is required when this element contains a DigitalSignature child element. This is because Windows Installer can only verify the digital signatures of external cabinets. Please either remove the DigitalSignature element or specify a valid external cabinet name via the Cabinet attribute.");
588 }
589
590 public static Message ExpectedTableInMergeModule(string identifier)
591 {
592 return Message(null, Ids.ExpectedTableInMergeModule, "The table '{0}' was expected but was missing.", identifier);
593 }
594
595 public static Message ExpectedVariable(SourceLineNumber sourceLineNumbers, string expression)
596 {
597 return Message(sourceLineNumbers, Ids.ExpectedVariable, "A required variable was missing in the expression '{0}'.", expression);
598 }
599
600 public static Message ExpectedWixVariableValue(string variableId)
601 {
602 return Message(null, Ids.ExpectedWixVariableValue, "The WiX variable '{0}' was declared without a value. Please specify a value for the variable.", variableId);
603 }
604
605 public static Message FamilyNameTooLong(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, int length)
606 {
607 return Message(sourceLineNumbers, Ids.FamilyNameTooLong, "The {0}/@{1} attribute's value, '{2}', is {3} characters long. This is too long for a family name because the maximum allowed length is 8 characters long.", elementName, attributeName, value, length);
608 }
609
610 public static Message FeatureCannotFavorAndDisallowAdvertise(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string otherAttributeName, string otherValue)
611 {
612 return Message(sourceLineNumbers, Ids.FeatureCannotFavorAndDisallowAdvertise, "The {0}/@{1} attribute's value, '{2}', cannot coexist with the {3} attribute's value of '{4}'. These options would ask the installer to disallow the advertised state for this feature while at the same time favoring it.", elementName, attributeName, value, otherAttributeName, otherValue);
613 }
614
615 public static Message FeatureCannotFollowParentAndFavorLocalOrSource(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName, string otherValue)
616 {
617 return Message(sourceLineNumbers, Ids.FeatureCannotFollowParentAndFavorLocalOrSource, "The {0}/@{1} attribute cannot be specified if the {2} attribute's value is '{3}'. These options would ask the installer to force this feature to follow the parent installation state and simultaneously favor a particular installation state just for this feature.", elementName, attributeName, otherAttributeName, otherValue);
618 }
619
620 public static Message FeatureConfigurableDirectoryNotUppercase(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
621 {
622 return Message(sourceLineNumbers, Ids.FeatureConfigurableDirectoryNotUppercase, "The {0}/@{1} attribute's value, '{2}', contains lowercase characters. Since this directory is user-configurable, it needs to be a public property. This means the value must be completely uppercase.", elementName, attributeName, value);
623 }
624
625 public static Message FeatureNameTooLong(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue)
626 {
627 return Message(sourceLineNumbers, Ids.FeatureNameTooLong, "The {0}/@{1} attribute with value '{2}', is too long for a feature name. Due to limitations in the Windows Installer, feature names cannot be longer than 38 characters in length.", elementName, attributeName, attributeValue);
628 }
629
630 public static Message FileIdentifierNotFound(SourceLineNumber sourceLineNumbers, string fileIdentifier)
631 {
632 return Message(sourceLineNumbers, Ids.FileIdentifierNotFound, "The file row with identifier '{0}' could not be found.", fileIdentifier);
633 }
634
635 public static Message FileInUse(SourceLineNumber sourceLineNumbers, string file)
636 {
637 return Message(sourceLineNumbers, Ids.FileInUse, "The process can not access the file '{0}' because it is being used by another process.", file);
638 }
639
640 public static Message FileNotFound(SourceLineNumber sourceLineNumbers, string file)
641 {
642 return Message(sourceLineNumbers, Ids.FileNotFound, "The system cannot find the file '{0}'.", file);
643 }
644
645 public static Message FileNotFound(SourceLineNumber sourceLineNumbers, string file, string fileType)
646 {
647 return Message(sourceLineNumbers, Ids.FileNotFound, "The system cannot find the file '{0}' with type '{1}'.", file, fileType);
648 }
649
650 public static Message FileOrDirectoryPathRequired(string parameter)
651 {
652 return Message(null, Ids.FileOrDirectoryPathRequired, "The parameter '{0}' must be followed by a file or directory path. To specify a directory path the string must end with a backslash, for example: \"C:\\Path\\\".", parameter);
653 }
654
655 public static Message FilePathRequired(string parameter)
656 {
657 return Message(null, Ids.FilePathRequired, "The parameter '{0}' must be followed by a file path.", parameter);
658 }
659
660 public static Message FileTooLarge(SourceLineNumber sourceLineNumbers, string fileName)
661 {
662 return Message(sourceLineNumbers, Ids.FileTooLarge, "'{0}' is too large, file size must be less than 2147483648.", fileName);
663 }
664
665 public static Message FileWriteError(string path, string error)
666 {
667 return Message(null, Ids.FileWriteError, "Error writing to the path: '{0}'. Error message: '{1}'", path, error);
668 }
669
670 public static Message FinishCabFailed()
671 {
672 return Message(null, Ids.FinishCabFailed, "An error (E_FAIL) was returned while finalizing a CAB file. This most commonly happens when creating a CAB file with more than 65535 files in it. Either reduce the number of files in your installation package or split your installation package's files into more than one CAB file using the Media element.");
673 }
674
675 public static Message FullTempDirectory(string prefix, string directory)
676 {
677 return Message(null, Ids.FullTempDirectory, "Unable to create temporary file. A common cause is that too many files that have names beginning with '{0}' are present. Delete any unneeded files in the '{1}' directory and try again.", prefix, directory);
678 }
679
680 public static Message GACAssemblyIdentityWarning(SourceLineNumber sourceLineNumbers, string fileName, string assemblyName)
681 {
682 return Message(sourceLineNumbers, Ids.GACAssemblyIdentityWarning, "The destination name of file '{0}' does not match its assembly name '{1}' in your authoring. This will cause an installation failure for this assembly, because it will be installed to the Global Assembly Cache. To fix this error, update File/@Name of file '{0}' to be the actual name of the assembly.", fileName, assemblyName);
683 }
684
685 public static Message GacAssemblyNoStrongName(SourceLineNumber sourceLineNumbers, string assemblyName, string componentName)
686 {
687 return Message(sourceLineNumbers, Ids.GacAssemblyNoStrongName, "Assembly {0} in component {1} has no strong name and has been marked to be placed in the GAC. All assemblies installed to the GAC must have a valid strong name.", assemblyName, componentName);
688 }
689
690 public static Message GenericReadNotAllowed(SourceLineNumber sourceLineNumbers)
691 {
692 return Message(sourceLineNumbers, Ids.GenericReadNotAllowed, "Permission elements cannot have GenericRead as the only permission specified. Include at least one other permission.");
693 }
694
695 public static Message GuidContainsLowercaseLetters(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
696 {
697 return Message(sourceLineNumbers, Ids.GuidContainsLowercaseLetters, "The {0}/@{1} attribute's value, '{2}', is a mixed-case guid. All letters in a guid value should be uppercase.", elementName, attributeName, value);
698 }
699
700 public static Message HarvestSourceNotSpecified()
701 {
702 return Message(null, Ids.HarvestSourceNotSpecified, "A harvest source must be specified after the harvest type and can be followed by harvester arguments.");
703 }
704
705 public static Message HarvestTypeNotFound()
706 {
707 return Message(null, Ids.HarvestTypeNotFound, "The harvest type was not found in the list of loaded Heat extensions.");
708 }
709
710 public static Message HarvestTypeNotFound(string harvestType)
711 {
712 return Message(null, Ids.HarvestTypeNotFound, "The harvest type '{0}' was specified. Harvest types cannot start with a '-'. Remove the '-' to specify a valid harvest type.", harvestType);
713 }
714
715 public static Message IdentifierNotFound(string type, string identifier)
716 {
717 return Message(null, Ids.IdentifierNotFound, "An expected identifier ('{1}', of type '{0}') was not found.", type, identifier);
718 }
719
720 public static Message IdentifierTooLongError(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, int maxLength)
721 {
722 return Message(sourceLineNumbers, Ids.IdentifierTooLongError, "The {0}/@{1} attribute's value, '{2}', is too long. {0}/@{1} attribute's must be {3} characters long or less.", elementName, attributeName, value, maxLength);
723 }
724
725 public static Message IllegalAttributeExceptOnElement(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string expectedElementName)
726 {
727 return Message(sourceLineNumbers, Ids.IllegalAttributeExceptOnElement, "The {1} attribute can only be specified on the {2} element.", elementName, attributeName, expectedElementName);
728 }
729
730 public static Message IllegalAttributeInMergeModule(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
731 {
732 return Message(sourceLineNumbers, Ids.IllegalAttributeInMergeModule, "The {0}/@{1} attribute cannot be specified in a merge module.", elementName, attributeName);
733 }
734
735 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1)
736 {
737 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}'.", elementName, attributeName, value, legalValue1);
738 }
739
740 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2)
741 {
742 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', or '{4}'.", elementName, attributeName, value, legalValue1, legalValue2);
743 }
744
745 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2, string legalValue3)
746 {
747 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', or '{5}'.", elementName, attributeName, value, legalValue1, legalValue2, legalValue3);
748 }
749
750 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2, string legalValue3, string legalValue4)
751 {
752 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', or '{6}'.", elementName, attributeName, value, legalValue1, legalValue2, legalValue3, legalValue4);
753 }
754
755 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2, string legalValue3, string legalValue4, string legalValue5)
756 {
757 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', or '{7}'.", elementName, attributeName, value, legalValue1, legalValue2, legalValue3, legalValue4, legalValue5);
758 }
759
760 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2, string legalValue3, string legalValue4, string legalValue5, string legalValue6)
761 {
762 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', or '{8}'.", elementName, attributeName, value, legalValue1, legalValue2, legalValue3, legalValue4, legalValue5, legalValue6);
763 }
764
765 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2, string legalValue3, string legalValue4, string legalValue5, string legalValue6, string legalValue7)
766 {
767 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', '{8}', or '{9}'.", elementName, attributeName, value, legalValue1, legalValue2, legalValue3, legalValue4, legalValue5, legalValue6, legalValue7);
768 }
769
770 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2, string legalValue3, string legalValue4, string legalValue5, string legalValue6, string legalValue7, string legalValue8)
771 {
772 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', '{8}', '{9}', or '{10}'.", elementName, attributeName, value, legalValue1, legalValue2, legalValue3, legalValue4, legalValue5, legalValue6, legalValue7, legalValue8);
773 }
774
775 public static Message IllegalAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValue1, string legalValue2, string legalValue3, string legalValue4, string legalValue5, string legalValue6, string legalValue7, string legalValue8, string legalValue9, string legalValue10, string legalValue11, string legalValue12, string legalValue13, string legalValue14, string legalValue15, string legalValue16, string legalValue17, string legalValue18, string legalValue19, string legalValue20, string legalValue21, string legalValue22, string legalValue23, string legalValue24, string legalValue25, string legalValue26)
776 {
777 return Message(sourceLineNumbers, Ids.IllegalAttributeValue, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: '{3}', '{4}', '{5}', '{6}', '{7}', '{8}', '{9}', '{10}', '{11}', '{12}', '{13}', '{14}', '{15}', '{16}', '{17}', '{18}', '{19}', '{20}', '{21}', '{22}', '{23}', '{24}', '{25}', '{26}', '{27}', or '{28}'.", elementName, attributeName, value, legalValue1, legalValue2, legalValue3, legalValue4, legalValue5, legalValue6, legalValue7, legalValue8, legalValue9, legalValue10, legalValue11, legalValue12, legalValue13, legalValue14, legalValue15, legalValue16, legalValue17, legalValue18, legalValue19, legalValue20, legalValue21, legalValue22, legalValue23, legalValue24, legalValue25, legalValue26);
778 }
779
780 public static Message IllegalAttributeValueWhenNested(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attrivuteValue, string parentElementName)
781 {
782 return Message(sourceLineNumbers, Ids.IllegalAttributeValueWhenNested, "The {0}/@{1} attribute value, '{2}', cannot be specified when the {0} element is nested underneath a {3} element.", elementName, attributeName, attrivuteValue, parentElementName);
783 }
784
785 public static Message IllegalAttributeValueWithIllegalList(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string illegalValueList)
786 {
787 return Message(sourceLineNumbers, Ids.IllegalAttributeValueWithIllegalList, "The {0}/@{1} attribute's value, '{2}', is one of the illegal options: {3}.", elementName, attributeName, value, illegalValueList);
788 }
789
790 public static Message IllegalAttributeValueWithLegalList(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string legalValueList)
791 {
792 return Message(sourceLineNumbers, Ids.IllegalAttributeValueWithLegalList, "The {0}/@{1} attribute's value, '{2}', is not one of the legal options: {3}.", elementName, attributeName, value, legalValueList);
793 }
794
795 public static Message IllegalAttributeValueWithOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue, string otherAttributeName)
796 {
797 return Message(sourceLineNumbers, Ids.IllegalAttributeValueWithOtherAttribute, "The {0}/@{1} attribute's value, '{2}', cannot be specified with attribute {3} present.", elementName, attributeName, attributeValue, otherAttributeName);
798 }
799
800 public static Message IllegalAttributeValueWithOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue, string otherAttributeName, string otherAttributeValue)
801 {
802 return Message(sourceLineNumbers, Ids.IllegalAttributeValueWithOtherAttribute, "The {0}/@{1} attribute's value, '{2}', cannot be specified with attribute {3} present with value '{4}'.", elementName, attributeName, attributeValue, otherAttributeName, otherAttributeValue);
803 }
804
805 public static Message IllegalAttributeValueWithoutOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue, string otherAttributeName, string otherAttributeValue)
806 {
807 return Message(sourceLineNumbers, Ids.IllegalAttributeValueWithoutOtherAttribute, "The {0}/@{1} attribute's value, '{2}', can only be specified with attribute {3} present with value '{4}'.", elementName, attributeName, attributeValue, otherAttributeName, otherAttributeValue);
808 }
809
810 public static Message IllegalAttributeValueWithoutOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue, string otherAttributeName)
811 {
812 return Message(sourceLineNumbers, Ids.IllegalAttributeValueWithoutOtherAttribute, "The {0}/@{1} attribute's value, '{2}', cannot be specified without attribute {3} present.", elementName, attributeName, attributeValue, otherAttributeName);
813 }
814
815 public static Message IllegalAttributeWhenAdvertised(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
816 {
817 return Message(sourceLineNumbers, Ids.IllegalAttributeWhenAdvertised, "The {0}/@{1} attribute cannot be specified because the element is advertised.", elementName, attributeName);
818 }
819
820 public static Message IllegalAttributeWhenNested(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string parentElement)
821 {
822 return Message(sourceLineNumbers, Ids.IllegalAttributeWhenNested, "The {0}/@{1} attribute cannot be specified when the {0} element is nested underneath a {2} element. If this {0} is a member of a ComponentGroup where ComponentGroup/@{1} is set, then the {0}/@{1} attribute should be removed.", elementName, attributeName, parentElement);
823 }
824
825 public static Message IllegalAttributeWithInnerText(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
826 {
827 return Message(sourceLineNumbers, Ids.IllegalAttributeWithInnerText, "The {0}/@{1} attribute cannot be specified when the element has body text as well. Specify either the attribute or the body, but not both.", elementName, attributeName);
828 }
829
830 public static Message IllegalAttributeWithOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName)
831 {
832 return Message(sourceLineNumbers, Ids.IllegalAttributeWithOtherAttribute, "The {0}/@{1} attribute cannot be specified when attribute {2} is present.", elementName, attributeName, otherAttributeName);
833 }
834
835 public static Message IllegalAttributeWithOtherAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName, string otherAttributeValue)
836 {
837 return Message(sourceLineNumbers, Ids.IllegalAttributeWithOtherAttribute, "The {0}/@{1} attribute cannot be specified when attribute {2} is present with value '{3}'.", elementName, attributeName, otherAttributeName, otherAttributeValue);
838 }
839
840 public static Message IllegalAttributeWithOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName1, string otherAttributeName2)
841 {
842 return Message(sourceLineNumbers, Ids.IllegalAttributeWithOtherAttributes, "The {0}/@{1} attribute cannot be specified when attribute {2} or {3} is also present.", elementName, attributeName, otherAttributeName1, otherAttributeName2);
843 }
844
845 public static Message IllegalAttributeWithOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName1, string otherAttributeName2, string otherAttributeName3)
846 {
847 return Message(sourceLineNumbers, Ids.IllegalAttributeWithOtherAttributes, "The {0}/@{1} attribute cannot be specified when attribute {2}, {3}, or {4} is also present.", elementName, attributeName, otherAttributeName1, otherAttributeName2, otherAttributeName3);
848 }
849
850 public static Message IllegalAttributeWithOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName1, string otherAttributeName2, string otherAttributeName3, string otherAttributeName4)
851 {
852 return Message(sourceLineNumbers, Ids.IllegalAttributeWithOtherAttributes, "The {0}/@{1} attribute cannot be specified when attribute {2}, {3}, {4}, or {5} is also present.", elementName, attributeName, otherAttributeName1, otherAttributeName2, otherAttributeName3, otherAttributeName4);
853 }
854
855 public static Message IllegalAttributeWithoutOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName)
856 {
857 return Message(sourceLineNumbers, Ids.IllegalAttributeWithoutOtherAttributes, "The {0}/@{1} attribute can only be specified with the following attribute {2} present.", elementName, attributeName, otherAttributeName);
858 }
859
860 public static Message IllegalAttributeWithoutOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName1, string otherAttributeName2)
861 {
862 return Message(sourceLineNumbers, Ids.IllegalAttributeWithoutOtherAttributes, "The {0}/@{1} attribute can only be specified with one of the following attributes: {2} or {3} present.", elementName, attributeName, otherAttributeName1, otherAttributeName2);
863 }
864
865 public static Message IllegalAttributeWithoutOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName1, string otherAttributeName2, string otherAttributeValue, Boolean uniquifier)
866 {
867 return Message(sourceLineNumbers, Ids.IllegalAttributeWithoutOtherAttributes, "The {0}/@{1} attribute can only be specified with one of the following attributes: {2} or {3} present with value '{4}'.", elementName, attributeName, otherAttributeName1, otherAttributeName2, otherAttributeValue, uniquifier);
868 }
869
870 public static Message IllegalAttributeWithoutOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName1, string otherAttributeName2, string otherAttributeName3)
871 {
872 return Message(sourceLineNumbers, Ids.IllegalAttributeWithoutOtherAttributes, "The {0}/@{1} attribute can only be specified with one of the following attributes: {2}, {3}, or {4} present.", elementName, attributeName, otherAttributeName1, otherAttributeName2, otherAttributeName3);
873 }
874
875 public static Message IllegalAttributeWithoutOtherAttributes(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string otherAttributeName1, string otherAttributeName2, string otherAttributeName3, string otherAttributeName4)
876 {
877 return Message(sourceLineNumbers, Ids.IllegalAttributeWithoutOtherAttributes, "The {0}/@{1} attribute can only be specified with one of the following attributes: {2}, {3}, {4}, or {5} present.", elementName, attributeName, otherAttributeName1, otherAttributeName2, otherAttributeName3, otherAttributeName4);
878 }
879
880 public static Message IllegalBinderClassName()
881 {
882 return Message(null, Ids.IllegalBinderClassName, "Illegal binder class name specified for -binder command line option.");
883 }
884
885 public static Message IllegalCabbingThreadCount(string numThreads)
886 {
887 return Message(null, Ids.IllegalCabbingThreadCount, "Illegal number of threads to create cabinets: '{0}' for -ct <N> command line option. Specify the number of threads to use like -ct 2.", numThreads);
888 }
889
890 public static Message IllegalCharactersInPath(string pathName)
891 {
892 return Message(null, Ids.IllegalCharactersInPath, "Illegal characters in path '{0}'. Ensure you provided a valid path to the file.", pathName);
893 }
894
895 public static Message IllegalCodepage(int codepage)
896 {
897 return Message(null, Ids.IllegalCodepage, "The code page '{0}' is not a valid Windows code page. Update the database's code page by modifying one of the following attributes: Product/@Codepage, Module/@Codepage, Patch/@Codepage, PatchCreation/@Codepage, or WixLocalization/@Codepage.", codepage);
898 }
899
900 public static Message IllegalCodepageAttribute(SourceLineNumber sourceLineNumbers, string codepage, string elementName, string attributeName)
901 {
902 return Message(sourceLineNumbers, Ids.IllegalCodepageAttribute, "The code page '{0}' is not a valid Windows code page. Please check the {1}/@{2} attribute value in your source file.", codepage, elementName, attributeName);
903 }
904
905 public static Message IllegalColumnName(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
906 {
907 return Message(sourceLineNumbers, Ids.IllegalColumnName, "The {0}/@{1} attribute's value, '{2}', is not a legal column name. It will collide with the sentinel values used in the _TransformView table.", elementName, attributeName, value);
908 }
909
910 public static Message IllegalCommandlineArgumentCombination(string arg1, string arg2)
911 {
912 return Message(null, Ids.IllegalCommandlineArgumentCombination, "'-{0}' cannot be specfied in combination with '-{1}'.", arg1, arg2);
913 }
914
915 public static Message IllegalComponentWithAutoGeneratedGuid(SourceLineNumber sourceLineNumbers)
916 {
917 return Message(sourceLineNumbers, Ids.IllegalComponentWithAutoGeneratedGuid, "The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components using a Directory as a KeyPath or containing ODBCDataSource child elements cannot use an automatically generated guid. Make sure your component doesn't have a Directory as the KeyPath and move any ODBCDataSource child elements to components with explicit component guids.");
918 }
919
920 public static Message IllegalComponentWithAutoGeneratedGuid(SourceLineNumber sourceLineNumbers, Boolean registryKeyPath)
921 {
922 return Message(sourceLineNumbers, Ids.IllegalComponentWithAutoGeneratedGuid, "The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with registry keypaths and files cannot use an automatically generated guid. Create multiple components, each with one file and/or one registry value keypath, to use automatically generated guids.", registryKeyPath);
923 }
924
925 public static Message IllegalCompressionLevel(string compressionLevel)
926 {
927 return Message(null, Ids.IllegalCompressionLevel, "The compression level '{0}' is not valid. Valid values are 'none', 'low', 'medium', 'high', and 'mszip'.", compressionLevel);
928 }
929
930 public static Message IllegalDefineStatement(SourceLineNumber sourceLineNumbers, string defineStatement)
931 {
932 return Message(sourceLineNumbers, Ids.IllegalDefineStatement, "The define statement '<?define {0}?>' is not well-formed. Define statements should be in the form <?define variableName = \"variable value\"?>.", defineStatement);
933 }
934
935 public static Message IllegalEmptyAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
936 {
937 return Message(sourceLineNumbers, Ids.IllegalEmptyAttributeValue, "The {0}/@{1} attribute's value cannot be an empty string. If a value is not required, simply remove the entire attribute.", elementName, attributeName);
938 }
939
940 public static Message IllegalEmptyAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string defaultValue)
941 {
942 return Message(sourceLineNumbers, Ids.IllegalEmptyAttributeValue, "The {0}/@{1} attribute's value cannot be an empty string. To use the default value \"{2}\", simply remove the entire attribute.", elementName, attributeName, defaultValue);
943 }
944
945 public static Message IllegalEnvironmentVariable(string environmentVariable, string value)
946 {
947 return Message(null, Ids.IllegalEnvironmentVariable, "The {0} environment variable is set to an invalid value of '{1}'.", environmentVariable, value);
948 }
949
950 public static Message IllegalFamilyName(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
951 {
952 return Message(sourceLineNumbers, Ids.IllegalFamilyName, "The {0}/@{1} attribute's value, '{2}', contains illegal characters for a family name. Legal values include letters, numbers, and underscores.", elementName, attributeName, value);
953 }
954
955 public static Message IllegalFileCompressionAttributes(SourceLineNumber sourceLineNumbers)
956 {
957 return Message(sourceLineNumbers, Ids.IllegalFileCompressionAttributes, "Cannot have both the MsidbFileAttributesCompressed and MsidbFileAttributesNoncompressed options set in a file attributes column.");
958 }
959
960 public static Message IllegalForeach(SourceLineNumber sourceLineNumbers, string foreachStatement)
961 {
962 return Message(sourceLineNumbers, Ids.IllegalForeach, "The foreach statement '{0}' is illegal. The proper format for foreach is <?foreach varName in valueList?>.", foreachStatement);
963 }
964
965 public static Message IllegalGeneratedGuidComponentUnversionedKeypath(SourceLineNumber sourceLineNumbers)
966 {
967 return Message(sourceLineNumbers, Ids.IllegalGeneratedGuidComponentUnversionedKeypath, "The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with more than one file cannot use an automatically generated guid unless a versioned file is the keypath and the other files are unversioned. This component's keypath is not versioned. Create multiple components to use automatically generated guids.");
968 }
969
970 public static Message IllegalGeneratedGuidComponentVersionedNonkeypath(SourceLineNumber sourceLineNumbers)
971 {
972 return Message(sourceLineNumbers, Ids.IllegalGeneratedGuidComponentVersionedNonkeypath, "The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with more than one file cannot use an automatically generated guid unless a versioned file is the keypath and the other files are unversioned. This component has a non-keypath file that is versioned. Create multiple components to use automatically generated guids.");
973 }
974
975 public static Message IllegalGuidValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
976 {
977 return Message(sourceLineNumbers, Ids.IllegalGuidValue, "The {0}/@{1} attribute's value, '{2}', is not a legal guid value.", elementName, attributeName, value);
978 }
979
980 public static Message IllegalIdentifier(SourceLineNumber sourceLineNumbers, string elementName, string value)
981 {
982 return Message(sourceLineNumbers, Ids.IllegalIdentifier, "The {0} element's value, '{1}', is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.", elementName, value);
983 }
984
985 public static Message IllegalIdentifier(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, int disambiguator)
986 {
987 return Message(sourceLineNumbers, Ids.IllegalIdentifier, "The {0}/@{1} attribute's value is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.", elementName, attributeName, disambiguator);
988 }
989
990 public static Message IllegalIdentifier(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
991 {
992 return Message(sourceLineNumbers, Ids.IllegalIdentifier, "The {0}/@{1} attribute's value, '{2}', is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.", elementName, attributeName, value);
993 }
994
995 public static Message IllegalIdentifier(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string identifier)
996 {
997 return Message(sourceLineNumbers, Ids.IllegalIdentifier, "The {0}/@{1} attribute's value '{2}' contains an illegal identifier '{3}'. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore.", elementName, attributeName, value, identifier);
998 }
999
1000 public static Message IllegalIdentifierLooksLikeFormatted(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1001 {
1002 return Message(sourceLineNumbers, Ids.IllegalIdentifierLooksLikeFormatted, "The {0}/@{1} attribute's value, '{2}', is not a legal identifier. The {0}/@{1} attribute does not support formatted string values, such as property names enclosed in brackets ([LIKETHIS]). The value must be the identifier of another element, such as the Directory/@Id attribute value.", elementName, attributeName, value);
1003 }
1004
1005 public static Message IllegalInlineLocVariable(SourceLineNumber sourceLineNumbers, string variableName, string variableValue)
1006 {
1007 return Message(sourceLineNumbers, Ids.IllegalInlineLocVariable, "The localization variable '{0}' specifies an illegal inline default value of '{1}'. Localization variables cannot specify default values inline, instead the value should be specified in a WiX localization (.wxl) file.", variableName, variableValue);
1008 }
1009
1010 public static Message IllegalIntegerInExpression(SourceLineNumber sourceLineNumbers, string expression)
1011 {
1012 return Message(sourceLineNumbers, Ids.IllegalIntegerInExpression, "An illegal number was found in the expression '{0}'.", expression);
1013 }
1014
1015 public static Message IllegalIntegerValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1016 {
1017 return Message(sourceLineNumbers, Ids.IllegalIntegerValue, "The {0}/@{1} attribute's value, '{2}', is not a legal integer value. Legal integer values are from -2,147,483,648 to 2,147,483,647.", elementName, attributeName, value);
1018 }
1019
1020 public static Message IllegalLongFilename(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1021 {
1022 return Message(sourceLineNumbers, Ids.IllegalLongFilename, "The {0}/@{1} attribute's value, '{2}', is not a valid filename because it contains illegal characters. Legal filenames contain no more than 260 characters and must contain at least one non-period character. Any character except for the follow may be used: \\ ? | > < : / * \".", elementName, attributeName, value);
1023 }
1024
1025 public static Message IllegalLongFilename(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string filename)
1026 {
1027 return Message(sourceLineNumbers, Ids.IllegalLongFilename, "The {0}/@{1} attribute's value '{2}' contains a invalid filename '{3}'. Legal filenames contain no more than 260 characters and must contain at least one non-period character. Any character except for the follow may be used: \\ ? | > < : / * \".", elementName, attributeName, value, filename);
1028 }
1029
1030 public static Message IllegalLongValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1031 {
1032 return Message(sourceLineNumbers, Ids.IllegalLongValue, "The {0}/@{1} attribute's value, '{2}', is not a legal long value. Legal long values are from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.", elementName, attributeName, value);
1033 }
1034
1035 public static Message IllegalModuleExclusionLanguageAttributes(SourceLineNumber sourceLineNumbers)
1036 {
1037 return Message(sourceLineNumbers, Ids.IllegalModuleExclusionLanguageAttributes, "Cannot set both ExcludeLanguage and ExcludeExceptLanguage attributes on a ModuleExclusion element.");
1038 }
1039
1040 public static Message IllegalParentAttributeWhenNested(SourceLineNumber sourceLineNumbers, string parentElementName, string parentAttributeName, string childElement)
1041 {
1042 return Message(sourceLineNumbers, Ids.IllegalParentAttributeWhenNested, "The {0}/@{1} attribute cannot be specified when a {2} element is nested underneath the {0} element.", parentElementName, parentAttributeName, childElement);
1043 }
1044
1045 public static Message IllegalPathForGeneratedComponentGuid(SourceLineNumber sourceLineNumbers, string componentName, string keyFilePath)
1046 {
1047 return Message(sourceLineNumbers, Ids.IllegalPathForGeneratedComponentGuid, "The component '{0}' has a key file with path '{1}'. Since this path is not rooted in one of the standard directories (like ProgramFilesFolder), this component does not fit the criteria for having an automatically generated guid. (This error may also occur if a path contains a likely standard directory such as nesting a directory with name \"Common Files\" under ProgramFilesFolder.)", componentName, keyFilePath);
1048 }
1049
1050 public static Message IllegalPropertyCustomActionAttributes(SourceLineNumber sourceLineNumbers)
1051 {
1052 return Message(sourceLineNumbers, Ids.IllegalPropertyCustomActionAttributes, "The CustomAction sets a property but its Execute attribute is not 'immediate' (the default). Property-setting custom actions cannot be deferred.\"");
1053 }
1054
1055 public static Message IllegalRelativeLongFilename(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1056 {
1057 return Message(sourceLineNumbers, Ids.IllegalRelativeLongFilename, "The {0}/@{1} attribute's value, '{2}', is not a valid relative long name because it contains illegal characters. Legal relative long names contain no more than 260 characters and must contain at least one non-period character. Any character except for the follow may be used: ? | > < : / * \".", elementName, attributeName, value);
1058 }
1059
1060 public static Message IllegalRootDirectory(SourceLineNumber sourceLineNumbers, string directoryId)
1061 {
1062 return Message(sourceLineNumbers, Ids.IllegalRootDirectory, "The Directory with Id '{0}' is not a valid root directory. There may only be a single root directory per product or module and its Id attribute value must be 'TARGETDIR' and its Name attribute value must be 'SourceDir'.", directoryId);
1063 }
1064
1065 public static Message IllegalSearchIdForParentDepth(SourceLineNumber sourceLineNumbers, string id, string parentId)
1066 {
1067 return Message(sourceLineNumbers, Ids.IllegalSearchIdForParentDepth, "When the parent DirectorySearch/@Depth attribute is greater than 1 for the DirectorySearch '{1}', the FileSearch/@Id attribute must be absent for FileSearch '{0}' unless the parent DirectorySearch/@AssignToProperty attribute value is 'yes'. Remove the FileSearch/@Id attribute for '{0}' to resolve this issue.", id, parentId);
1068 }
1069
1070 public static Message IllegalShortFilename(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1071 {
1072 return Message(sourceLineNumbers, Ids.IllegalShortFilename, "The {0}/@{1} attribute's value, '{2}', is not a valid 8.3-compliant name. Legal names contain no more than 8 non-period characters followed by an optional period and extension of no more than 3 non-period characters. Any character except for the follow may be used: \\ ? | > < : / * \" + , ; = [ ] (space).", elementName, attributeName, value);
1073 }
1074
1075 public static Message IllegalSuppressWarningId(string suppressedId)
1076 {
1077 return Message(null, Ids.IllegalSuppressWarningId, "Illegal value '{0}' for the -sw<N> command line option. Specify a particular warning number, like '-sw6' to suppress the warning with ID 6, or '-sw' alone to suppress all warnings.", suppressedId);
1078 }
1079
1080 public static Message IllegalTargetDirDefaultDir(SourceLineNumber sourceLineNumbers, string defaultDir)
1081 {
1082 return Message(sourceLineNumbers, Ids.IllegalTargetDirDefaultDir, "The 'TARGETDIR' directory has an illegal DefaultDir value of '{0}'. The DefaultDir value is created from the *Name attributes of the Directory element. The TARGETDIR directory is a special directory which must have its Name attribute set to 'SourceDir'.", defaultDir);
1083 }
1084
1085 public static Message IllegalTerminalServerCustomActionAttributes(SourceLineNumber sourceLineNumbers)
1086 {
1087 return Message(sourceLineNumbers, Ids.IllegalTerminalServerCustomActionAttributes, "The CustomAction/@TerminalServerAware attribute's value is 'yes' but the Execute attribute is not 'deferred,' 'rollback,' or 'commit.' Terminal-Server-aware custom actions must be deferred, rollback, or commit custom actions. For more information, see http://msdn.microsoft.com/library/aa372071.aspx.\"");
1088 }
1089
1090 public static Message IllegalValidationArguments()
1091 {
1092 return Message(null, Ids.IllegalValidationArguments, "You may only specify a single default type using -t or specify custom validation using -serr and -val.");
1093 }
1094
1095 public static Message IllegalVersionValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1096 {
1097 return Message(sourceLineNumbers, Ids.IllegalVersionValue, "The {0}/@{1} attribute's value, '{2}', is not a valid version. Legal version values should look like 'x.x.x.x' where x is an integer from 0 to 65534.", elementName, attributeName, value);
1098 }
1099
1100 public static Message IllegalWarningIdAsError(string warningId)
1101 {
1102 return Message(null, Ids.IllegalWarningIdAsError, "Illegal value '{0}' for the -wx<N> command line option. Specify a particular warning number, like '-wx6' to display the warning with ID 6 as an error, or '-wx' alone to suppress all warnings.", warningId);
1103 }
1104
1105 public static Message IllegalWixVariablePrefix(SourceLineNumber sourceLineNumbers, string variableId)
1106 {
1107 return Message(sourceLineNumbers, Ids.IllegalWixVariablePrefix, "The WiX variable $(wix.{0}) uses an illegal prefix '$'. Please use the '!' prefix instead.", variableId);
1108 }
1109
1110 public static Message IllegalYesNoAlwaysValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1111 {
1112 return Message(sourceLineNumbers, Ids.IllegalYesNoAlwaysValue, "The {0}/@{1} attribute's value, '{2}', is not a legal yes/no/always value. The only legal values are 'always', 'no' or 'yes'.", elementName, attributeName, value);
1113 }
1114
1115 public static Message IllegalYesNoDefaultValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1116 {
1117 return Message(sourceLineNumbers, Ids.IllegalYesNoDefaultValue, "The {0}/@{1} attribute's value, '{2}', is not a legal yes/no/default value. The only legal values are 'default', 'no' or 'yes'.", elementName, attributeName, value);
1118 }
1119
1120 public static Message IllegalYesNoValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1121 {
1122 return Message(sourceLineNumbers, Ids.IllegalYesNoValue, "The {0}/@{1} attribute's value, '{2}', is not a legal yes/no value. The only legal values are 'no' and 'yes'.", elementName, attributeName, value);
1123 }
1124
1125 public static Message ImplicitComponentKeyPath(SourceLineNumber sourceLineNumbers, string componentId)
1126 {
1127 return Message(sourceLineNumbers, Ids.ImplicitComponentKeyPath, "The component '{0}' does not have an explicit key path specified. If the ordering of the elements under the Component element changes, the key path will also change. To prevent accidental changes, the key path should be set to 'yes' in one of the following locations: Component/@KeyPath, File/@KeyPath, ODBCDataSource/@KeyPath, or Registry/@KeyPath.", componentId);
1128 }
1129
1130 public static Message InlineDirectorySyntaxRequiresPath(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string identifier)
1131 {
1132 return Message(sourceLineNumbers, Ids.InlineDirectorySyntaxRequiresPath, "The {0}/@{1} attribute's value '{2}' only specifies a directory reference. The inline directory syntax requires that at least one directory be specified in addition to the value. For example, use '{3}:\\foo\\' to add a 'foo' directory.", elementName, attributeName, value, identifier);
1133 }
1134
1135 public static Message InsecureBundleFilename(string filename)
1136 {
1137 return Message(null, Ids.InsecureBundleFilename, "The file name '{0}' creates an insecure bundle. Windows will load unnecessary compatibility shims into a bundle with that file name. These compatibility shims can be DLL hijacked allowing attackers to compromise your customers' computer. Choose a different bundle file name.", filename);
1138 }
1139
1140 public static Message InsertInvalidSequenceActionOrder(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionNameBefore, string actionNameAfter, string actionNameNew)
1141 {
1142 return Message(sourceLineNumbers, Ids.InsertInvalidSequenceActionOrder, "Invalid order of actions {1} and {2} in sequence table {0}. Action {3} must occur after {1} and before {2}, but {2} is currently sequenced after {1}. Please fix the ordering or explicitly supply a location for the action {3}.", sequenceTableName, actionNameBefore, actionNameAfter, actionNameNew);
1143 }
1144
1145 public static Message InsertSequenceNoSpace(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionNameBefore, string actionNameAfter, string actionNameNew)
1146 {
1147 return Message(sourceLineNumbers, Ids.InsertSequenceNoSpace, "Not enough space exists to sequence action {3} in table {0}. It must be sequenced after {1} and before {2}, but those two actions are currently sequenced next to each other. Please move one of those actions to allow {3} to be inserted between them.", sequenceTableName, actionNameBefore, actionNameAfter, actionNameNew);
1148 }
1149
1150 public static Message InsufficientVersion(SourceLineNumber sourceLineNumbers, Version currentVersion, Version requiredVersion)
1151 {
1152 return Message(sourceLineNumbers, Ids.InsufficientVersion, "The current version of the toolset is {0}, but version {1} is required.", currentVersion, requiredVersion);
1153 }
1154
1155 public static Message InsufficientVersion(SourceLineNumber sourceLineNumbers, Version currentVersion, Version requiredVersion, string extension)
1156 {
1157 return Message(sourceLineNumbers, Ids.InsufficientVersion, "The current version of the extension '{2}' is {0}, but version {1} is required.", currentVersion, requiredVersion, extension);
1158 }
1159
1160 public static Message IntegralValueOutOfRange(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, int value, int minimum, int maximum)
1161 {
1162 return Message(sourceLineNumbers, Ids.IntegralValueOutOfRange, "The {0}/@{1} attribute's value, '{2}', is not in the range of legal values. Legal values for this attribute are from {3} to {4}.", elementName, attributeName, value, minimum, maximum);
1163 }
1164
1165 public static Message IntegralValueOutOfRange(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, long value, long minimum, long maximum)
1166 {
1167 return Message(sourceLineNumbers, Ids.IntegralValueOutOfRange, "The {0}/@{1} attribute's value, '{2}', is not in the range of legal values. Legal values for this attribute are from {3} to {4}.", elementName, attributeName, value, minimum, maximum);
1168 }
1169
1170 public static Message IntegralValueSentinelCollision(SourceLineNumber sourceLineNumbers, int value)
1171 {
1172 return Message(sourceLineNumbers, Ids.IntegralValueSentinelCollision, "The integer value {0} collides with a sentinel value in the compiler code.", value);
1173 }
1174
1175 public static Message IntegralValueSentinelCollision(SourceLineNumber sourceLineNumbers, long value)
1176 {
1177 return Message(sourceLineNumbers, Ids.IntegralValueSentinelCollision, "The long integral value {0} collides with a sentinel value in the compiler code.", value);
1178 }
1179
1180 public static Message InvalidAddedFileRowWithoutSequence(SourceLineNumber sourceLineNumbers, string fileRowId)
1181 {
1182 return Message(sourceLineNumbers, Ids.InvalidAddedFileRowWithoutSequence, "A row has been added to the File table with id '{1}' that does not have a sequence number assigned to it. Create your transform from a pair of msi's instead of xml outputs to get sequences assigned to your File table's rows.", fileRowId);
1183 }
1184
1185 public static Message InvalidAssemblyFile(SourceLineNumber sourceLineNumbers, string assemblyFile, string moreInformation)
1186 {
1187 return Message(sourceLineNumbers, Ids.InvalidAssemblyFile, "The assembly file '{0}' appears to be invalid. Please ensure this is a valid assembly file and that the user has the appropriate access rights to this file. More information: {1}", assemblyFile, moreInformation);
1188 }
1189
1190 public static Message InvalidBundle(string bundleExecutable)
1191 {
1192 return Message(null, Ids.InvalidBundle, "Unable to read bundle executable '{0}'. This is not a valid WiX bundle.", bundleExecutable);
1193 }
1194
1195 public static Message InvalidCabinetTemplate(SourceLineNumber sourceLineNumbers, string cabinetTemplate)
1196 {
1197 return Message(sourceLineNumbers, Ids.InvalidCabinetTemplate, "CabinetTemplate attribute's value '{0}' must contain '{{0}}' and should contain no more than 8 characters followed by an optional extension of no more than 3 characters. Any character except for the follow may be used: \\ ? | > < : / * \" + , ; = [ ] (space). The Windows Installer team has recommended following the 8.3 format for external cabinet files and any other naming scheme is officially unsupported (which means it is not guaranteed to work on all platforms).", cabinetTemplate);
1198 }
1199
1200 public static Message InvalidCommandLineFileName(string fileName, string error)
1201 {
1202 return Message(null, Ids.InvalidCommandLineFileName, "Invalid file name specified on the command line: '{0}'. Error message: '{1}'", fileName, error);
1203 }
1204
1205 public static Message InvalidDateTimeFormat(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1206 {
1207 return Message(sourceLineNumbers, Ids.InvalidDateTimeFormat, "The {0}/@{1} attribute's value '{2}' is not a valid date/time value. A date/time value should follow the format YYYY-MM-DDTHH:mm:ss.", elementName, attributeName, value);
1208 }
1209
1210 public static Message InvalidDocumentElement(SourceLineNumber sourceLineNumbers, string elementName, string fileType, string expectedElementName)
1211 {
1212 return Message(sourceLineNumbers, Ids.InvalidDocumentElement, "The document element name '{0}' is invalid. A WiX {1} file must use '{2}' as the document element name.", elementName, fileType, expectedElementName);
1213 }
1214
1215 public static Message InvalidEmbeddedUIFileName(SourceLineNumber sourceLineNumbers, string codepage)
1216 {
1217 return Message(sourceLineNumbers, Ids.InvalidEmbeddedUIFileName, "The EmbeddedUI/@Name attribute value, '{0}', does not contain an extension. Windows Installer will not load an embedded UI DLL without an extension. Include an extension or just omit the Name attribute so it defaults to the file name portion of the Source attribute value.", codepage);
1218 }
1219
1220 public static Message InvalidExtension(string extension)
1221 {
1222 return Message(null, Ids.InvalidExtension, "The extension '{0}' could not be loaded.", extension);
1223 }
1224
1225 public static Message InvalidExtension(string extension, string invalidReason)
1226 {
1227 return Message(null, Ids.InvalidExtension, "The extension '{0}' could not be loaded because of the following reason: {1}", extension, invalidReason);
1228 }
1229
1230 public static Message InvalidExtension(string extension, string extensionType, string expectedType)
1231 {
1232 return Message(null, Ids.InvalidExtension, "The extension '{0}' is the wrong type: '{1}'. The expected type was '{2}'.", extension, extensionType, expectedType);
1233 }
1234
1235 public static Message InvalidExtension(string extension, string extensionType, string expectedType1, string expectedType2)
1236 {
1237 return Message(null, Ids.InvalidExtension, "The extension '{0}' is the wrong type: '{1}'. The expected type was '{2}' or '{3}'.", extension, extensionType, expectedType1, expectedType2);
1238 }
1239
1240 public static Message InvalidExtensionType(string extension, string attributeType)
1241 {
1242 return Message(null, Ids.InvalidExtensionType, "Either '{1}' was not defined in the assembly or the type defined in extension '{0}' could not be loaded.", extension, attributeType);
1243 }
1244
1245 public static Message InvalidExtensionType(string extension, string className, string expectedType)
1246 {
1247 return Message(null, Ids.InvalidExtensionType, "The extension type '{1}' in extension '{0}' does not inherit from the expected class '{2}'.", extension, className, expectedType);
1248 }
1249
1250 public static Message InvalidExtensionType(string extension, string className, string exceptionType, string exceptionMessage)
1251 {
1252 return Message(null, Ids.InvalidExtensionType, "The type '{1}' in extension '{0}' could not be loaded. Exception type '{2}' returned the following message: {3}", extension, className, exceptionType, exceptionMessage);
1253 }
1254
1255 public static Message InvalidFileName(SourceLineNumber sourceLineNumbers, string fileName)
1256 {
1257 return Message(sourceLineNumbers, Ids.InvalidFileName, "Invalid file name '{0}'.", fileName);
1258 }
1259
1260 public static Message InvalidIdt(SourceLineNumber sourceLineNumbers, string idtFile)
1261 {
1262 return Message(sourceLineNumbers, Ids.InvalidIdt, "There was an error importing the file '{0}'.", idtFile);
1263 }
1264
1265 public static Message InvalidIdt(SourceLineNumber sourceLineNumbers, string idtFile, string tableName)
1266 {
1267 return Message(sourceLineNumbers, Ids.InvalidIdt, "There was an error importing table '{1}' from file '{0}'.", idtFile, tableName);
1268 }
1269
1270 public static Message InvalidKeyColumn(string tableName, string columnName, string foreignTableName, int foreignColumnNumber)
1271 {
1272 return Message(null, Ids.InvalidKeyColumn, "The definition for the '{0}' table's '{1}' column is an invalid foreign key relationship to the {2} table's column number {3}. It is not a valid foreign key table column number because it is too small (less than 1) or greater than the count of columns in the foreign table's definition.", tableName, columnName, foreignTableName, foreignColumnNumber);
1273 }
1274
1275 public static Message InvalidKeypathChange(SourceLineNumber sourceLineNumbers, string component, string transformPath)
1276 {
1277 return Message(sourceLineNumbers, Ids.InvalidKeypathChange, "Component '{0}' has a changed keypath in the transform '{1}'. Patches cannot change the keypath of a component.", component, transformPath);
1278 }
1279
1280 public static Message InvalidManifestContent(SourceLineNumber sourceLineNumbers, string fileName)
1281 {
1282 return Message(sourceLineNumbers, Ids.InvalidManifestContent, "The manifest '{0}' does not have the required assembly/assemblyIdentity element.", fileName);
1283 }
1284
1285 public static Message InvalidMergeLanguage(SourceLineNumber sourceLineNumbers, string mergeId, string mergeLanguage)
1286 {
1287 return Message(sourceLineNumbers, Ids.InvalidMergeLanguage, "The Merge element '{0}' specified an invalid language '{1}'. Verify that localization tokens are being properly resolved to a numeric LCID.", mergeId, mergeLanguage);
1288 }
1289
1290 public static Message InvalidModuleOrBundleVersion(SourceLineNumber sourceLineNumbers, string moduleOrBundle, string version)
1291 {
1292 return Message(sourceLineNumbers, Ids.InvalidModuleOrBundleVersion, "Invalid {0}/@Version '{1}'. {0} version has a max value of \"65535.65535.65535.65535\" and must be all numeric.", moduleOrBundle, version);
1293 }
1294
1295 public static Message InvalidPlatformParameter(string name, string value)
1296 {
1297 return Message(null, Ids.InvalidPlatformParameter, "The parameter '{0}' is missing or has an invalid value {1}. Possible values are x86, x64, or ia64.", name, value);
1298 }
1299
1300 public static Message InvalidPlatformValue(SourceLineNumber sourceLineNumbers, string value)
1301 {
1302 return Message(sourceLineNumbers, Ids.InvalidPlatformValue, "The Platform attribute has an invalid value {0}. Possible values are x86, x64, or ia64.", value);
1303 }
1304
1305 public static Message InvalidPreprocessorFunction(SourceLineNumber sourceLineNumbers, string variable)
1306 {
1307 return Message(sourceLineNumbers, Ids.InvalidPreprocessorFunction, "Ill-formed preprocessor function '${0}'. Functions must have a prefix (like 'fun.'), a name at least 1 character long, and matching opening and closing parentheses.", variable);
1308 }
1309
1310 public static Message InvalidPreprocessorFunctionAutoVersion(SourceLineNumber sourceLineNumbers)
1311 {
1312 return Message(sourceLineNumbers, Ids.InvalidPreprocessorFunctionAutoVersion, "Invalid AutoVersion template specified.");
1313 }
1314
1315 public static Message InvalidPreprocessorPragma(SourceLineNumber sourceLineNumbers, string variable)
1316 {
1317 return Message(sourceLineNumbers, Ids.InvalidPreprocessorPragma, "Malformed preprocessor pragma '{0}'. Pragmas must have a prefix, a name of at least 1 character long, and be followed by optional arguments.", variable);
1318 }
1319
1320 public static Message InvalidPreprocessorVariable(SourceLineNumber sourceLineNumbers, string variable)
1321 {
1322 return Message(sourceLineNumbers, Ids.InvalidPreprocessorVariable, "Ill-formed preprocessor variable '$({0})'. Variables must have a prefix (like 'var.', 'env.', or 'sys.') and a name at least 1 character long. If the literal string '$({0})' is desired, use '$$({0})'.", variable);
1323 }
1324
1325 public static Message InvalidProductVersion(SourceLineNumber sourceLineNumbers, string version)
1326 {
1327 return Message(sourceLineNumbers, Ids.InvalidProductVersion, "Invalid product version '{0}'. Product version must have a major version less than 256, a minor version less than 256, and a build version less than 65536.", version);
1328 }
1329
1330 public static Message InvalidProductVersion(SourceLineNumber sourceLineNumbers, string version, string packagePath)
1331 {
1332 return Message(sourceLineNumbers, Ids.InvalidProductVersion, "Invalid product version '{0}' in package '{1}'. When included in a bundle, all product version fields in an MSI package must be less than 65536.", version, packagePath);
1333 }
1334
1335 public static Message InvalidRemoveComponent(SourceLineNumber sourceLineNumbers, string component, string feature, string transformPath)
1336 {
1337 return Message(sourceLineNumbers, Ids.InvalidRemoveComponent, "Removing component '{0}' from feature '{1}' is not supported. Either the component was removed or the guid changed in the transform '{2}'. Add the component back, undo the change to the component guid, or remove the entire feature.", component, feature, transformPath);
1338 }
1339
1340 public static Message InvalidSequenceTable(string sequenceTableName)
1341 {
1342 return Message(null, Ids.InvalidSequenceTable, "Found an invalid sequence table '{0}'.", sequenceTableName);
1343 }
1344
1345 public static Message InvalidStringForCodepage(SourceLineNumber sourceLineNumbers, string codepage)
1346 {
1347 return Message(sourceLineNumbers, Ids.InvalidStringForCodepage, "A string was provided with characters that are not available in the specified database code page '{0}'. Either change these characters to ones that exist in the database's code page, or update the database's code page by modifying one of the following attributes: Product/@Codepage, Module/@Codepage, Patch/@Codepage, PatchCreation/@Codepage, or WixLocalization/@Codepage.", codepage);
1348 }
1349
1350 public static Message InvalidStubExe(string filename)
1351 {
1352 return Message(null, Ids.InvalidStubExe, "Stub executable '{0}' is not a valid Win32 executable.", filename);
1353 }
1354
1355 public static Message InvalidSubExpression(SourceLineNumber sourceLineNumbers, string subExpression, string expression)
1356 {
1357 return Message(sourceLineNumbers, Ids.InvalidSubExpression, "Found invalid subexpression '{0}' in expression '{1}'.", subExpression, expression);
1358 }
1359
1360 public static Message InvalidSummaryInfoCodePage(SourceLineNumber sourceLineNumbers, int codePage)
1361 {
1362 return Message(sourceLineNumbers, Ids.InvalidSummaryInfoCodePage, "The code page '{0}' is invalid for summary information. You must specify an ANSI code page.", codePage);
1363 }
1364
1365 public static Message InvalidValidatorMessageType(string type)
1366 {
1367 return Message(null, Ids.InvalidValidatorMessageType, "Unknown validation message type '{0}'.", type);
1368 }
1369
1370 public static Message InvalidVariableDefinition(string variableDefinition)
1371 {
1372 return Message(null, Ids.InvalidVariableDefinition, "The variable definition '{0}' is not valid. Variable definitions should be in the form -dname=value where the value is optional.", variableDefinition);
1373 }
1374
1375 public static Message InvalidWixTransform(string fileName)
1376 {
1377 return Message(null, Ids.InvalidWixTransform, "The file '{0}' is not a valid WiX Transform.", fileName);
1378 }
1379
1380 public static Message InvalidWixXmlNamespace(SourceLineNumber sourceLineNumbers, string wixElementName, string wixNamespace)
1381 {
1382 return Message(sourceLineNumbers, Ids.InvalidWixXmlNamespace, "The {0} element has no namespace. Please make the {0} element look like the following: <{0} xmlns=\"{1}\">.", wixElementName, wixNamespace);
1383 }
1384
1385 public static Message InvalidWixXmlNamespace(SourceLineNumber sourceLineNumbers, string wixElementName, string elementNamespace, string wixNamespace)
1386 {
1387 return Message(sourceLineNumbers, Ids.InvalidWixXmlNamespace, "The {0} element has an incorrect namespace of '{1}'. Please make the {0} element look like the following: <{0} xmlns=\"{2}\">.", wixElementName, elementNamespace, wixNamespace);
1388 }
1389
1390 public static Message InvalidXml(SourceLineNumber sourceLineNumbers, string fileType, string detail)
1391 {
1392 return Message(sourceLineNumbers, Ids.InvalidXml, "Not a valid {0} file; detail: {1}", fileType, detail);
1393 }
1394
1395 public static Message LocalizationVariableUnknown(SourceLineNumber sourceLineNumbers, string variableId)
1396 {
1397 return Message(sourceLineNumbers, Ids.LocalizationVariableUnknown, "The localization variable !(loc.{0}) is unknown. Please ensure the variable is defined.", variableId);
1398 }
1399
1400 public static Message MaximumCabinetSizeForLargeFileSplittingTooLarge(SourceLineNumber sourceLineNumbers, int maximumCabinetSizeForLargeFileSplitting, int maxValueOfMaxCabSizeForLargeFileSplitting)
1401 {
1402 return Message(sourceLineNumbers, Ids.MaximumCabinetSizeForLargeFileSplittingTooLarge, "'{0}' is too large. Reduce the size of maximum cabinet size for large file splitting. The maximum permitted value is '{1}' MB.", maximumCabinetSizeForLargeFileSplitting, maxValueOfMaxCabSizeForLargeFileSplitting);
1403 }
1404
1405 public static Message MaximumUncompressedMediaSizeTooLarge(SourceLineNumber sourceLineNumbers, int maximumUncompressedMediaSize)
1406 {
1407 return Message(sourceLineNumbers, Ids.MaximumUncompressedMediaSizeTooLarge, "'{0}' is too large. Reduce the size of maximum uncompressed media size.", maximumUncompressedMediaSize);
1408 }
1409
1410 public static Message MediaEmbeddedCabinetNameTooLong(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, int length)
1411 {
1412 return Message(sourceLineNumbers, Ids.MediaEmbeddedCabinetNameTooLong, "The {0}/@{1} attribute's value, '{2}', is {3} characters long. The name is too long for an embedded cabinet. It cannot be more than than 62 characters long.", elementName, attributeName, value, length);
1413 }
1414
1415 public static Message MediaTableCollision(SourceLineNumber sourceLineNumbers)
1416 {
1417 return Message(sourceLineNumbers, Ids.MediaTableCollision, "Only one of Media and MediaTemplate tables should be authored.");
1418 }
1419
1420 public static Message MergeExcludedModule(SourceLineNumber sourceLineNumbers, string mergeId, string otherMergeId)
1421 {
1422 return Message(sourceLineNumbers, Ids.MergeExcludedModule, "The module '{0}' cannot be merged because it excludes or is excluded by the merge module with signature '{1}'.", mergeId, otherMergeId);
1423 }
1424
1425 public static Message MergeFeatureRequired(SourceLineNumber sourceLineNumbers, string tableName, string primaryKeys, string mergeModuleFile, string mergeId)
1426 {
1427 return Message(sourceLineNumbers, Ids.MergeFeatureRequired, "The {0} table contains a row with primary key(s) '{1}' which requires a feature to properly merge from the merge module '{2}'. Nest a MergeRef element with an Id attribute set to the value '{3}' under a Feature element to fix this error.", tableName, primaryKeys, mergeModuleFile, mergeId);
1428 }
1429
1430 public static Message MergeLanguageFailed(SourceLineNumber sourceLineNumbers, Int16 language, string mergeModuleFile)
1431 {
1432 return Message(sourceLineNumbers, Ids.MergeLanguageFailed, "The language '{0}' is supported but uses an invalid language transform in the merge module '{1}'.", language, mergeModuleFile);
1433 }
1434
1435 public static Message MergeLanguageUnsupported(SourceLineNumber sourceLineNumbers, Int16 language, string mergeModuleFile)
1436 {
1437 return Message(sourceLineNumbers, Ids.MergeLanguageUnsupported, "Could not locate language '{0}' (or a transform for this language) in the merge module '{1}'. This is likely due to an incorrectly authored Merge/@Language attribute.", language, mergeModuleFile);
1438 }
1439
1440 public static Message MergeModuleExpectedFeature(SourceLineNumber sourceLineNumbers, string mergeId)
1441 {
1442 return Message(sourceLineNumbers, Ids.MergeModuleExpectedFeature, "The merge module '{0}' is not assigned to a feature. All merge modules must be assigned to at least one feature.", mergeId);
1443 }
1444
1445 public static Message MergePlatformMismatch(SourceLineNumber sourceLineNumbers, string mergeModuleFile)
1446 {
1447 return Message(sourceLineNumbers, Ids.MergePlatformMismatch, "'{0}' is a 64-bit merge module but the product consuming it is 32-bit. 32-bit products can consume only 32-bit merge modules.", mergeModuleFile);
1448 }
1449
1450 public static Message MissingBundleInformation(string data)
1451 {
1452 return Message(null, Ids.MissingBundleInformation, "The Bundle is missing '{0}' data, and cannot continue.", data);
1453 }
1454
1455 public static Message MissingDependencyVersion(string packageId)
1456 {
1457 return Message(null, Ids.MissingDependencyVersion, "The provider dependency version was not authored for the package with Id '{0}'. Please author the Provides/@Version attribute for this package.", packageId);
1458 }
1459
1460 public static Message MissingEntrySection(string sectionType)
1461 {
1462 return Message(null, Ids.MissingEntrySection, "Could not find entry section in provided list of intermediates. Expected section of type '{0}'.", sectionType);
1463 }
1464
1465 public static Message MissingManifestForWin32Assembly(SourceLineNumber sourceLineNumbers, string file, string manifest)
1466 {
1467 return Message(sourceLineNumbers, Ids.MissingManifestForWin32Assembly, "File '{0}' is marked as a Win32 assembly but it refers to assembly manifest '{1}' that is not present in this product.", file, manifest);
1468 }
1469
1470 public static Message MissingMedia(SourceLineNumber sourceLineNumbers, int diskId)
1471 {
1472 return Message(sourceLineNumbers, Ids.MissingMedia, "There is no media defined for disk id '{0}'. You must author either <Media Id='{0}' ...> or <MediaTemplate ...>.", diskId);
1473 }
1474
1475 public static Message MissingOrInvalidModuleInstallerVersion(SourceLineNumber sourceLineNumbers, string moduleId, string mergeModuleFile, string productInstallerVersion)
1476 {
1477 return Message(sourceLineNumbers, Ids.MissingOrInvalidModuleInstallerVersion, "The merge module '{0}' from file '{1}' is either missing or has an invalid installer version. The value read from the installer version in module's summary information was '{2}'. This should be a numeric value representing a valid installer version such as 200 or 301.", moduleId, mergeModuleFile, productInstallerVersion);
1478 }
1479
1480 public static Message MissingTableDefinition(string tableName)
1481 {
1482 return Message(null, Ids.MissingTableDefinition, "Cannot find the table definitions for the '{0}' table. This is likely due to a typing error or missing extension. Please ensure all the necessary extensions are supplied on the command line with the -ext parameter.", tableName);
1483 }
1484
1485 public static Message MissingTypeLibFile(SourceLineNumber sourceLineNumbers, string elementName, string fileElementName)
1486 {
1487 return Message(sourceLineNumbers, Ids.MissingTypeLibFile, "The {0} element is non-advertised and therefore requires a parent {1} element.", elementName, fileElementName);
1488 }
1489
1490 public static Message MissingValidatorExtension()
1491 {
1492 return Message(null, Ids.MissingValidatorExtension, "The validator requires at least one extension. Add \"ValidatorExtension, Wix\" for the default implementation.");
1493 }
1494
1495 public static Message MsiTransactionX86BeforeX64(SourceLineNumber sourceLineNumbers)
1496 {
1497 return Message(sourceLineNumbers, Ids.MsiTransactionX86BeforeX64, "MSI transactions must install all x64 packages before any x86 package.");
1498 }
1499
1500 public static Message MultipleEntrySections(SourceLineNumber sourceLineNumbers, string sectionName1, string sectionName2)
1501 {
1502 return Message(sourceLineNumbers, Ids.MultipleEntrySections, "Multiple entry sections '{0}' and '{1}' found. Only one entry section may be present in a single target.", sectionName1, sectionName2);
1503 }
1504
1505 public static Message MultipleEntrySections2(SourceLineNumber sourceLineNumbers)
1506 {
1507 return Message(sourceLineNumbers, Ids.MultipleEntrySections2, "Location of entry section related to previous error.");
1508 }
1509
1510 public static Message MultipleFilesMatchedWithOutputSpecification(string sourceSpecification, string sourceList)
1511 {
1512 return Message(null, Ids.MultipleFilesMatchedWithOutputSpecification, "A per-source file output specification has been provided ('{0}'), but multiple source files match the source specification ({1}). Specifying a unique output requires that only a single source file match.", sourceSpecification, sourceList);
1513 }
1514
1515 public static Message MultipleIdentifiersFound(SourceLineNumber sourceLineNumbers, string elementName, string identifier, string mismatchIdentifier)
1516 {
1517 return Message(sourceLineNumbers, Ids.MultipleIdentifiersFound, "Under a '{0}' element, multiple identifiers were found: '{1}' and '{2}'. All search elements under this element must have the same id.", elementName, identifier, mismatchIdentifier);
1518 }
1519
1520 public static Message MultiplePrimaryReferences(SourceLineNumber sourceLineNumbers, string crefChildType, string crefChildId, string crefParentType, string crefParentId, string conflictParentType, string conflictParentId)
1521 {
1522 return Message(sourceLineNumbers, Ids.MultiplePrimaryReferences, "Multiple primary references were found for {0} '{1}' in {2} '{3}' and {4} '{5}'.", crefChildType, crefChildId, crefParentType, crefParentId, conflictParentType, conflictParentId);
1523 }
1524
1525 public static Message MustSpecifyOutputWithMoreThanOneInput()
1526 {
1527 return Message(null, Ids.MustSpecifyOutputWithMoreThanOneInput, "You must specify an output file using the \"-o\" or \"-out\" switch when you provide more than one input file.");
1528 }
1529
1530 public static Message NeedSequenceBeforeOrAfter(SourceLineNumber sourceLineNumbers, string elementName)
1531 {
1532 return Message(sourceLineNumbers, Ids.NeedSequenceBeforeOrAfter, "A {0} element must have a Before attribute, After attribute, or a Sequence attribute.", elementName);
1533 }
1534
1535 public static Message NewRowAddedInTable(SourceLineNumber sourceLineNumbers, string productCode, string tableName, string rowId)
1536 {
1537 return Message(sourceLineNumbers, Ids.NewRowAddedInTable, "Product '{0}': Table '{1}' has a new row '{2}' added. This makes the patch not uninstallable.", productCode, tableName, rowId);
1538 }
1539
1540 public static Message NoDataForColumn(SourceLineNumber sourceLineNumbers, string columnName, string tableName)
1541 {
1542 return Message(sourceLineNumbers, Ids.NoDataForColumn, "There is no data for column '{0}' in a contained row of custom table '{1}'. A non-null value must be supplied for this column.", columnName, tableName);
1543 }
1544
1545 public static Message NoDifferencesInTransform(SourceLineNumber sourceLineNumbers)
1546 {
1547 return Message(sourceLineNumbers, Ids.NoDifferencesInTransform, "The transform being built did not contain any differences so it could not be created.");
1548 }
1549
1550 public static Message NoFirstControlSpecified(SourceLineNumber sourceLineNumbers, string dialogName)
1551 {
1552 return Message(sourceLineNumbers, Ids.NoFirstControlSpecified, "The '{0}' dialog element does not have a valid tabbable control. You must either have a tabbable control that is not marked TabSkip='yes', or you must mark a control TabSkip='no'. If you have a page with no tabbable controls (a progress page, for example), you might want to set the first Text control to be TabSkip='no'.", dialogName);
1553 }
1554
1555 public static Message NonterminatedPreprocessorInstruction(SourceLineNumber sourceLineNumbers, string beginInstruction, string endInstruction)
1556 {
1557 return Message(sourceLineNumbers, Ids.NonterminatedPreprocessorInstruction, "Found a <?{0}?> processing instruction without a matching <?{1}?> after it.", beginInstruction, endInstruction);
1558 }
1559
1560 public static Message NoUniqueActionSequenceNumber(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName1, string actionName2)
1561 {
1562 return Message(sourceLineNumbers, Ids.NoUniqueActionSequenceNumber, "The {0} table contains an action '{1}' which cannot have a unique sequence number because it is scheduled before or after action '{2}'. There is not enough room before or after this action to assign a unique sequence number. Please schedule one of the actions differently so that it will be in a position with more sequence numbers available. Please note that sequence numbers must be an integer in the range 1 - 32767 (inclusive).", sequenceTableName, actionName1, actionName2);
1563 }
1564
1565 public static Message NoUniqueActionSequenceNumber2(SourceLineNumber sourceLineNumbers)
1566 {
1567 return Message(sourceLineNumbers, Ids.NoUniqueActionSequenceNumber2, "The location of the sequenced action related to previous error.");
1568 }
1569
1570 public static Message OpenDatabaseFailed(string databaseFile)
1571 {
1572 return Message(null, Ids.OpenDatabaseFailed, "Failed to open database '{0}'. Ensure it is a valid database, and it is not open by another process.", databaseFile);
1573 }
1574
1575 public static Message OrderingReferenceLoopDetected(SourceLineNumber sourceLineNumbers, string loopList)
1576 {
1577 return Message(sourceLineNumbers, Ids.OrderingReferenceLoopDetected, "A circular reference of ordering dependencies was detected. The infinite loop includes: {0}. Ordering dependency references must form a directed acyclic graph.", loopList);
1578 }
1579
1580 public static Message OrphanedComponent(SourceLineNumber sourceLineNumbers, string componentName)
1581 {
1582 return Message(sourceLineNumbers, Ids.OrphanedComponent, "Found orphaned Component '{0}'. If this is a Product, every Component must have at least one parent Feature. To include a Component in a Module, you must include it directly as a Component element of the Module element or indirectly via ComponentRef, ComponentGroup, or ComponentGroupRef elements.", componentName);
1583 }
1584
1585 public static Message OutputCodepageMismatch(SourceLineNumber sourceLineNumbers, int beforeCodepage, int afterCodepage)
1586 {
1587 return Message(sourceLineNumbers, Ids.OutputCodepageMismatch, "The code pages of the outputs do not match. One output's code page is '{0}' while the other is '{1}'.", beforeCodepage, afterCodepage);
1588 }
1589
1590 public static Message OutputCodepageMismatch2(SourceLineNumber sourceLineNumbers)
1591 {
1592 return Message(sourceLineNumbers, Ids.OutputCodepageMismatch2, "The location of the mismatched code page related to the previous warning.");
1593 }
1594
1595 public static Message OutputTargetNotSpecified()
1596 {
1597 return Message(null, Ids.OutputTargetNotSpecified, "The '-out' or '-o' parameter must specify a file path.");
1598 }
1599
1600 public static Message OutputTypeMismatch(SourceLineNumber sourceLineNumbers, string beforeOutputType, string afterOutputType)
1601 {
1602 return Message(sourceLineNumbers, Ids.OutputTypeMismatch, "The types of the outputs do not match. One output's type is '{0}' while the other is '{1}'.", beforeOutputType, afterOutputType);
1603 }
1604
1605 public static Message OverridableActionCollision(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
1606 {
1607 return Message(sourceLineNumbers, Ids.OverridableActionCollision, "The {0} table contains an action '{1}' that is declared overridable in two different locations. Please remove one of the actions or the Overridable='yes' attribute from one of the actions.", sequenceTableName, actionName);
1608 }
1609
1610 public static Message OverridableActionCollision2(SourceLineNumber sourceLineNumbers)
1611 {
1612 return Message(sourceLineNumbers, Ids.OverridableActionCollision2, "The location of the action related to previous error.");
1613 }
1614
1615 public static Message ParentElementAttributeRequired(SourceLineNumber sourceLineNumbers, string parentElement, string parentAttribute, string childElement)
1616 {
1617 return Message(sourceLineNumbers, Ids.ParentElementAttributeRequired, "The parent {0} element is missing the {1} attribute that is required for the {2} child element.", parentElement, parentAttribute, childElement);
1618 }
1619
1620 public static Message PatchNotRemovable()
1621 {
1622 return Message(null, Ids.PatchNotRemovable, "This patch is not uninstallable. The 'Patch' element's attribute 'AllowRemoval' should be set to 'no'.");
1623 }
1624
1625 public static Message PatchWithoutTransforms()
1626 {
1627 return Message(null, Ids.PatchWithoutTransforms, "No transforms were provided to attach to the patch.");
1628 }
1629
1630 public static Message PatchWithoutValidTransforms()
1631 {
1632 return Message(null, Ids.PatchWithoutValidTransforms, "No valid transforms were provided to attach to the patch. Check to make sure the transforms you passed on the command line have a matching baseline authored in the patch. Also, make sure there are differences between your target and upgrade.");
1633 }
1634
1635 public static Message PathCannotContainQuote(string fileName)
1636 {
1637 return Message(null, Ids.PathCannotContainQuote, "Path '{0}' contains a literal quote character. Quotes are often accidentally introduced when trying to refer to a directory path with spaces in it, such as \"C:\\Out Directory\\\" -- the backslash before the quote acts an escape character. The correct representation for that path is: \"C:\\Out Directory\\\\\".", fileName);
1638 }
1639
1640 public static Message PathTooLong(SourceLineNumber sourceLineNumbers, string fileName)
1641 {
1642 return Message(sourceLineNumbers, Ids.PathTooLong, "'{0}' is too long, the fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.", fileName);
1643 }
1644
1645 public static Message PayloadMustBeRelativeToCache(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue)
1646 {
1647 return Message(sourceLineNumbers, Ids.PayloadMustBeRelativeToCache, "The {0}/@{1} attribute's value, '{2}', is not a legal path name: Payload names must be relative to their cache directory and cannot contain '..'.", elementName, attributeName, attributeValue);
1648 }
1649
1650 public static Message PerUserButAllUsersEquals1(SourceLineNumber sourceLineNumbers, string path)
1651 {
1652 return Message(sourceLineNumbers, Ids.PerUserButAllUsersEquals1, "The MSI '{0}' is explicitly marked to not elevate so it must be a per-user package but the ALLUSERS Property is set to '1' creating a per-machine package. Remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute to be explicit instead.", path);
1653 }
1654
1655 public static Message PreprocessorError(SourceLineNumber sourceLineNumbers, string message)
1656 {
1657 return Message(sourceLineNumbers, Ids.PreprocessorError, "{0}", message);
1658 }
1659
1660 public static Message PreprocessorExtensionEvaluateFunctionFailed(SourceLineNumber sourceLineNumbers, string prefix, string function, string args, string message)
1661 {
1662 return Message(sourceLineNumbers, Ids.PreprocessorExtensionEvaluateFunctionFailed, "In the preprocessor extension that handles prefix '{0}' while trying to call function '{1}({2})' and exception has occurred : {3}", prefix, function, args, message);
1663 }
1664
1665 public static Message PreprocessorExtensionForParameterMissing(SourceLineNumber sourceLineNumbers, string parameterName, string parameterPrefix)
1666 {
1667 return Message(sourceLineNumbers, Ids.PreprocessorExtensionForParameterMissing, "Could not find the preprocessor extension for parameter '{0}'. A preprocessor extension is expected because the parameter prefix, '{1}', is not one of the standard types: 'env', 'res', 'sys', or 'var'.", parameterName, parameterPrefix);
1668 }
1669
1670 public static Message PreprocessorExtensionGetVariableValueFailed(SourceLineNumber sourceLineNumbers, string prefix, string variable, string message)
1671 {
1672 return Message(sourceLineNumbers, Ids.PreprocessorExtensionGetVariableValueFailed, "In the preprocessor extension that handles prefix '{0}' while trying to get the value for variable '{1}' and exception has occured : {2}", prefix, variable, message);
1673 }
1674
1675 public static Message PreprocessorExtensionPragmaFailed(SourceLineNumber sourceLineNumbers, string pragma, string message)
1676 {
1677 return Message(sourceLineNumbers, Ids.PreprocessorExtensionPragmaFailed, "Exception thrown while processing pragma '{0}'. The exception's message is: {1}", pragma, message);
1678 }
1679
1680 public static Message PreprocessorIllegalForeachVariable(SourceLineNumber sourceLineNumbers, string variableName)
1681 {
1682 return Message(sourceLineNumbers, Ids.PreprocessorIllegalForeachVariable, "The variable named '{0}' is not allowed in a foreach expression.", variableName);
1683 }
1684
1685 public static Message PreprocessorMissingParameterPrefix(SourceLineNumber sourceLineNumbers, string parameterName)
1686 {
1687 return Message(sourceLineNumbers, Ids.PreprocessorMissingParameterPrefix, "Could not find the prefix in parameter name: '{0}'.", parameterName);
1688 }
1689
1690 public static Message ProductCodeInvalidForTransform(SourceLineNumber sourceLineNumbers)
1691 {
1692 return Message(sourceLineNumbers, Ids.ProductCodeInvalidForTransform, "The value '*' is not valid for the ProductCode when used in a transform or in a patch. Copy the ProductCode from your target product MSI into the Product/@Id attribute value for your product authoring.");
1693 }
1694
1695 public static Message ProgIdNestedTooDeep(SourceLineNumber sourceLineNumbers)
1696 {
1697 return Message(sourceLineNumbers, Ids.ProgIdNestedTooDeep, "ProgId elements may not be nested more than 1 level deep.");
1698 }
1699
1700 public static Message RadioButtonBitmapAndIconDisallowed(SourceLineNumber sourceLineNumbers)
1701 {
1702 return Message(sourceLineNumbers, Ids.RadioButtonBitmapAndIconDisallowed, "RadioButtonGroup elements that contain RadioButton elements with Bitmap or Icon attributes set to \"yes\" can only be specified under a Control element. Move your RadioButtonGroup element as a child of the appropriate Control element.");
1703 }
1704
1705 public static Message RadioButtonTypeInconsistent(SourceLineNumber sourceLineNumbers)
1706 {
1707 return Message(sourceLineNumbers, Ids.RadioButtonTypeInconsistent, "All RadioButton elements in a RadioButtonGroup must be consistent with their use of the Bitmap, Icon, and Text attributes. Ensure all of the RadioButton elements in this group have the same attribute specified.");
1708 }
1709
1710 public static Message ReadOnlyOutputFile(string filePath)
1711 {
1712 return Message(null, Ids.ReadOnlyOutputFile, "Unable to output to file '{0}' because it is marked as read-only.", filePath);
1713 }
1714
1715 public static Message RealTableMissingPrimaryKeyColumn(SourceLineNumber sourceLineNumbers, string tableName)
1716 {
1717 return Message(sourceLineNumbers, Ids.RealTableMissingPrimaryKeyColumn, "The table '{0}' does not contain any primary key columns. At least one column must be marked as the primary key to ensure this table can be patched.", tableName);
1718 }
1719
1720 public static Message RecursiveAction(string action, string tableName)
1721 {
1722 return Message(null, Ids.RecursiveAction, "The action '{0}' is recursively placed in the '{1}' table.", action, tableName);
1723 }
1724
1725 public static Message ReferenceLoopDetected(SourceLineNumber sourceLineNumbers, string loopList)
1726 {
1727 return Message(sourceLineNumbers, Ids.ReferenceLoopDetected, "A circular reference of groups was detected. The infinite loop includes: {0}. Group references must form a directed acyclic graph.", loopList);
1728 }
1729
1730 public static Message RegistryMultipleValuesWithoutMultiString(SourceLineNumber sourceLineNumbers, string registryElementName, string valueAttributeName, string registryValueElementName, string typeAttributeName)
1731 {
1732 return Message(sourceLineNumbers, Ids.RegistryMultipleValuesWithoutMultiString, "The {0}/@{1} attribute and a {0}/{2} element cannot both be specified. Only one may be specified if the {3} attribute's value is not 'multiString'.", registryElementName, valueAttributeName, registryValueElementName, typeAttributeName);
1733 }
1734
1735 public static Message RegistryNameValueIncorrect(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1736 {
1737 return Message(sourceLineNumbers, Ids.RegistryNameValueIncorrect, "The {0}/@{1} attribute's value, '{2}', is incorrect. It should not contain values of '+', '-', or '*' when the {0}/@Value attribute is empty. Instead, use the proper element and attributes: for Name='+' use RegistryKey/@Action='createKey', for Name='-' use RemoveRegistryKey/@Action='removeOnUninstall', for Name='*' use RegistryKey/@Action='createAndRemoveOnUninstall'.", elementName, attributeName, value);
1738 }
1739
1740 public static Message RegistryRootInvalid(SourceLineNumber sourceLineNumbers)
1741 {
1742 return Message(sourceLineNumbers, Ids.RegistryRootInvalid, "Registry/@Root attribute is invalid on a nested Registry element. Either remove the Root attribute or move the Registry element so it is not nested under another Registry element.");
1743 }
1744
1745 public static Message RegistrySubElementCannotBeRemoved(SourceLineNumber sourceLineNumbers, string registryElementName, string registryValueElementName, string actionAttributeName, string removeValue, string removeKeyOnInstallValue)
1746 {
1747 return Message(sourceLineNumbers, Ids.RegistrySubElementCannotBeRemoved, "The {0}/{1} element cannot be specified if the {2} attribute's value is '{3}' or '{4}'.", registryElementName, registryValueElementName, actionAttributeName, removeValue, removeKeyOnInstallValue);
1748 }
1749
1750 public static Message RelativePathForRegistryElement(SourceLineNumber sourceLineNumbers)
1751 {
1752 return Message(sourceLineNumbers, Ids.RelativePathForRegistryElement, "Cannot convert RelativePath into Registry elements.");
1753 }
1754
1755 public static Message RemotePayloadUnsupported(SourceLineNumber sourceLineNumbers)
1756 {
1757 return Message(sourceLineNumbers, Ids.RemotePayloadUnsupported, "The RemotePayload element can only be used for ExePackage and MsuPackage payloads.");
1758 }
1759
1760 public static Message ReservedNamespaceViolation(SourceLineNumber sourceLineNumbers, string element, string attribute, string prefix)
1761 {
1762 return Message(sourceLineNumbers, Ids.ReservedNamespaceViolation, "The {0}/@{1} attribute's value begins with the reserved prefix '{2}'. Some prefixes are reserved by the Windows Installer and WiX toolset for well-known values. Change your attribute's value to not begin with the same prefix.", element, attribute, prefix);
1763 }
1764
1765 public static Message RootFeatureCannotFollowParent(SourceLineNumber sourceLineNumbers)
1766 {
1767 return Message(sourceLineNumbers, Ids.RootFeatureCannotFollowParent, "The Feature element specifies a root feature with an illegal InstallDefault value of 'followParent'. Root features cannot follow their parent feature's install state because they don't have a parent feature. Please remove or change the value of the InstallDefault attribute.");
1768 }
1769
1770 public static Message SameFileIdDifferentSource(SourceLineNumber sourceLineNumbers, string fileId, string sourcePath1, string sourcePath2)
1771 {
1772 return Message(sourceLineNumbers, Ids.SameFileIdDifferentSource, "Two different source paths '{1}' and '{2}' were detected for the same file identifier '{0}'. You must either author these under Media elements with different Id attribute values or in different patches.", fileId, sourcePath1, sourcePath2);
1773 }
1774
1775 public static Message SamePatchBaselineId(SourceLineNumber sourceLineNumbers, string id)
1776 {
1777 return Message(sourceLineNumbers, Ids.SamePatchBaselineId, "The PatchBaseline/@Id attribute value '{0}' is a child of multiple Media elements. This prevents transforms from being resolved to distinct media. Change the PatchBaseline/@Id attribute values to be unique.", id);
1778 }
1779
1780 public static Message SchemaValidationFailed(SourceLineNumber sourceLineNumbers, string validationError, int lineNumber, int linePosition)
1781 {
1782 return Message(sourceLineNumbers, Ids.SchemaValidationFailed, "Schema validation failed with the following error at line {1}, column {2}: {0}", validationError, lineNumber, linePosition);
1783 }
1784
1785 public static Message SearchElementRequired(SourceLineNumber sourceLineNumbers, string elementName)
1786 {
1787 return Message(sourceLineNumbers, Ids.SearchElementRequired, "A '{0}' element must have a search element as a child.", elementName);
1788 }
1789
1790 public static Message SearchElementRequiredWithAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue)
1791 {
1792 return Message(sourceLineNumbers, Ids.SearchElementRequiredWithAttribute, "A {0} element must have a search element as a child when the {0}/@{1} attribute has the value '{2}'.", elementName, attributeName, attributeValue);
1793 }
1794
1795 public static Message SearchPropertyNotUppercase(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1796 {
1797 return Message(sourceLineNumbers, Ids.SearchPropertyNotUppercase, "The {0}/@{1} attribute's value, '{2}', cannot contain lowercase characters. Since this is a search property, it must also be a public property. This means the Property/@Id value must be completely uppercase.", elementName, attributeName, value);
1798 }
1799
1800 public static Message SecurePropertyNotUppercase(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string propertyId)
1801 {
1802 return Message(sourceLineNumbers, Ids.SecurePropertyNotUppercase, "The {0}/@{1} attribute's value, '{2}', cannot contain lowercase characters. Since this is a secure property, it must also be a public property. This means the Property/@Id value must be completely uppercase.", elementName, attributeName, propertyId);
1803 }
1804
1805 public static Message SignedEmbeddedCabinet(SourceLineNumber sourceLineNumbers)
1806 {
1807 return Message(sourceLineNumbers, Ids.SignedEmbeddedCabinet, "The DigitalSignature element cannot be nested under a Media element which specifies EmbedCab='yes'. This is because Windows Installer can only verify the digital signatures of external cabinets. Please either remove the DigitalSignature element or change the value of the Media/@EmbedCab attribute to 'no'.");
1808 }
1809
1810 public static Message SingleExtensionSupported()
1811 {
1812 return Message(null, Ids.SingleExtensionSupported, "Multiple extensions were specified on the command line, only a single extension is supported.");
1813 }
1814
1815 public static Message SmokeMalformedPath()
1816 {
1817 return Message(null, Ids.SmokeMalformedPath, "Path contains one or more invalid characters.");
1818 }
1819
1820 public static Message SmokeUnknownFileExtension()
1821 {
1822 return Message(null, Ids.SmokeUnknownFileExtension, "Unknown input file format - expected a .msi or .msm file.");
1823 }
1824
1825 public static Message SmokeUnsupportedFileExtension()
1826 {
1827 return Message(null, Ids.SmokeUnsupportedFileExtension, "Files with an extension of .msp are not currently supported.");
1828 }
1829
1830 public static Message SpecifiedBinderNotFound(string binderClass)
1831 {
1832 return Message(null, Ids.SpecifiedBinderNotFound, "The specified binder class '{0}' was not found in any extensions.", binderClass);
1833 }
1834
1835 public static Message SplitCabinetCopyRegistrationFailed(string newCabName, string firstCabName)
1836 {
1837 return Message(null, Ids.SplitCabinetCopyRegistrationFailed, "Failed to register the copy command for cabinet '{0}' formed by splitting cabinet '{1}'.", newCabName, firstCabName);
1838 }
1839
1840 public static Message SplitCabinetInsertionFailed(string newCabName, string firstCabName, string lastCabinetOfThisSequence)
1841 {
1842 return Message(null, Ids.SplitCabinetInsertionFailed, "Could not find the last split cabinet '{2}' in the Media Table. So failed to add new cabinet '{0}' formed by splitting cabinet '{1}' to the installer package.", newCabName, firstCabName, lastCabinetOfThisSequence);
1843 }
1844
1845 public static Message SplitCabinetNameCollision(string newCabName, string firstCabName)
1846 {
1847 return Message(null, Ids.SplitCabinetNameCollision, "The cabinet name '{0}' collides with the new cabinet formed by splitting cabinet '{1}', consider renaming cabinet '{0}'.", newCabName, firstCabName);
1848 }
1849
1850 public static Message StandardActionRelativelyScheduledInModule(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
1851 {
1852 return Message(sourceLineNumbers, Ids.StandardActionRelativelyScheduledInModule, "The {0} table contains a standard action '{1}' that does not have a sequence number specified. The Sequence attribute is required for standard actions in a merge module. Please remove the action or use the Sequence attribute.", sequenceTableName, actionName);
1853 }
1854
1855 public static Message StreamNameTooLong(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, int length, int maximumLength)
1856 {
1857 return Message(sourceLineNumbers, Ids.StreamNameTooLong, "The {0}/@{1} attribute's value, '{2}', is {3} characters long. This is too long because it will be used to create a stream name. It cannot be more than than {4} characters long.", elementName, attributeName, value, length, maximumLength);
1858 }
1859
1860 public static Message StreamNameTooLong(SourceLineNumber sourceLineNumbers, string tableName, string streamName, int streamLength)
1861 {
1862 return Message(sourceLineNumbers, Ids.StreamNameTooLong, "The binary value in table '{0}' will be stored with a stream name, '{1}', that is {2} characters long. This is too long because the maximum allowed length for a stream name is 62 characters long. Since the stream name is created by concatenating the table name and values of the primary key for a row (delimited by periods), this error can be resolved by shortening a value that is part of the primary key.", tableName, streamName, streamLength);
1863 }
1864
1865 public static Message StubMissingWixburnSection(string filename)
1866 {
1867 return Message(null, Ids.StubMissingWixburnSection, "Stub executable '{0}' does not contain a .wixburn data section.", filename);
1868 }
1869
1870 public static Message StubWixburnSectionTooSmall(string filename)
1871 {
1872 return Message(null, Ids.StubWixburnSectionTooSmall, "Stub executable '{0}' .wixburn data section is too small to store the Burn container header.", filename);
1873 }
1874
1875 public static Message SuppressNonoverridableAction(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
1876 {
1877 return Message(sourceLineNumbers, Ids.SuppressNonoverridableAction, "The {0} table contains an action '{1}' that cannot be suppressed because it is not declared overridable in the base definition. Please stop suppressing the action or make it overridable in its base declaration.", sequenceTableName, actionName);
1878 }
1879
1880 public static Message SuppressNonoverridableAction2(SourceLineNumber sourceLineNumbers)
1881 {
1882 return Message(sourceLineNumbers, Ids.SuppressNonoverridableAction2, "The location of the non-overridable definition of the action related to previous error.");
1883 }
1884
1885 public static Message TabbableControlNotAllowedInBillboard(SourceLineNumber sourceLineNumbers, string elementName, string controlType)
1886 {
1887 return Message(sourceLineNumbers, Ids.TabbableControlNotAllowedInBillboard, "A {0} element was specified with Type='{1}' and TabSkip='no'. Tabbable controls are not allowed in Billboards.", elementName, controlType);
1888 }
1889
1890 public static Message TableDecompilationUnimplemented(string tableName)
1891 {
1892 return Message(null, Ids.TableDecompilationUnimplemented, "Decompilation of the {0} table has not been implemented by its extension.", tableName);
1893 }
1894
1895 public static Message TableNameTooLong(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
1896 {
1897 return Message(sourceLineNumbers, Ids.TableNameTooLong, "The {0}/@{1} attribute's value, '{2}', is too long for a table name. It cannot be more than than 31 characters long.", elementName, attributeName, value);
1898 }
1899
1900 public static Message TooDeeplyIncluded(SourceLineNumber sourceLineNumbers, int depth)
1901 {
1902 return Message(sourceLineNumbers, Ids.TooDeeplyIncluded, "Include files cannot be nested more deeply than {0} times. Make sure included files don't accidentally include themselves.", depth);
1903 }
1904
1905 public static Message TooManyChildren(SourceLineNumber sourceLineNumbers, string elementName, string childElementName)
1906 {
1907 return Message(sourceLineNumbers, Ids.TooManyChildren, "The {0} element contains multiple {1} child elements. There can only be one {1} child element per {0} element.", elementName, childElementName);
1908 }
1909
1910 public static Message TooManyColumnsInRealTable(string tableName, int columnCount, int supportedColumnCount)
1911 {
1912 return Message(null, Ids.TooManyColumnsInRealTable, "The table '{0}' contains {1} columns which is not supported by Windows Installer. Windows Installer supports a maximum of {2} columns.", tableName, columnCount, supportedColumnCount);
1913 }
1914
1915 public static Message TooManyElements(SourceLineNumber sourceLineNumbers, string elementName, string childElementName, int expectedInstances)
1916 {
1917 return Message(sourceLineNumbers, Ids.TooManyElements, "The {0} element contains an unexpected child element '{1}'. The '{1}' element may only occur {2} time(s) under the {0} element.", elementName, childElementName, expectedInstances);
1918 }
1919
1920 public static Message TooManySearchElements(SourceLineNumber sourceLineNumbers, string elementName)
1921 {
1922 return Message(sourceLineNumbers, Ids.TooManySearchElements, "Only one search element can appear under a '{0}' element.", elementName);
1923 }
1924
1925 public static Message TransformSchemaMismatch()
1926 {
1927 return Message(null, Ids.TransformSchemaMismatch, "The transform schema does not match the database schema. The transform may have been generated from a different database.");
1928 }
1929
1930 public static Message TypeSpecificationForExtensionRequired(string parameter)
1931 {
1932 return Message(null, Ids.TypeSpecificationForExtensionRequired, "The parameter '{0}' must be followed by the extension's type specification. The type specification should be a fully qualified class and assembly identity, for example: \"MyNamespace.MyClass,myextension.dll\".", parameter);
1933 }
1934
1935 public static Message UnableToGetAuthenticodeCertOfFile(string filePath, string moreInformation)
1936 {
1937 return Message(null, Ids.UnableToGetAuthenticodeCertOfFile, "Unable to get the authenticode certificate of '{0}'. More information: {1}", filePath, moreInformation);
1938 }
1939
1940 public static Message UnableToGetAuthenticodeCertOfFileDownlevelOS(string filePath, string moreInformation)
1941 {
1942 return Message(null, Ids.UnableToGetAuthenticodeCertOfFileDownlevelOS, "Unable to get the authenticode certificate of '{0}'. The cryptography API has limitations on Windows XP and Windows Server 2003. More information: {1}", filePath, moreInformation);
1943 }
1944
1945 public static Message UnableToOpenModule(SourceLineNumber sourceLineNumbers, string modulePath, string message)
1946 {
1947 return Message(sourceLineNumbers, Ids.UnableToOpenModule, "Unable to open merge module '{0}'. Check to make sure the module language is correct. '{1}'", modulePath, message);
1948 }
1949
1950 public static Message UnableToReadPackageInformation(SourceLineNumber sourceLineNumbers, string packagePath, string detailedErrorMessage)
1951 {
1952 return Message(sourceLineNumbers, Ids.UnableToReadPackageInformation, "Unable to read package '{0}'. {1}", packagePath, detailedErrorMessage);
1953 }
1954
1955 public static Message UnauthorizedAccess(string filePath)
1956 {
1957 return Message(null, Ids.UnauthorizedAccess, "Access to the path '{0}' is denied.", filePath);
1958 }
1959
1960 public static Message UndefinedPreprocessorFunction(SourceLineNumber sourceLineNumbers, string variableName)
1961 {
1962 return Message(sourceLineNumbers, Ids.UndefinedPreprocessorFunction, "Undefined preprocessor function '$({0})'.", variableName);
1963 }
1964
1965 public static Message UndefinedPreprocessorVariable(SourceLineNumber sourceLineNumbers, string variableName)
1966 {
1967 return Message(sourceLineNumbers, Ids.UndefinedPreprocessorVariable, "Undefined preprocessor variable '$({0})'.", variableName);
1968 }
1969
1970 public static Message UnexpectedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
1971 {
1972 return Message(sourceLineNumbers, Ids.UnexpectedAttribute, "The {0} element contains an unexpected attribute '{1}'.", elementName, attributeName);
1973 }
1974
1975 public static Message UnexpectedColumnCount(SourceLineNumber sourceLineNumbers, string tableName)
1976 {
1977 return Message(sourceLineNumbers, Ids.UnexpectedColumnCount, "A parsed row has more fields that contain data for table '{0}' than are defined. This is potentially because a standard table is being redefined as a custom table or is based on an older table schema.", tableName);
1978 }
1979
1980 public static Message UnexpectedContentNode(SourceLineNumber sourceLineNumbers, string elementName, string unexpectedNodeType)
1981 {
1982 return Message(sourceLineNumbers, Ids.UnexpectedContentNode, "The {0} element contains an unexpected xml node of type {1}.", elementName, unexpectedNodeType);
1983 }
1984
1985 public static Message UnexpectedCustomTableColumn(SourceLineNumber sourceLineNumbers, string column)
1986 {
1987 return Message(sourceLineNumbers, Ids.UnexpectedCustomTableColumn, "The custom table column '{0}' is unknown.", column);
1988 }
1989
1990 public static Message UnexpectedElement(SourceLineNumber sourceLineNumbers, string elementName, string childElementName)
1991 {
1992 return Message(sourceLineNumbers, Ids.UnexpectedElement, "The {0} element contains an unexpected child element '{1}'.", elementName, childElementName);
1993 }
1994
1995 public static Message UnexpectedElementWithAttribute(SourceLineNumber sourceLineNumbers, string elementName, string childElementName, string attribute)
1996 {
1997 return Message(sourceLineNumbers, Ids.UnexpectedElementWithAttribute, "The {0} element cannot have a child element '{1}' when attribute '{2}' is set.", elementName, childElementName, attribute);
1998 }
1999
2000 public static Message UnexpectedElementWithAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string childElementName, string attribute, string attributeValue)
2001 {
2002 return Message(sourceLineNumbers, Ids.UnexpectedElementWithAttributeValue, "The {0} element cannot have a child element '{1}' unless attribute '{2}' is set to '{3}'.", elementName, childElementName, attribute, attributeValue);
2003 }
2004
2005 public static Message UnexpectedElementWithAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string childElementName, string attribute, string attributeValue1, string attributeValue2)
2006 {
2007 return Message(sourceLineNumbers, Ids.UnexpectedElementWithAttributeValue, "The {0} element cannot have a child element '{1}' unless attribute '{2}' is set to '{3}' or '{4}'.", elementName, childElementName, attribute, attributeValue1, attributeValue2);
2008 }
2009
2010 public static Message UnexpectedEmptySubexpression(SourceLineNumber sourceLineNumbers, string expression)
2011 {
2012 return Message(sourceLineNumbers, Ids.UnexpectedEmptySubexpression, "The empty subexpression is unexpected in the expression '{0}'.", expression);
2013 }
2014
2015 public static Message UnexpectedException(string message, string type, string stackTrace)
2016 {
2017 return Message(null, Ids.UnexpectedException, "{0}\r\n\r\nException Type: {1}\r\n\r\nStack Trace:\r\n{2}", message, type, stackTrace);
2018 }
2019
2020 public static Message UnexpectedExternalUIMessage(string message)
2021 {
2022 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing unknown ICE action. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See http://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message);
2023 }
2024
2025 public static Message UnexpectedExternalUIMessage(string message, string action)
2026 {
2027 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing ICE action '{1}'. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See http://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message, action);
2028 }
2029
2030 public static Message UnexpectedFileExtension(string fileName, string expectedExtensions)
2031 {
2032 return Message(null, Ids.UnexpectedFileExtension, "The file '{0}' has an unexpected extension. Expected one of the following: '{1}'.", fileName, expectedExtensions);
2033 }
2034
2035 public static Message UnexpectedFileFormat(string path, FileFormat expectedFormat, FileFormat actualFormat)
2036 {
2037 return Message(null, Ids.UnexpectedFileFormat, "Unexpected file format loaded from path: {0}. The file was expected to be a {1} but was actually: {2}. Ensure the correct path was provided.", path, expectedFormat.ToString().ToLowerInvariant(), actualFormat.ToString().ToLowerInvariant());
2038 }
2039
2040 public static Message UnexpectedGroupChild(string parentType, string parentId, string childType, string childId)
2041 {
2042 return Message(null, Ids.UnexpectedGroupChild, "A group parent ('{0}'/'{1}') had an unexpected child ('{2}'/'{3}').", parentType, parentId, childType, childId);
2043 }
2044
2045 public static Message UnexpectedLiteral(SourceLineNumber sourceLineNumbers, string expression)
2046 {
2047 return Message(sourceLineNumbers, Ids.UnexpectedLiteral, "An unexpected literal was found in the expression '{0}'.", expression);
2048 }
2049
2050 public static Message UnexpectedPreprocessorOperator(SourceLineNumber sourceLineNumbers, string op)
2051 {
2052 return Message(sourceLineNumbers, Ids.UnexpectedPreprocessorOperator, "The operator '{0}' is unexpected.", op);
2053 }
2054
2055 public static Message UnexpectedTableInMergeModule(SourceLineNumber sourceLineNumbers, string tableName)
2056 {
2057 return Message(sourceLineNumbers, Ids.UnexpectedTableInMergeModule, "An unexpected row in the '{0}' table was found in this merge module. Merge modules cannot contain the '{0}' table.", tableName);
2058 }
2059
2060 public static Message UnexpectedTableInPatch(SourceLineNumber sourceLineNumbers, string tableName)
2061 {
2062 return Message(sourceLineNumbers, Ids.UnexpectedTableInPatch, "An unexpected row in the '{0}' table was found in this patch. Patches cannot contain the '{0}' table.", tableName);
2063 }
2064
2065 public static Message UnexpectedTableInPatchCreationPackage(SourceLineNumber sourceLineNumbers, string tableName)
2066 {
2067 return Message(sourceLineNumbers, Ids.UnexpectedTableInPatchCreationPackage, "An unexpected row in the '{0}' table was found in this patch creation package. Patch creation packages cannot contain the '{0}' table.", tableName);
2068 }
2069
2070 public static Message UnhandledExtensionAttribute(SourceLineNumber sourceLineNumbers, string elementName, string extensionAttributeName, string extensionNamespace)
2071 {
2072 return Message(sourceLineNumbers, Ids.UnhandledExtensionAttribute, "The {0} element contains an unhandled extension attribute '{1}'. Please ensure that the extension for attributes in the '{2}' namespace has been provided.", elementName, extensionAttributeName, extensionNamespace);
2073 }
2074
2075 public static Message UnhandledExtensionElement(SourceLineNumber sourceLineNumbers, string elementName, string extensionElementName, string extensionNamespace)
2076 {
2077 return Message(sourceLineNumbers, Ids.UnhandledExtensionElement, "The {0} element contains an unhandled extension element '{1}'. Please ensure that the extension for elements in the '{2}' namespace has been provided.", elementName, extensionElementName, extensionNamespace);
2078 }
2079
2080 public static Message UniqueFileSearchIdRequired(SourceLineNumber sourceLineNumbers, string id, string elementName)
2081 {
2082 return Message(sourceLineNumbers, Ids.UniqueFileSearchIdRequired, "The DirectorySearch element '{0}' requires that the child {1} element has a unique Id when the DirectorySearch/@AssignToProperty attribute is set to 'yes'.", id, elementName);
2083 }
2084
2085 public static Message UnknownCustomTableColumnType(SourceLineNumber sourceLineNumbers, string columnType)
2086 {
2087 return Message(sourceLineNumbers, Ids.UnknownCustomTableColumnType, "Encountered an unknown custom table column type '{0}'.", columnType);
2088 }
2089
2090 public static Message UnmatchedParenthesisInExpression(SourceLineNumber sourceLineNumbers, string expression)
2091 {
2092 return Message(sourceLineNumbers, Ids.UnmatchedParenthesisInExpression, "The parenthesis don't match in the expression '{0}'.", expression);
2093 }
2094
2095 public static Message UnmatchedPreprocessorInstruction(SourceLineNumber sourceLineNumbers, string beginInstruction, string endInstruction)
2096 {
2097 return Message(sourceLineNumbers, Ids.UnmatchedPreprocessorInstruction, "Found a <?{1}?> processing instruction without a matching <?{0}?> before it.", beginInstruction, endInstruction);
2098 }
2099
2100 public static Message UnmatchedQuotesInExpression(SourceLineNumber sourceLineNumbers, string expression)
2101 {
2102 return Message(sourceLineNumbers, Ids.UnmatchedQuotesInExpression, "The quotes don't match in the expression '{0}'.", expression);
2103 }
2104
2105 public static Message UnresolvedBindReference(SourceLineNumber sourceLineNumbers, string BindRef)
2106 {
2107 return Message(sourceLineNumbers, Ids.UnresolvedBindReference, "Unresolved bind-time variable {0}.", BindRef);
2108 }
2109
2110 public static Message UnresolvedReference(SourceLineNumber sourceLineNumbers, string symbolName)
2111 {
2112 return Message(sourceLineNumbers, Ids.UnresolvedReference, "The identifier '{0}' could not be found. Ensure you have typed the reference correctly and that all the necessary inputs are provided to the linker.", symbolName);
2113 }
2114
2115 public static Message UnresolvedReference(SourceLineNumber sourceLineNumbers, string symbolName, WixToolset.Data.AccessModifier accessModifier)
2116 {
2117 return Message(sourceLineNumbers, Ids.UnresolvedReference, "The identifier '{0}' is inaccessible due to its protection level.", symbolName, accessModifier);
2118 }
2119
2120 public static Message UnsupportedAllUsersValue(SourceLineNumber sourceLineNumbers, string path, string value)
2121 {
2122 return Message(sourceLineNumbers, Ids.UnsupportedAllUsersValue, "The MSI '{0}' set the ALLUSERS Property to '{0}' which is not supported. Remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute instead.", path, value);
2123 }
2124
2125 public static Message UnsupportedExtensionAttribute(SourceLineNumber sourceLineNumbers, string elementName, string extensionElementName)
2126 {
2127 return Message(sourceLineNumbers, Ids.UnsupportedExtensionAttribute, "The {0} element contains an unsupported extension attribute '{1}'. The {0} element does not currently support extension attributes. Is the {1} attribute using the correct XML namespace?", elementName, extensionElementName);
2128 }
2129
2130 public static Message UnsupportedExtensionElement(SourceLineNumber sourceLineNumbers, string elementName, string extensionElementName)
2131 {
2132 return Message(sourceLineNumbers, Ids.UnsupportedExtensionElement, "The {0} element contains an unsupported extension element '{1}'. The {0} element does not currently support extension elements. Is the {1} element using the correct XML namespace?", elementName, extensionElementName);
2133 }
2134
2135 public static Message UnsupportedPlatformForElement(SourceLineNumber sourceLineNumbers, string platform, string elementName)
2136 {
2137 return Message(sourceLineNumbers, Ids.UnsupportedPlatformForElement, "The element {1} does not support platform '{0}'. Consider removing the element or using the preprocessor to conditionally include the element based on the platform.", platform, elementName);
2138 }
2139
2140 public static Message ValidationError(SourceLineNumber sourceLineNumbers, string ice, string message)
2141 {
2142 return Message(sourceLineNumbers, Ids.ValidationError, "{0}: {1}", ice, message);
2143 }
2144
2145 public static Message ValidationFailedDueToInvalidPackage()
2146 {
2147 return Message(null, Ids.ValidationFailedDueToInvalidPackage, "Failed to open package for validation. The most common cause of this error is validating an x64 package on an x86 system. To fix this error, run validation on an x64 system or disable validation.");
2148 }
2149
2150 public static Message ValidationFailedDueToLowMsiEngine()
2151 {
2152 return Message(null, Ids.ValidationFailedDueToLowMsiEngine, "The package being validated requires a higher version of Windows Installer than is installed on this machine. Validation cannot continue.");
2153 }
2154
2155 public static Message ValidationFailedDueToMultilanguageMergeModule()
2156 {
2157 return Message(null, Ids.ValidationFailedDueToMultilanguageMergeModule, "Failed to open merge module for validation. The most common cause of this error is specifying that the merge module supports multiple languages (using the Package/@Languages attribute) but not including language-specific embedded transforms. To fix this error, make the merge module language-neutral, make it language-specific, embed language transforms as specified in the MSI SDK at http://msdn.microsoft.com/library/aa367799.aspx, or disable validation.");
2158 }
2159
2160 public static Message ValidationFailedToOpenDatabase()
2161 {
2162 return Message(null, Ids.ValidationFailedToOpenDatabase, "Failed to open the database. During validation, this most commonly happens when attempting to open a database using an unsupported code page or a file that is not a valid Windows Installer database. Please use a different code page in Module/@Codepage, Package/@SummaryCodepage, Product/@Codepage, or WixLocalization/@Codepage; or make sure you provide the path to a valid Windows Installer database.");
2163 }
2164
2165 public static Message ValueAndMaskMustBeSameLength(SourceLineNumber sourceLineNumbers)
2166 {
2167 return Message(sourceLineNumbers, Ids.ValueAndMaskMustBeSameLength, "The FileTypeMask/@Value and FileTypeMask/@Mask attributes must be the same length.");
2168 }
2169
2170 public static Message ValueNotSupported(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue)
2171 {
2172 return Message(sourceLineNumbers, Ids.ValueNotSupported, "The {0}/@{1} attribute's value, '{2}, is not supported by the Windows Installer.", elementName, attributeName, attributeValue);
2173 }
2174
2175 public static Message VariableDeclarationCollision(SourceLineNumber sourceLineNumbers, string variableName, string variableValue, string variableCollidingValue)
2176 {
2177 return Message(sourceLineNumbers, Ids.VariableDeclarationCollision, "The variable '{0}' with value '{1}' was previously declared with value '{2}'.", variableName, variableValue, variableCollidingValue);
2178 }
2179
2180 public static Message VersionIndependentProgIdsCannotHaveIcons(SourceLineNumber sourceLineNumbers)
2181 {
2182 return Message(sourceLineNumbers, Ids.VersionIndependentProgIdsCannotHaveIcons, "Version independent ProgIds cannot have Icons. Remove the Icon and/or IconIndex attributes from your ProgId element.");
2183 }
2184
2185 public static Message VersionMismatch(SourceLineNumber sourceLineNumbers, string fileType, string version, string expectedVersion)
2186 {
2187 return Message(sourceLineNumbers, Ids.VersionMismatch, "The {0} file format version {1} is not compatible with the expected {0} file format version {2}.", fileType, version, expectedVersion);
2188 }
2189
2190 public static Message Win32Exception(int nativeErrorCode, string message)
2191 {
2192 return Message(null, Ids.Win32Exception, "An unexpected Win32 exception with error code 0x{0:X} occurred: {1}", nativeErrorCode, message);
2193 }
2194
2195 public static Message Win32Exception(int nativeErrorCode, string file, string message)
2196 {
2197 return Message(null, Ids.Win32Exception, "An unexpected Win32 exception with error code 0x{0:X} occurred while accessing file '{1}': {2}", nativeErrorCode, file, message);
2198 }
2199
2200 public static Message WixFileNotFound(string file)
2201 {
2202 return Message(null, Ids.WixFileNotFound, "The file '{0}' cannot be found.", file);
2203 }
2204
2205 public static Message WixVariableCollision(SourceLineNumber sourceLineNumbers, string variableId)
2206 {
2207 return Message(sourceLineNumbers, Ids.WixVariableCollision, "The WiX variable '{0}' is declared in more than one location. Please remove one of the declarations.", variableId);
2208 }
2209
2210 public static Message WixVariableUnknown(SourceLineNumber sourceLineNumbers, string variableId)
2211 {
2212 return Message(sourceLineNumbers, Ids.WixVariableUnknown, "The WiX variable !(wix.{0}) is unknown. Please ensure the variable is declared on the command line for light.exe, via a WixVariable element, or inline using the syntax !(wix.{0}=some value which doesn't contain parenthesis).", variableId);
2213 }
2214
2215 public static Message WrongFileExtensionForNumberOfInputs(string inputExtension, string input)
2216 {
2217 return Message(null, Ids.WrongFileExtensionForNumberOfInputs, "The extension '{0}' on the input specified '{1}' does not match the number of inputs required to handle an input with this extension. Check if you are missing an input or have too many.", inputExtension, input);
2218 }
2219
2220 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args)
2221 {
2222 return new Message(sourceLineNumber, MessageLevel.Error, (int)id, format, args);
2223 }
2224
2225 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, ResourceManager resourceManager, string resourceName, params object[] args)
2226 {
2227 return new Message(sourceLineNumber, MessageLevel.Error, (int)id, resourceManager, resourceName, args);
2228 }
2229
2230 public enum Ids
2231 {
2232 UnexpectedException = 1,
2233 UnexpectedFileFormat = 2,
2234 CorruptFileFormat = 3,
2235 UnexpectedAttribute = 4,
2236 UnexpectedElement = 5,
2237 IllegalEmptyAttributeValue = 6,
2238 InsufficientVersion = 7,
2239 IllegalIntegerValue = 8,
2240 IllegalGuidValue = 9,
2241 ExpectedAttribute = 10,
2242 SecurePropertyNotUppercase = 11,
2243 SearchPropertyNotUppercase = 12,
2244 StreamNameTooLong = 13,
2245 IllegalIdentifier = 14,
2246 IllegalYesNoValue = 15,
2247 CabCreationFailed = 16,
2248 CabExtractionFailed = 17,
2249 AppIdIncompatibleAdvertiseState = 18,
2250 IllegalAttributeWhenAdvertised = 19,
2251 ConditionExpected = 20,
2252 IllegalAttributeValue = 21,
2253 CustomActionMultipleSources = 22,
2254 CustomActionMultipleTargets = 23,
2255 CustomActionIllegalInnerText = 24,
2256 DirectoryRootWithoutName = 25,
2257 IllegalShortFilename = 26,
2258 IllegalLongFilename = 27,
2259 TableNameTooLong = 28,
2260 FeatureConfigurableDirectoryNotUppercase = 29,
2261 FeatureCannotFavorAndDisallowAdvertise = 30,
2262 FeatureCannotFollowParentAndFavorLocalOrSource = 31,
2263 MediaEmbeddedCabinetNameTooLong = 32,
2264 RegistrySubElementCannotBeRemoved = 33,
2265 RegistryMultipleValuesWithoutMultiString = 34,
2266 IllegalAttributeWithOtherAttribute = 35,
2267 IllegalAttributeWithOtherAttributes = 36,
2268 IllegalAttributeWithoutOtherAttributes = 37,
2269 IllegalAttributeValueWithoutOtherAttribute = 38,
2270 IntegralValueSentinelCollision = 39,
2271 ExampleGuid = 40,
2272 TooManyChildren = 41,
2273 ComponentMultipleKeyPaths = 42,
2274 CabClosureFailed = 43,
2275 ExpectedAttributes = 44,
2276 ExpectedAttributesWithOtherAttribute = 45,
2277 ExpectedAttributesWithoutOtherAttribute = 46,
2278 MissingTypeLibFile = 47,
2279 InvalidDocumentElement = 48,
2280 ExpectedAttributeInElementOrParent = 49,
2281 UnauthorizedAccess = 50,
2282 IllegalModuleExclusionLanguageAttributes = 51,
2283 NoFirstControlSpecified = 52,
2284 NoDataForColumn = 53,
2285 ValueAndMaskMustBeSameLength = 54,
2286 TooManySearchElements = 55,
2287 IllegalAttributeExceptOnElement = 56,
2288 SearchElementRequired = 57,
2289 MultipleIdentifiersFound = 58,
2290 AdvertiseStateMustMatch = 59,
2291 DuplicateContextValue = 60,
2292 RelativePathForRegistryElement = 61,
2293 IllegalAttributeWhenNested = 62,
2294 ExpectedElement = 63,
2295 RegistryRootInvalid = 64,
2296 IllegalYesNoDefaultValue = 65,
2297 IllegalAttributeInMergeModule = 66,
2298 GenericReadNotAllowed = 67,
2299 IllegalAttributeWithInnerText = 68,
2300 SearchElementRequiredWithAttribute = 69,
2301 CannotAuthorSpecialProperties = 70,
2302 NeedSequenceBeforeOrAfter = 72,
2303 ValueNotSupported = 73,
2304 TabbableControlNotAllowedInBillboard = 74,
2305 CheckBoxValueOnlyValidWithCheckBox = 75,
2306 CabFileDoesNotExist = 76,
2307 RadioButtonTypeInconsistent = 77,
2308 RadioButtonBitmapAndIconDisallowed = 78,
2309 IllegalSuppressWarningId = 79,
2310 PreprocessorIllegalForeachVariable = 80,
2311 PreprocessorMissingParameterPrefix = 81,
2312 PreprocessorExtensionForParameterMissing = 82,
2313 CannotFindFile = 83,
2314 BinderFileManagerMissingFile = 84,
2315 InvalidFileName = 85,
2316 ReferenceLoopDetected = 86,
2317 GuidContainsLowercaseLetters = 87,
2318 InvalidDateTimeFormat = 88,
2319 MultipleEntrySections = 89,
2320 MultipleEntrySections2 = 90,
2321 DuplicateSymbol = 91,
2322 DuplicateSymbol2 = 92,
2323 MissingEntrySection = 93,
2324 UnresolvedReference = 94,
2325 MultiplePrimaryReferences = 95,
2326 ComponentReferencedTwice = 96,
2327 DuplicateModuleFileIdentifier = 97,
2328 DuplicateModuleCaseInsensitiveFileIdentifier = 98,
2329 ImplicitComponentKeyPath = 99,
2330 DuplicateLocalizationIdentifier = 100,
2331 LocalizationVariableUnknown = 102,
2332 FileNotFound = 103,
2333 InvalidXml = 104,
2334 ProgIdNestedTooDeep = 105,
2335 CanNotHaveTwoParents = 106,
2336 SchemaValidationFailed = 107,
2337 IllegalVersionValue = 108,
2338 CustomTableNameTooLong = 109,
2339 CustomTableIllegalColumnWidth = 110,
2340 CustomTableMissingPrimaryKey = 111,
2341 TypeSpecificationForExtensionRequired = 113,
2342 FilePathRequired = 114,
2343 DirectoryPathRequired = 115,
2344 FileOrDirectoryPathRequired = 116,
2345 PathCannotContainQuote = 117,
2346 AdditionalArgumentUnexpected = 118,
2347 RegistryNameValueIncorrect = 119,
2348 FamilyNameTooLong = 120,
2349 IllegalFamilyName = 121,
2350 IllegalLongValue = 122,
2351 IntegralValueOutOfRange = 123,
2352 DuplicateExtensionXmlSchemaNamespace = 125,
2353 DuplicateExtensionTable = 126,
2354 DuplicateExtensionPreprocessorType = 127,
2355 FileInUse = 128,
2356 CannotOpenMergeModule = 129,
2357 DuplicatePrimaryKey = 130,
2358 FileIdentifierNotFound = 131,
2359 InvalidAssemblyFile = 132,
2360 ExpectedEndElement = 133,
2361 IllegalCodepage = 134,
2362 ExpectedMediaCabinet = 135,
2363 InvalidIdt = 136,
2364 InvalidSequenceTable = 137,
2365 ExpectedDirectory = 138,
2366 ComponentExpectedFeature = 139,
2367 RecursiveAction = 140,
2368 VersionMismatch = 141,
2369 UnexpectedContentNode = 142,
2370 UnexpectedColumnCount = 143,
2371 InvalidExtension = 144,
2372 InvalidSubExpression = 145,
2373 UnmatchedPreprocessorInstruction = 146,
2374 NonterminatedPreprocessorInstruction = 147,
2375 ExpectedExpressionAfterNot = 148,
2376 InvalidPreprocessorVariable = 149,
2377 UndefinedPreprocessorVariable = 150,
2378 IllegalDefineStatement = 151,
2379 VariableDeclarationCollision = 152,
2380 CannotReundefineVariable = 153,
2381 IllegalForeach = 154,
2382 IllegalParentAttributeWhenNested = 155,
2383 ExpectedEndforeach = 156,
2384 UnmatchedQuotesInExpression = 158,
2385 UnmatchedParenthesisInExpression = 159,
2386 ExpectedVariable = 160,
2387 UnexpectedLiteral = 161,
2388 IllegalIntegerInExpression = 162,
2389 UnexpectedPreprocessorOperator = 163,
2390 UnexpectedEmptySubexpression = 164,
2391 UnexpectedCustomTableColumn = 165,
2392 UnknownCustomTableColumnType = 166,
2393 IllegalFileCompressionAttributes = 167,
2394 OverridableActionCollision = 168,
2395 OverridableActionCollision2 = 169,
2396 ActionCollision = 170,
2397 ActionCollision2 = 171,
2398 SuppressNonoverridableAction = 172,
2399 SuppressNonoverridableAction2 = 173,
2400 CustomActionSequencedInModule = 174,
2401 StandardActionRelativelyScheduledInModule = 175,
2402 ActionCircularDependency = 176,
2403 ActionScheduledRelativeToTerminationAction = 177,
2404 ActionScheduledRelativeToTerminationAction2 = 178,
2405 NoUniqueActionSequenceNumber = 179,
2406 NoUniqueActionSequenceNumber2 = 180,
2407 ActionScheduledRelativeToItself = 181,
2408 MissingTableDefinition = 182,
2409 ExpectedRowInPatchCreationPackage = 183,
2410 UnexpectedTableInMergeModule = 184,
2411 UnexpectedTableInPatchCreationPackage = 185,
2412 MergeExcludedModule = 186,
2413 MergeFeatureRequired = 187,
2414 MergeLanguageFailed = 188,
2415 MergeLanguageUnsupported = 189,
2416 TableDecompilationUnimplemented = 190,
2417 CannotDefaultMismatchedAdvertiseStates = 191,
2418 VersionIndependentProgIdsCannotHaveIcons = 192,
2419 IllegalAttributeValueWithOtherAttribute = 193,
2420 InvalidMergeLanguage = 194,
2421 WixVariableCollision = 195,
2422 ExpectedWixVariableValue = 196,
2423 WixVariableUnknown = 197,
2424 IllegalWixVariablePrefix = 198,
2425 InvalidWixXmlNamespace = 199,
2426 UnhandledExtensionElement = 200,
2427 UnhandledExtensionAttribute = 201,
2428 UnsupportedExtensionAttribute = 202,
2429 UnsupportedExtensionElement = 203,
2430 ValidationError = 204,
2431 IllegalRootDirectory = 205,
2432 IllegalTargetDirDefaultDir = 206,
2433 TooManyElements = 207,
2434 ExpectedBinaryCategory = 208,
2435 RootFeatureCannotFollowParent = 209,
2436 FeatureNameTooLong = 210,
2437 SignedEmbeddedCabinet = 211,
2438 ExpectedSignedCabinetName = 212,
2439 IllegalInlineLocVariable = 213,
2440 MergeModuleExpectedFeature = 215,
2441 Win32Exception = 216,
2442 UnexpectedExternalUIMessage = 217,
2443 IllegalCabbingThreadCount = 218,
2444 IllegalEnvironmentVariable = 219,
2445 InvalidKeyColumn = 220,
2446 CollidingModularizationTypes = 221,
2447 CubeFileNotFound = 222,
2448 OpenDatabaseFailed = 223,
2449 OutputTypeMismatch = 224,
2450 RealTableMissingPrimaryKeyColumn = 225,
2451 IllegalColumnName = 226,
2452 NoDifferencesInTransform = 227,
2453 OutputCodepageMismatch = 228,
2454 OutputCodepageMismatch2 = 229,
2455 IllegalComponentWithAutoGeneratedGuid = 230,
2456 IllegalPathForGeneratedComponentGuid = 231,
2457 IllegalTerminalServerCustomActionAttributes = 232,
2458 IllegalPropertyCustomActionAttributes = 233,
2459 InvalidPreprocessorFunction = 234,
2460 UndefinedPreprocessorFunction = 235,
2461 PreprocessorExtensionEvaluateFunctionFailed = 236,
2462 PreprocessorExtensionGetVariableValueFailed = 237,
2463 InvalidManifestContent = 238,
2464 InvalidWixTransform = 239,
2465 UnexpectedFileExtension = 240,
2466 UnexpectedTableInPatch = 241,
2467 InvalidProductVersion = 242,
2468 InvalidKeypathChange = 243,
2469 MissingValidatorExtension = 244,
2470 InvalidValidatorMessageType = 245,
2471 PatchWithoutTransforms = 246,
2472 SingleExtensionSupported = 247,
2473 DuplicateTransform = 248,
2474 BaselineRequired = 249,
2475 PreprocessorError = 250,
2476 ExpectedArgument = 251,
2477 PatchWithoutValidTransforms = 252,
2478 ExpectedDecompiler = 253,
2479 ExpectedTableInMergeModule = 254,
2480 UnexpectedElementWithAttributeValue = 255,
2481 ExpectedPatchIdInWixMsp = 256,
2482 ExpectedMediaRowsInWixMsp = 257,
2483 WixFileNotFound = 258,
2484 ExpectedClientPatchIdInWixMsp = 259,
2485 NewRowAddedInTable = 260,
2486 PatchNotRemovable = 261,
2487 PathTooLong = 262,
2488 FileTooLarge = 263,
2489 InvalidPlatformParameter = 264,
2490 InvalidPlatformValue = 265,
2491 IllegalValidationArguments = 266,
2492 OrphanedComponent = 267,
2493 IllegalCommandlineArgumentCombination = 268,
2494 ProductCodeInvalidForTransform = 269,
2495 InsertInvalidSequenceActionOrder = 270,
2496 InsertSequenceNoSpace = 271,
2497 MissingManifestForWin32Assembly = 272,
2498 UnableToOpenModule = 273,
2499 ExpectedAttributeWhenElementNotUnderElement = 274,
2500 IllegalIdentifierLooksLikeFormatted = 275,
2501 IllegalCodepageAttribute = 276,
2502 IllegalCompressionLevel = 277,
2503 TransformSchemaMismatch = 278,
2504 DatabaseSchemaMismatch = 279,
2505 ExpectedDirectoryGotFile = 280,
2506 ExpectedFileGotDirectory = 281,
2507 GacAssemblyNoStrongName = 282,
2508 FileWriteError = 283,
2509 InvalidCommandLineFileName = 284,
2510 ExpectedParentWithAttribute = 285,
2511 IllegalWarningIdAsError = 286,
2512 ExpectedAttributeOrElement = 287,
2513 DuplicateVariableDefinition = 288,
2514 InvalidVariableDefinition = 289,
2515 DuplicateCabinetName = 290,
2516 DuplicateCabinetName2 = 291,
2517 InvalidAddedFileRowWithoutSequence = 292,
2518 DuplicateFileId = 293,
2519 FullTempDirectory = 294,
2520 CreateCabAddFileFailed = 296,
2521 CreateCabInsufficientDiskSpace = 297,
2522 UnresolvedBindReference = 298,
2523 GACAssemblyIdentityWarning = 299,
2524 IllegalCharactersInPath = 300,
2525 ValidationFailedToOpenDatabase = 301,
2526 MustSpecifyOutputWithMoreThanOneInput = 302,
2527 IllegalSearchIdForParentDepth = 303,
2528 IdentifierTooLongError = 304,
2529 InvalidRemoveComponent = 305,
2530 FinishCabFailed = 306,
2531 InvalidExtensionType = 307,
2532 ValidationFailedDueToMultilanguageMergeModule = 309,
2533 ValidationFailedDueToInvalidPackage = 310,
2534 InvalidStringForCodepage = 311,
2535 InvalidEmbeddedUIFileName = 312,
2536 UniqueFileSearchIdRequired = 313,
2537 IllegalAttributeValueWhenNested = 314,
2538 AdminImageRequired = 315,
2539 SamePatchBaselineId = 316,
2540 SameFileIdDifferentSource = 317,
2541 HarvestSourceNotSpecified = 318,
2542 OutputTargetNotSpecified = 319,
2543 DuplicateCommandLineOptionInExtension = 320,
2544 HarvestTypeNotFound = 321,
2545 BothUpgradeCodesRequired = 322,
2546 IllegalBinderClassName = 323,
2547 SpecifiedBinderNotFound = 324,
2548 CannotLoadBinderFileManager = 325,
2549 CannotLoadLinkerExtension = 326,
2550 UnableToGetAuthenticodeCertOfFile = 327,
2551 UnableToGetAuthenticodeCertOfFileDownlevelOS = 328,
2552 ReadOnlyOutputFile = 329,
2553 CannotDefaultComponentId = 330,
2554 ParentElementAttributeRequired = 331,
2555 PreprocessorExtensionPragmaFailed = 333,
2556 InvalidPreprocessorPragma = 334,
2557 SmokeUnknownFileExtension = 335,
2558 SmokeUnsupportedFileExtension = 336,
2559 SmokeMalformedPath = 337,
2560 InvalidStubExe = 338,
2561 StubMissingWixburnSection = 339,
2562 StubWixburnSectionTooSmall = 340,
2563 MissingBundleInformation = 341,
2564 UnexpectedGroupChild = 342,
2565 OrderingReferenceLoopDetected = 343,
2566 IdentifierNotFound = 344,
2567 MergePlatformMismatch = 345,
2568 IllegalRelativeLongFilename = 346,
2569 IllegalAttributeValueWithLegalList = 347,
2570 IllegalAttributeValueWithIllegalList = 348,
2571 InvalidSummaryInfoCodePage = 349,
2572 ValidationFailedDueToLowMsiEngine = 350,
2573 DuplicateSourcesForOutput = 351,
2574 UnableToReadPackageInformation = 352,
2575 MultipleFilesMatchedWithOutputSpecification = 353,
2576 InvalidBundle = 354,
2577 BundleTooNew = 355,
2578 WrongFileExtensionForNumberOfInputs = 356,
2579 MediaTableCollision = 357,
2580 InvalidCabinetTemplate = 358,
2581 MaximumUncompressedMediaSizeTooLarge = 359,
2582 CatalogVerificationFailed = 360,
2583 CatalogFileHashFailed = 361,
2584 ReservedNamespaceViolation = 362,
2585 PerUserButAllUsersEquals1 = 363,
2586 UnsupportedAllUsersValue = 364,
2587 DisallowedMsiProperty = 365,
2588 MissingOrInvalidModuleInstallerVersion = 366,
2589 IllegalGeneratedGuidComponentUnversionedKeypath = 367,
2590 IllegalGeneratedGuidComponentVersionedNonkeypath = 368,
2591 DuplicateComponentGuids = 369,
2592 DuplicateProviderDependencyKey = 370,
2593 MissingDependencyVersion = 371,
2594 UnexpectedElementWithAttribute = 372,
2595 ExpectedAttributeWithElement = 373,
2596 DuplicatedUiLocalization = 374,
2597 MaximumCabinetSizeForLargeFileSplittingTooLarge = 375,
2598 SplitCabinetCopyRegistrationFailed = 376,
2599 SplitCabinetNameCollision = 377,
2600 SplitCabinetInsertionFailed = 378,
2601 InvalidPreprocessorFunctionAutoVersion = 379,
2602 InvalidModuleOrBundleVersion = 380,
2603 UnsupportedPlatformForElement = 381,
2604 MissingMedia = 382,
2605 RemotePayloadUnsupported = 383,
2606 IllegalYesNoAlwaysValue = 384,
2607 TooDeeplyIncluded = 385,
2608 TooManyColumnsInRealTable = 386,
2609 InlineDirectorySyntaxRequiresPath = 387,
2610 InsecureBundleFilename = 388,
2611 PayloadMustBeRelativeToCache = 389,
2612 MsiTransactionX86BeforeX64 = 390,
2613 }
2614 }
2615}
diff --git a/src/WixToolset.Data/IMessageHandler.cs b/src/WixToolset.Data/IMessageHandler.cs
deleted file mode 100644
index 5332fe4a..00000000
--- a/src/WixToolset.Data/IMessageHandler.cs
+++ /dev/null
@@ -1,18 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6
7 /// <summary>
8 /// Interface for handling messages (error/warning/verbose).
9 /// </summary>
10 public interface IMessageHandler
11 {
12 /// <summary>
13 /// Sends a message with the given arguments.
14 /// </summary>
15 /// <param name="e">Message arguments.</param>
16 void OnMessage(MessageEventArgs e);
17 }
18}
diff --git a/src/WixToolset.Data/Intermediate.cs b/src/WixToolset.Data/Intermediate.cs
index 81a97151..a23cc091 100644
--- a/src/WixToolset.Data/Intermediate.cs
+++ b/src/WixToolset.Data/Intermediate.cs
@@ -244,7 +244,7 @@ namespace WixToolset.Data
244 244
245 if (!Version.TryParse(versionJson, out var version) || !Intermediate.CurrentVersion.Equals(version)) 245 if (!Version.TryParse(versionJson, out var version) || !Intermediate.CurrentVersion.Equals(version))
246 { 246 {
247 throw new WixException(WixDataErrors.VersionMismatch(SourceLineNumber.CreateFromUri(baseUri.AbsoluteUri), "intermediate", versionJson, Intermediate.CurrentVersion.ToString())); 247 throw new WixException(ErrorMessages.VersionMismatch(SourceLineNumber.CreateFromUri(baseUri.AbsoluteUri), "intermediate", versionJson, Intermediate.CurrentVersion.ToString()));
248 } 248 }
249 } 249 }
250 250
diff --git a/src/WixToolset.Data/Localization.cs b/src/WixToolset.Data/Localization.cs
index a5e2ba14..10eff2e1 100644
--- a/src/WixToolset.Data/Localization.cs
+++ b/src/WixToolset.Data/Localization.cs
@@ -69,7 +69,7 @@ namespace WixToolset.Data
69 } 69 }
70 else if (!wixVariableRow.Overridable) 70 else if (!wixVariableRow.Overridable)
71 { 71 {
72 throw new WixException(WixDataErrors.DuplicateLocalizationIdentifier(wixVariableRow.SourceLineNumbers, wixVariableRow.Id)); 72 throw new WixException(ErrorMessages.DuplicateLocalizationIdentifier(wixVariableRow.SourceLineNumbers, wixVariableRow.Id));
73 } 73 }
74 } 74 }
75 } 75 }
diff --git a/src/WixToolset.Data/Message.cs b/src/WixToolset.Data/Message.cs
new file mode 100644
index 00000000..6cd4105c
--- /dev/null
+++ b/src/WixToolset.Data/Message.cs
@@ -0,0 +1,110 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6 using System.Resources;
7
8 /// <summary>
9 /// Event args for message events.
10 /// </summary>
11 public class Message
12 {
13 /// <summary>
14 /// Creates a new Message using a format string.
15 /// </summary>
16 /// <param name="sourceLineNumbers">Source line numbers for the message.</param>
17 /// <param name="level">Message level.</param>
18 /// <param name="id">Id for the message.</param>
19 /// <param name="format">Format .</param>
20 /// <param name="messageArgs">Arguments for the format string.</param>
21 public Message(SourceLineNumber sourceLineNumbers, MessageLevel level, int id, string format, params object[] messageArgs)
22 {
23 this.SourceLineNumbers = sourceLineNumbers;
24 this.Level = level;
25 this.Id = id;
26 this.ResourceNameOrFormat = format;
27 this.MessageArgs = messageArgs;
28 }
29
30 /// <summary>
31 /// Creates a new Message using a format string from a resource manager.
32 /// </summary>
33 /// <param name="sourceLineNumbers">Source line numbers for the message.</param>
34 /// <param name="level">Message level.</param>
35 /// <param name="id">Id for the message.</param>
36 /// <param name="resourceManager">Resource manager.</param>
37 /// <param name="resourceName">Name of the resource.</param>
38 /// <param name="messageArgs">Arguments for the format string.</param>
39 public Message(SourceLineNumber sourceLineNumbers, MessageLevel level, int id, ResourceManager resourceManager, string resourceName, params object[] messageArgs)
40 {
41 this.SourceLineNumbers = sourceLineNumbers;
42 this.Level = level;
43 this.Id = id;
44 this.ResourceManager = resourceManager;
45 this.ResourceNameOrFormat = resourceName;
46 this.MessageArgs = messageArgs;
47 }
48
49 /// <summary>
50 /// Gets the source line numbers.
51 /// </summary>
52 /// <value>The source line numbers.</value>
53 public SourceLineNumber SourceLineNumbers { get; }
54
55 /// <summary>
56 /// Gets the Id for the message.
57 /// </summary>
58 /// <value>The Id for the message.</value>
59 public int Id { get; }
60
61 /// <summary>
62 /// Gets the resource manager for this event args.
63 /// </summary>
64 /// <value>The resource manager for this event args.</value>
65 public ResourceManager ResourceManager { get; }
66
67 /// <summary>
68 /// Gets the name of the resource or format string if no resource manager was provided.
69 /// </summary>
70 /// <value>The name of the resource or format string.</value>
71 public string ResourceNameOrFormat { get; }
72
73 /// <summary>
74 /// Gets or sets the <see cref="MessageLevel"/> for the message.
75 /// </summary>
76 /// <value>The <see cref="MessageLevel"/> for the message.</value>
77 public MessageLevel Level { get; private set; }
78
79 /// <summary>
80 /// Gets the arguments for the format string.
81 /// </summary>
82 /// <value>The arguments for the format string.</value>
83 public object[] MessageArgs { get; }
84
85 /// <summary>
86 /// Makes a warning an error.
87 /// </summary>
88 public void ElevateWarningToError()
89 {
90 if (this.Level != MessageLevel.Warning)
91 {
92 throw new InvalidOperationException($"Cannot elevate {this.Level.ToString()} Message to an Error. Only Warning Messages can be elevated to an Error.");
93 }
94
95 this.Level = MessageLevel.Error;
96 }
97
98 public override string ToString()
99 {
100 if (this.ResourceManager == null)
101 {
102 return String.Format(this.ResourceNameOrFormat, this.MessageArgs);
103 }
104 else
105 {
106 return String.Format(this.ResourceManager.GetString(this.ResourceNameOrFormat), this.MessageArgs);
107 }
108 }
109 }
110}
diff --git a/src/WixToolset.Data/MessageEventArgs.cs b/src/WixToolset.Data/MessageEventArgs.cs
deleted file mode 100644
index 472b5e95..00000000
--- a/src/WixToolset.Data/MessageEventArgs.cs
+++ /dev/null
@@ -1,176 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6 using System.Collections.Generic;
7 using System.Diagnostics.CodeAnalysis;
8 using System.Globalization;
9 using System.Resources;
10 using System.Text;
11
12 /// <summary>
13 /// Event args for message events.
14 /// </summary>
15 public abstract class MessageEventArgs : EventArgs
16 {
17 private SourceLineNumber sourceLineNumbers;
18 private int id;
19 private string resourceName;
20 private object[] messageArgs;
21 private MessageLevel level;
22
23 /// <summary>
24 /// Creates a new MessageEventArgs.
25 /// </summary>
26 /// <param name="sourceLineNumbers">Source line numbers for the message.</param>
27 /// <param name="id">Id for the message.</param>
28 /// <param name="resourceName">Name of the resource.</param>
29 /// <param name="messageArgs">Arguments for the format string.</param>
30 protected MessageEventArgs(SourceLineNumber sourceLineNumbers, int id, string resourceName, params object[] messageArgs)
31 {
32 this.sourceLineNumbers = sourceLineNumbers;
33 this.id = id;
34 this.resourceName = resourceName;
35 this.messageArgs = messageArgs;
36
37 // Default to Nothing, since the default MessageEventArgs container
38 // classes define a level, and only WixErrorEventArgs previously
39 // determined that an error occured without throwing.
40 this.level = MessageLevel.Nothing;
41 }
42
43 /// <summary>
44 /// Gets the resource manager for this event args.
45 /// </summary>
46 /// <value>The resource manager for this event args.</value>
47 public ResourceManager ResourceManager { get; protected set; }
48
49 /// <summary>
50 /// Gets the source line numbers.
51 /// </summary>
52 /// <value>The source line numbers.</value>
53 public SourceLineNumber SourceLineNumbers
54 {
55 get { return this.sourceLineNumbers; }
56 }
57
58 /// <summary>
59 /// Gets the Id for the message.
60 /// </summary>
61 /// <value>The Id for the message.</value>
62 public int Id
63 {
64 get { return this.id; }
65 }
66
67 /// <summary>
68 /// Gets the name of the resource.
69 /// </summary>
70 /// <value>The name of the resource.</value>
71 public string ResourceName
72 {
73 get { return this.resourceName; }
74 }
75
76 /// <summary>
77 /// Gets or sets the <see cref="MessageLevel"/> for the message.
78 /// </summary>
79 /// <value>The <see cref="MessageLevel"/> for the message.</value>
80 /// <remarks>
81 /// The <see cref="MessageHandler"/> may set the level differently
82 /// depending on suppression and escalation of different message levels.
83 /// Message handlers should check the level to determine if an error
84 /// or other message level was raised.
85 /// </remarks>
86 public MessageLevel Level
87 {
88 get { return this.level; }
89 set { this.level = value; }
90 }
91
92 /// <summary>
93 /// Gets the arguments for the format string.
94 /// </summary>
95 /// <value>The arguments for the format string.</value>
96 [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
97 public object[] MessageArgs
98 {
99 get { return this.messageArgs; }
100 }
101
102 /// <summary>
103 /// Creates a properly formatted message string.
104 /// </summary>
105 /// <param name="shortAppName">Optional short form of the application name that generated the message. Defaults to "WIX" if unspecified.</param>
106 /// <param name="longAppName">Optional long form of the application name that generated the message. Defaults to "WIX" if unspecified. Will be overridden by the processed filename if one was provided.</param>
107 /// <param name="overrideLevel">Optional override level of the message, as generated by MessageLevel(MessageEventArgs).</param>
108 /// <returns>String containing the formatted message.</returns>
109 public string GenerateMessageString(string shortAppName = null, string longAppName = null, MessageLevel overrideLevel = MessageLevel.Nothing)
110 {
111 MessageLevel messageLevel = MessageLevel.Nothing == overrideLevel ? this.Level : overrideLevel;
112
113 List<string> fileNames = new List<string>();
114 string errorFileName = String.IsNullOrEmpty(longAppName) ? "WIX" : longAppName;
115 for (SourceLineNumber sln = this.SourceLineNumbers; null != sln; sln = sln.Parent)
116 {
117 if (String.IsNullOrEmpty(sln.FileName))
118 {
119 continue;
120 }
121 else if (sln.LineNumber.HasValue)
122 {
123 if (0 == fileNames.Count)
124 {
125 errorFileName = String.Format(CultureInfo.CurrentUICulture, WixDataStrings.Format_FirstLineNumber, sln.FileName, sln.LineNumber);
126 }
127
128 fileNames.Add(String.Format(CultureInfo.CurrentUICulture, WixDataStrings.Format_LineNumber, sln.FileName, sln.LineNumber));
129 }
130 else
131 {
132 if (0 == fileNames.Count)
133 {
134 errorFileName = sln.FileName;
135 }
136
137 fileNames.Add(sln.FileName);
138 }
139 }
140
141 string messageType = String.Empty;
142 if (MessageLevel.Warning == messageLevel)
143 {
144 messageType = WixDataStrings.MessageType_Warning;
145 }
146 else if (MessageLevel.Error == messageLevel)
147 {
148 messageType = WixDataStrings.MessageType_Error;
149 }
150
151 StringBuilder messageBuilder = new StringBuilder();
152 string message = String.Format(CultureInfo.InvariantCulture, this.ResourceManager.GetString(this.ResourceName), this.MessageArgs);
153 if (MessageLevel.Information == messageLevel || MessageLevel.Verbose == messageLevel)
154 {
155 messageBuilder.AppendFormat(WixDataStrings.Format_InfoMessage, message);
156 }
157 else
158 {
159 messageBuilder.AppendFormat(WixDataStrings.Format_NonInfoMessage, errorFileName, messageType, String.IsNullOrEmpty(shortAppName) ? "WIX" : shortAppName, this.Id, message);
160 }
161
162 if (1 < fileNames.Count)
163 {
164 messageBuilder.AppendFormat(WixDataStrings.INF_SourceTrace, Environment.NewLine);
165 foreach (string fileName in fileNames)
166 {
167 messageBuilder.AppendFormat(WixDataStrings.INF_SourceTraceLocation, fileName, Environment.NewLine);
168 }
169
170 messageBuilder.Append(Environment.NewLine);
171 }
172
173 return messageBuilder.ToString();
174 }
175 }
176}
diff --git a/src/WixToolset.Data/Messaging.cs b/src/WixToolset.Data/Messaging.cs
deleted file mode 100644
index de2cdcfe..00000000
--- a/src/WixToolset.Data/Messaging.cs
+++ /dev/null
@@ -1,173 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6 using System.Collections.Generic;
7
8 public class Messaging : IMessageHandler
9 {
10 private static readonly Messaging instance = new Messaging();
11
12 private HashSet<int> suppressedWarnings = new HashSet<int>();
13 private HashSet<int> warningsAsErrors = new HashSet<int>();
14 private string longAppName;
15 private string shortAppName;
16
17 static Messaging()
18 {
19 }
20
21 private Messaging()
22 {
23 }
24
25 public static Messaging Instance { get { return Messaging.instance; } }
26
27 /// <summary>
28 /// Event fired when messages are to be displayed.
29 /// </summary>
30 public event DisplayEventHandler Display;
31
32 /// <summary>
33 /// Gets a bool indicating whether an error has been found.
34 /// </summary>
35 /// <value>A bool indicating whether an error has been found.</value>
36 public bool EncounteredError { get; private set; }
37
38 /// <summary>
39 /// Gets the last error code encountered during messaging.
40 /// </summary>
41 /// <value>The exit code for the process.</value>
42 public int LastErrorNumber { get; private set; }
43
44 /// <summary>
45 /// Gets or sets the option to show verbose messages.
46 /// </summary>
47 /// <value>The option to show verbose messages.</value>
48 public bool ShowVerboseMessages { get; set; }
49
50 /// <summary>
51 /// Gets or sets the option to suppress all warning messages.
52 /// </summary>
53 /// <value>The option to suppress all warning messages.</value>
54 public bool SuppressAllWarnings { get; set; }
55
56 /// <summary>
57 /// Gets and sets the option to treat warnings as errors.
58 /// </summary>
59 /// <value>The option to treat warnings as errors.</value>
60 public bool WarningsAsError { get; set; }
61
62 /// <summary>
63 /// Implements IMessageHandler to display error messages.
64 /// </summary>
65 /// <param name="mea">Message event arguments.</param>
66 public void OnMessage(MessageEventArgs mea)
67 {
68 MessageLevel messageLevel = this.CalculateMessageLevel(mea);
69
70 if (MessageLevel.Nothing == messageLevel)
71 {
72 return;
73 }
74 else if (MessageLevel.Error == messageLevel)
75 {
76 this.EncounteredError = true;
77 this.LastErrorNumber = mea.Id;
78 }
79
80 if (null != this.Display)
81 {
82 string message = mea.GenerateMessageString(this.shortAppName, this.longAppName, messageLevel);
83 if (!String.IsNullOrEmpty(message))
84 {
85 this.Display(this, new DisplayEventArgs() { Level = messageLevel, Message = message });
86 }
87 }
88 else if (MessageLevel.Error == mea.Level)
89 {
90 throw new WixException(mea);
91 }
92 }
93
94 /// <summary>
95 /// Sets the app names.
96 /// </summary>
97 /// <param name="shortName">Short application name; usually 4 uppercase characters.</param>
98 /// <param name="longName">Long application name; usually the executable name.</param>
99 public Messaging InitializeAppName(string shortName, string longName)
100 {
101 this.EncounteredError = false;
102 this.LastErrorNumber = 0;
103
104 this.Display = null;
105 this.ShowVerboseMessages = false;
106 this.SuppressAllWarnings = false;
107 this.WarningsAsError = false;
108 this.suppressedWarnings.Clear();
109 this.warningsAsErrors.Clear();
110
111 this.shortAppName = shortName;
112 this.longAppName = longName;
113
114 return this;
115 }
116
117 /// <summary>
118 /// Adds a warning message id to be elevated to an error message.
119 /// </summary>
120 /// <param name="warningNumber">Id of the message to elevate.</param>
121 /// <remarks>
122 /// Suppressed warnings will not be elevated as errors.
123 /// </remarks>
124 public void ElevateWarningMessage(int warningNumber)
125 {
126 this.warningsAsErrors.Add(warningNumber);
127 }
128
129 /// <summary>
130 /// Adds a warning message id to be suppressed in message output.
131 /// </summary>
132 /// <param name="warningNumber">Id of the message to suppress.</param>
133 /// <remarks>
134 /// Suppressed warnings will not be elevated as errors.
135 /// </remarks>
136 public void SuppressWarningMessage(int warningNumber)
137 {
138 this.suppressedWarnings.Add(warningNumber);
139 }
140
141 /// <summary>
142 /// Determines the level of this message, when taking into account warning-as-error,
143 /// warning level, verbosity level and message suppressed by the caller.
144 /// </summary>
145 /// <param name="mea">Event arguments for the message.</param>
146 /// <returns>MessageLevel representing the level of this message.</returns>
147 private MessageLevel CalculateMessageLevel(MessageEventArgs mea)
148 {
149 MessageLevel messageLevel = mea.Level;
150
151 if (MessageLevel.Verbose == messageLevel)
152 {
153 if (!this.ShowVerboseMessages)
154 {
155 messageLevel = MessageLevel.Nothing;
156 }
157 }
158 else if (MessageLevel.Warning == messageLevel)
159 {
160 if (this.SuppressAllWarnings || this.suppressedWarnings.Contains(mea.Id))
161 {
162 messageLevel = MessageLevel.Nothing;
163 }
164 else if (this.WarningsAsError || this.warningsAsErrors.Contains(mea.Id))
165 {
166 messageLevel = MessageLevel.Error;
167 }
168 }
169
170 return messageLevel;
171 }
172 }
173}
diff --git a/src/WixToolset.Data/Data/Xsd/wix.cs b/src/WixToolset.Data/Serialize/wix.cs
index 3ff83699..3ff83699 100644
--- a/src/WixToolset.Data/Data/Xsd/wix.cs
+++ b/src/WixToolset.Data/Serialize/wix.cs
diff --git a/src/WixToolset.Data/Symbol.cs b/src/WixToolset.Data/Symbol.cs
index df2b5aeb..8bcdd4f0 100644
--- a/src/WixToolset.Data/Symbol.cs
+++ b/src/WixToolset.Data/Symbol.cs
@@ -29,25 +29,25 @@ namespace WixToolset.Data
29 /// Gets the accessibility of the symbol which is a direct reflection of the accessibility of the row's accessibility. 29 /// Gets the accessibility of the symbol which is a direct reflection of the accessibility of the row's accessibility.
30 /// </summary> 30 /// </summary>
31 /// <value>Accessbility of the symbol.</value> 31 /// <value>Accessbility of the symbol.</value>
32 public AccessModifier Access { get { return this.Row.Id.Access; } } 32 public AccessModifier Access => this.Row.Id.Access;
33 33
34 /// <summary> 34 /// <summary>
35 /// Gets the name of the symbol. 35 /// Gets the name of the symbol.
36 /// </summary> 36 /// </summary>
37 /// <value>Name of the symbol.</value> 37 /// <value>Name of the symbol.</value>
38 public string Name { get; private set; } 38 public string Name { get; }
39 39
40 /// <summary> 40 /// <summary>
41 /// Gets the row for this symbol. 41 /// Gets the row for this symbol.
42 /// </summary> 42 /// </summary>
43 /// <value>Row for this symbol.</value> 43 /// <value>Row for this symbol.</value>
44 public IntermediateTuple Row { get; private set; } 44 public IntermediateTuple Row { get; }
45 45
46 /// <summary> 46 /// <summary>
47 /// Gets the section for the symbol. 47 /// Gets the section for the symbol.
48 /// </summary> 48 /// </summary>
49 /// <value>Section for the symbol.</value> 49 /// <value>Section for the symbol.</value>
50 public IntermediateSection Section { get; private set; } //{ get { return this.Row.Section; } } 50 public IntermediateSection Section { get; }
51 51
52 /// <summary> 52 /// <summary>
53 /// Gets any duplicates of this symbol that are possible conflicts. 53 /// Gets any duplicates of this symbol that are possible conflicts.
diff --git a/src/WixToolset.Data/Tuples/FileTuple.cs b/src/WixToolset.Data/Tuples/FileTuple.cs
index 6c184b63..2f283406 100644
--- a/src/WixToolset.Data/Tuples/FileTuple.cs
+++ b/src/WixToolset.Data/Tuples/FileTuple.cs
@@ -17,12 +17,12 @@ namespace WixToolset.Data
17 new IntermediateFieldDefinition(nameof(FileTupleFields.FileSize), IntermediateFieldType.Number), 17 new IntermediateFieldDefinition(nameof(FileTupleFields.FileSize), IntermediateFieldType.Number),
18 new IntermediateFieldDefinition(nameof(FileTupleFields.Version), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(FileTupleFields.Version), IntermediateFieldType.String),
19 new IntermediateFieldDefinition(nameof(FileTupleFields.Language), IntermediateFieldType.String), 19 new IntermediateFieldDefinition(nameof(FileTupleFields.Language), IntermediateFieldType.String),
20 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.ReadOnly), IntermediateFieldType.Bool), 20 new IntermediateFieldDefinition(nameof(FileTupleFields.ReadOnly), IntermediateFieldType.Bool),
21 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Hidden), IntermediateFieldType.Bool), 21 new IntermediateFieldDefinition(nameof(FileTupleFields.Hidden), IntermediateFieldType.Bool),
22 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.System), IntermediateFieldType.Bool), 22 new IntermediateFieldDefinition(nameof(FileTupleFields.System), IntermediateFieldType.Bool),
23 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Vital), IntermediateFieldType.Bool), 23 new IntermediateFieldDefinition(nameof(FileTupleFields.Vital), IntermediateFieldType.Bool),
24 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Checksum), IntermediateFieldType.Bool), 24 new IntermediateFieldDefinition(nameof(FileTupleFields.Checksum), IntermediateFieldType.Bool),
25 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Compressed), IntermediateFieldType.Bool), 25 new IntermediateFieldDefinition(nameof(FileTupleFields.Compressed), IntermediateFieldType.Bool),
26 }, 26 },
27 typeof(FileTuple)); 27 typeof(FileTuple));
28 } 28 }
diff --git a/src/WixToolset.Data/Tuples/_ByHandComponentTuple.cs b/src/WixToolset.Data/Tuples/_ByHandComponentTuple.cs
deleted file mode 100644
index 0e8fe8e7..00000000
--- a/src/WixToolset.Data/Tuples/_ByHandComponentTuple.cs
+++ /dev/null
@@ -1,55 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using WixToolset.Data.Tuples;
6
7 public static partial class TupleDefinitions
8 {
9 public static readonly IntermediateTupleDefinition ComponentOriginal = new IntermediateTupleDefinition(TupleDefinitionType.Component, new[]
10 {
11 new IntermediateFieldDefinition("Guid", IntermediateFieldType.String),
12 new IntermediateFieldDefinition("Directory", IntermediateFieldType.String),
13 new IntermediateFieldDefinition("Condition", IntermediateFieldType.String),
14 new IntermediateFieldDefinition("KeyPath", IntermediateFieldType.String),
15 new IntermediateFieldDefinition("LocalOnly", IntermediateFieldType.Bool),
16 new IntermediateFieldDefinition("SourceOnly", IntermediateFieldType.Bool),
17 new IntermediateFieldDefinition("Optional", IntermediateFieldType.Bool),
18 new IntermediateFieldDefinition("RegistryKeyPath", IntermediateFieldType.Bool),
19 new IntermediateFieldDefinition("SharedDllRefCount", IntermediateFieldType.Bool),
20 new IntermediateFieldDefinition("Permanent", IntermediateFieldType.Bool),
21 new IntermediateFieldDefinition("OdbcDataSource", IntermediateFieldType.Bool),
22 new IntermediateFieldDefinition("Transitive", IntermediateFieldType.Bool),
23 new IntermediateFieldDefinition("NeverOverwrite", IntermediateFieldType.Bool),
24 new IntermediateFieldDefinition("x64", IntermediateFieldType.Bool),
25 new IntermediateFieldDefinition("DisableRegistryReflection", IntermediateFieldType.Bool),
26 new IntermediateFieldDefinition("UnisntallOnSupersedence", IntermediateFieldType.Bool),
27 new IntermediateFieldDefinition("Shared", IntermediateFieldType.Bool),
28 }, typeof(ComponentTuple));
29 }
30}
31
32namespace WixToolset.Data.Tuples
33{
34 using System;
35
36 public class ComponentTupleOriginal : IntermediateTuple
37 {
38 public ComponentTupleOriginal(IntermediateTupleDefinition definition) : base(definition, null, null)
39 {
40 if (definition != TupleDefinitions.ComponentOriginal) throw new ArgumentException(nameof(definition));
41 }
42
43 public string Guid
44 {
45 get => (string)this[0]?.Value;
46 set => this.Set(0, value);
47 }
48
49 public string Directory
50 {
51 get => (string)this[1]?.Value;
52 set => this.Set(1, value);
53 }
54 }
55}
diff --git a/src/WixToolset.Data/Tuples/_ByHandFileTuple.cs b/src/WixToolset.Data/Tuples/_ByHandFileTuple.cs
deleted file mode 100644
index 79fb31e5..00000000
--- a/src/WixToolset.Data/Tuples/_ByHandFileTuple.cs
+++ /dev/null
@@ -1,88 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using WixToolset.Data.Tuples;
6
7 //public static partial class TupleDefinitionNames
8 //{
9 // public const string File = nameof(TupleDefinitionNames.File);
10 //}
11
12 /*
13 [
14 {
15 "File" : [
16 { "Component" : "string" },
17 { "Name" : "string" },
18 { "Compressed" : "bool" },
19 ]
20 },
21 {
22 "Component": [
23 { "Guid" : "string" },
24 ]
25 },
26 ]
27 */
28
29 public static partial class TupleDefinitions
30 {
31 public static readonly IntermediateTupleDefinition FileOriginal = new IntermediateTupleDefinition(
32 TupleDefinitionType.File,
33 new[]
34 {
35 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Component), IntermediateFieldType.String),
36 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Name), IntermediateFieldType.String),
37 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.ShortName), IntermediateFieldType.String),
38 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Size), IntermediateFieldType.Number),
39 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Version), IntermediateFieldType.String),
40 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Language), IntermediateFieldType.String),
41 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.ReadOnly), IntermediateFieldType.Bool),
42 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Hidden), IntermediateFieldType.Bool),
43 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.System), IntermediateFieldType.Bool),
44 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Vital), IntermediateFieldType.Bool),
45 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Checksum), IntermediateFieldType.Bool),
46 new IntermediateFieldDefinition(nameof(FileTupleFieldsOriginal.Compressed), IntermediateFieldType.Bool),
47 },
48 typeof(FileTuple));
49 }
50}
51
52namespace WixToolset.Data.Tuples
53{
54 public enum FileTupleFieldsOriginal
55 {
56 Component,
57 Name,
58 ShortName,
59 Size,
60 Version,
61 Language,
62 ReadOnly,
63 Hidden,
64 System,
65 Vital,
66 Checksum,
67 Compressed,
68 }
69
70 public class FileTupleOriginal : IntermediateTuple
71 {
72 public FileTupleOriginal() : base(TupleDefinitions.File, null, null)
73 {
74 }
75
76 public FileTupleOriginal(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.File, sourceLineNumber, id)
77 {
78 }
79
80 public IntermediateField this[FileTupleFields index] => this.Fields[(int)index];
81
82 public string Component
83 {
84 get => (string)this.Fields[(int)FileTupleFieldsOriginal.Component]?.Value;
85 set => this.Set((int)FileTupleFieldsOriginal.Component, value);
86 }
87 }
88}
diff --git a/src/WixToolset.Data/Tuples/_ByHandTupleDefinitions.cs b/src/WixToolset.Data/Tuples/_ByHandTupleDefinitions.cs
deleted file mode 100644
index 0cb0feeb..00000000
--- a/src/WixToolset.Data/Tuples/_ByHandTupleDefinitions.cs
+++ /dev/null
@@ -1,55 +0,0 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3#if false
4namespace WixToolset.Data.Tuples
5{
6 using System;
7
8 //public enum TupleDefinitionType
9 //{
10 // Component,
11 // File,
12 // MustBeFromAnExtension,
13 //}
14
15 public static partial class TupleDefinitionsOriginal
16 {
17 public static readonly Version Version = new Version("4.0.0");
18
19 public static IntermediateTupleDefinition ByName(string name)
20 {
21 if (!Enum.TryParse(name, out TupleDefinitionType type) || type == TupleDefinitionType.MustBeFromAnExtension)
22 {
23 return null;
24 }
25
26 return ByType(type);
27 }
28
29 public static IntermediateTupleDefinition ByType(TupleDefinitionType type)
30 {
31 switch (type)
32 {
33 //case TupleDefinitionType.Component:
34 // return TupleDefinitions.Component;
35
36 //case TupleDefinitionType.File:
37 // return TupleDefinitions.File;
38
39 default:
40 throw new ArgumentOutOfRangeException(nameof(type));
41 }
42 }
43
44 //public static T CreateTuple<T>() where T : IntermediateTuple
45 //{
46 // if (TypeToName.TryGetValue(typeof(T), out var name))
47 // {
48 // return ByName(name)?.CreateTuple<T>();
49 // }
50
51 // return null;
52 //}
53 }
54}
55#endif
diff --git a/src/WixToolset.Data/VerboseMessages.cs b/src/WixToolset.Data/VerboseMessages.cs
new file mode 100644
index 00000000..8342aa5e
--- /dev/null
+++ b/src/WixToolset.Data/VerboseMessages.cs
@@ -0,0 +1,234 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6 using System.Resources;
7
8 public static class VerboseMessages
9 {
10 public static Message BinderTempDirLocatedAt(string directory)
11 {
12 return Message(null, Ids.BinderTempDirLocatedAt, "Binder temporary directory located at '{0}'.", directory);
13 }
14
15 public static Message BundleGuid(string bundleGuid)
16 {
17 return Message(null, Ids.BundleGuid, "Assigning bundle GUID '{0}'.", bundleGuid);
18 }
19
20 public static Message CabFile(string fileId, string filePath)
21 {
22 return Message(null, Ids.CabFile, "Cabbing file {0} from '{1}'.", fileId, filePath);
23 }
24
25 public static Message CabinetsSplitInParallel()
26 {
27 return Message(null, Ids.CabinetsSplitInParallel, "Multiple Cabinets with Large Files are splitting simultaneously. This current cabinet is waiting on a shared resource and splitting will resume when the other splitting has completed.");
28 }
29
30 public static Message ConnectingMergeModule(string modulePath, string feature)
31 {
32 return Message(null, Ids.ConnectingMergeModule, "Connecting merge module '{0}' to feature '{1}'.", modulePath, feature);
33 }
34
35 public static Message CopyFile(string sourceFile, string destinationFile)
36 {
37 return Message(null, Ids.CopyFile, "Copying file '{0}' to '{1}'.", sourceFile, destinationFile);
38 }
39
40 public static Message CopyingExternalPayload(string payload, string outputDirectory)
41 {
42 return Message(null, Ids.CopyingExternalPayload, "Copying external payload from '{0}' to '{1}'.", payload, outputDirectory);
43 }
44
45 public static Message CreateCabinet(string cabinet)
46 {
47 return Message(null, Ids.CreateCabinet, "Creating cabinet '{0}'.", cabinet);
48 }
49
50 public static Message CreateDirectory(string directory)
51 {
52 return Message(null, Ids.CreateDirectory, "The directory '{0}' does not exist, creating it now.", directory);
53 }
54
55 public static Message CreatingCabinetFiles()
56 {
57 return Message(null, Ids.CreatingCabinetFiles, "Creating cabinet files.");
58 }
59
60 public static Message DecompilingTable(string tableName)
61 {
62 return Message(null, Ids.DecompilingTable, "Decompiling the {0} table.", tableName);
63 }
64
65 public static Message EmbeddingContainer(string container, long size, string compression)
66 {
67 return Message(null, Ids.EmbeddingContainer, "Embedding container '{0}' ({1} bytes) with '{2}' compression.", container, size, compression);
68 }
69
70 public static Message GeneratingBundle(string bundleFile, string stubFile)
71 {
72 return Message(null, Ids.GeneratingBundle, "Generating Burn bundle '{0}' from stub '{1}'.", bundleFile, stubFile);
73 }
74
75 public static Message GeneratingDatabase()
76 {
77 return Message(null, Ids.GeneratingDatabase, "Generating database.");
78 }
79
80 public static Message ImportBinaryStream(string streamSource)
81 {
82 return Message(null, Ids.ImportBinaryStream, "Importing binary stream from '{0}'.", streamSource);
83 }
84
85 public static Message ImportIconStream(string streamSource)
86 {
87 return Message(null, Ids.ImportIconStream, "Importing icon stream from '{0}'.", streamSource);
88 }
89
90 public static Message ImportingStreams()
91 {
92 return Message(null, Ids.ImportingStreams, "Importing streams.");
93 }
94
95 public static Message LayingOutMedia()
96 {
97 return Message(null, Ids.LayingOutMedia, "Laying out media.");
98 }
99
100 public static Message LoadingPayload(string payload)
101 {
102 return Message(null, Ids.LoadingPayload, "Loading payload '{0}' into container.", payload);
103 }
104
105 public static Message MergingMergeModule(string modulePath)
106 {
107 return Message(null, Ids.MergingMergeModule, "Merging merge module '{0}'.", modulePath);
108 }
109
110 public static Message MergingModules()
111 {
112 return Message(null, Ids.MergingModules, "Merging modules.");
113 }
114
115 public static Message MoveFile(string sourceFile, string destinationFile)
116 {
117 return Message(null, Ids.MoveFile, "Moving file '{0}' to '{1}'.", sourceFile, destinationFile);
118 }
119
120 public static Message OpeningMergeModule(string modulePath, Int16 language)
121 {
122 return Message(null, Ids.OpeningMergeModule, "Opening merge module '{0}' with language '{1}'.", modulePath, language);
123 }
124
125 public static Message RemoveDestinationFile(string destinationFile)
126 {
127 return Message(null, Ids.RemoveDestinationFile, "The destination file '{0}' already exists, attempting to remove it.", destinationFile);
128 }
129
130 public static Message ResequencingMergeModuleFiles()
131 {
132 return Message(null, Ids.ResequencingMergeModuleFiles, "Resequencing files from all merge modules.");
133 }
134
135 public static Message ResolvingManifest(string manifestFile)
136 {
137 return Message(null, Ids.ResolvingManifest, "Generating resolved manifest '{0}'.", manifestFile);
138 }
139
140 public static Message ReusingCabCache(SourceLineNumber sourceLineNumbers, string cabinetName, string source)
141 {
142 return Message(sourceLineNumbers, Ids.ReusingCabCache, "Reusing cabinet '{0}' from cabinet cache path: '{1}'.", cabinetName, source);
143 }
144
145 public static Message SetCabbingThreadCount(string threads)
146 {
147 return Message(null, Ids.SetCabbingThreadCount, "There will be '{0}' threads used to produce CAB files.", threads);
148 }
149
150 public static Message SwitchingToPerUserPackage(SourceLineNumber sourceLineNumbers, string path)
151 {
152 return Message(sourceLineNumbers, Ids.SwitchingToPerUserPackage, "Bundle switching from per-machine to per-user due to addition of per-user package '{0}'.", path);
153 }
154
155 public static Message UpdatingFileInformation()
156 {
157 return Message(null, Ids.UpdatingFileInformation, "Updating file information.");
158 }
159
160 public static Message ValidatedDatabase(long size)
161 {
162 return Message(null, Ids.ValidatedDatabase, "Validation complete: {0:N0}ms elapsed.", size);
163 }
164
165 public static Message ValidatingDatabase()
166 {
167 return Message(null, Ids.ValidatingDatabase, "Validating database.");
168 }
169
170 public static Message ValidationInfo(string ice, string message)
171 {
172 return Message(null, Ids.ValidationInfo, "{0}: {1}", ice, message);
173 }
174
175 public static Message ValidationSerialized()
176 {
177 return Message(null, Ids.ValidationSerialized, "Multiple packages cannot reliably be validated simultaneously. This validation will resume when the other package being validated has completed.");
178 }
179
180 public static Message ValidatorTempDirLocatedAt(string directory)
181 {
182 return Message(null, Ids.ValidatorTempDirLocatedAt, "Validator temporary directory located at '{0}'.", directory);
183 }
184
185 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args)
186 {
187 return new Message(sourceLineNumber, MessageLevel.Verbose, (int)id, format, args);
188 }
189
190 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, ResourceManager resourceManager, string resourceName, params object[] args)
191 {
192 return new Message(sourceLineNumber, MessageLevel.Verbose, (int)id, resourceManager, resourceName, args);
193 }
194
195 public enum Ids
196 {
197 ImportBinaryStream = 9000,
198 ImportIconStream = 9001,
199 CopyFile = 9002,
200 MoveFile = 9003,
201 CreateDirectory = 9004,
202 RemoveDestinationFile = 9005,
203 CabFile = 9006,
204 UpdatingFileInformation = 9007,
205 GeneratingDatabase = 9008,
206 MergingModules = 9009,
207 CreatingCabinetFiles = 9010,
208 ImportingStreams = 9011,
209 LayingOutMedia = 9012,
210 DecompilingTable = 9013,
211 ValidationInfo = 9014,
212 CreateCabinet = 9015,
213 ValidatingDatabase = 9016,
214 OpeningMergeModule = 9017,
215 MergingMergeModule = 9018,
216 ConnectingMergeModule = 9019,
217 ResequencingMergeModuleFiles = 9020,
218 BinderTempDirLocatedAt = 9021,
219 ValidatorTempDirLocatedAt = 9022,
220 GeneratingBundle = 9023,
221 ResolvingManifest = 9024,
222 LoadingPayload = 9025,
223 BundleGuid = 9026,
224 CopyingExternalPayload = 9027,
225 EmbeddingContainer = 9028,
226 SwitchingToPerUserPackage = 9029,
227 SetCabbingThreadCount = 9030,
228 ValidationSerialized = 9031,
229 ReusingCabCache = 9032,
230 CabinetsSplitInParallel = 9033,
231 ValidatedDatabase = 9034,
232 }
233 }
234}
diff --git a/src/WixToolset.Data/WarningMessages.cs b/src/WixToolset.Data/WarningMessages.cs
new file mode 100644
index 00000000..25e189bb
--- /dev/null
+++ b/src/WixToolset.Data/WarningMessages.cs
@@ -0,0 +1,778 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6 using System.Resources;
7
8 public static class WarningMessages
9 {
10 public static Message AccessDeniedForDeletion(SourceLineNumber sourceLineNumbers, string tempFilesBasePath)
11 {
12 return Message(sourceLineNumbers, Ids.AccessDeniedForDeletion, "Access denied; cannot delete '{0}'.", tempFilesBasePath);
13 }
14
15 public static Message AccessDeniedForSettingAttributes(SourceLineNumber sourceLineNumbers, string filePath)
16 {
17 return Message(sourceLineNumbers, Ids.AccessDeniedForSettingAttributes, "Access denied; cannot set attributes on '{0}'.", filePath);
18 }
19
20 public static Message ActionSequenceCollision(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName1, string actionName2, int sequenceNumber)
21 {
22 return Message(sourceLineNumbers, Ids.ActionSequenceCollision, "The {0} table contains actions '{1}' and '{2}' which both have the same sequence number {3}. Please change the sequence number for one of these actions to avoid an ICE warning.", sequenceTableName, actionName1, actionName2, sequenceNumber);
23 }
24
25 public static Message ActionSequenceCollision2(SourceLineNumber sourceLineNumbers)
26 {
27 return Message(sourceLineNumbers, Ids.ActionSequenceCollision2, "The location of the action related to previous warning.");
28 }
29
30 public static Message AllChangesIncludedInPatch(SourceLineNumber sourceLineNumbers)
31 {
32 return Message(sourceLineNumbers, Ids.AllChangesIncludedInPatch, "All changes between the baseline and upgraded packages will be included in the patch except for any change to the ProductCode. The 'All' element is supported primarily for testing purposes and negates the benefits of patch families.");
33 }
34
35 public static Message AmbiguousFileOrDirectoryName(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
36 {
37 return Message(sourceLineNumbers, Ids.AmbiguousFileOrDirectoryName, "The {0}/@{1} attribute's value '{2}' is an ambiguous short name because it ends with a '~' character followed by a number. Under some circumstances, this name could resolve to more than one file or directory name and lead to unpredictable results (for example 'MICROS~1' may correspond to 'Microsoft Shared' or 'Microsoft Foo' or literally 'Micros~1').", elementName, attributeName, value);
38 }
39
40 public static Message AttributeShouldContain(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue, string expectedContains, string otherAttributeName, string otherAttributeValue)
41 {
42 return Message(sourceLineNumbers, Ids.AttributeShouldContain, "The {0}/@{1} attribute value '{2}' should contain '{3}' when the {0}/@{4} attribute is set to '{5}'.", elementName, attributeName, attributeValue, expectedContains, otherAttributeName, otherAttributeValue);
43 }
44
45 public static Message BackslashTerminateInlineDirectorySyntax(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
46 {
47 return Message(sourceLineNumbers, Ids.BackslashTerminateInlineDirectorySyntax, "Backslash terminate the {0}/@{1} attribute's inline directory value '{2}'. A backslash ensures a directory name will not be mistaken for a directory reference.", elementName, attributeName, value);
48 }
49
50 public static Message BadColumnDataIgnored(SourceLineNumber sourceLineNumbers, string value, string tableName, string columnName)
51 {
52 return Message(sourceLineNumbers, Ids.BadColumnDataIgnored, "The value '{0}' in table '{1}', column '{2}' is invalid according to the column's validation information. The decompiled output includes a best-effort representation of this value.", value, tableName, columnName);
53 }
54
55 public static Message CannotUpdateCabCache(SourceLineNumber sourceLineNumbers, string cabinetPath, string detail)
56 {
57 return Message(sourceLineNumbers, Ids.CannotUpdateCabCache, "Cannot update the timestamp of cached cabinet: '{0}'. If the timestamp is not updated, the build may rebuild more than is necessary. To fix the issue, ensure that the cabinet file is writable, error: {1}", cabinetPath, detail);
58 }
59
60 public static Message ColumnsIncompatibleWithInstallerVersion(SourceLineNumber sourceLineNumbers, string tableName, int productInstallerVersion)
61 {
62 return Message(sourceLineNumbers, Ids.ColumnsIncompatibleWithInstallerVersion, "Table '{0}' uses columns that require a version of Windows Installer greater than specified in your package ('{1}').", tableName, productInstallerVersion);
63 }
64
65 public static Message CopyFileFileIdUseless(SourceLineNumber sourceLineNumbers)
66 {
67 return Message(sourceLineNumbers, Ids.CopyFileFileIdUseless, "Since the CopyFile/@FileId attribute was specified but none of the following attributes (DestinationName, DestinationDirectory, DestinationProperty) were specified, this authoring will not do anything.");
68 }
69
70 public static Message DangerousTableInMergeModule(SourceLineNumber sourceLineNumbers, string tableName)
71 {
72 return Message(sourceLineNumbers, Ids.DangerousTableInMergeModule, "Merge modules should not contain the '{0}' table because all merge conflicts cannot avoided. However, this warning can be suppressed if all of the consumers of the Merge Module agree to not duplicate identifiers in the '{0}' table.", tableName);
73 }
74
75 public static Message DecompiledStandardActionRelativelyScheduledInModule(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
76 {
77 return Message(sourceLineNumbers, Ids.DecompiledStandardActionRelativelyScheduledInModule, "The {0} table contains a standard action '{1}' that does not have a sequence number specified. A value in the Sequence column is required for standard actions in a merge module. Remove the action from the decompiled authoring to have WiX automatically sequence it.", sequenceTableName, actionName);
78 }
79
80 public static Message DecompilingAsCustomTable(SourceLineNumber sourceLineNumbers, string tableName)
81 {
82 return Message(sourceLineNumbers, Ids.DecompilingAsCustomTable, "The {0} table is being decompiled as a custom table.", tableName);
83 }
84
85 public static Message DefaultLanguageUsedForUnversionedFile(SourceLineNumber sourceLineNumbers, string language, string fileId)
86 {
87 return Message(sourceLineNumbers, Ids.DefaultLanguageUsedForUnversionedFile, "The DefaultLanguage '{0}' was used for file '{1}' which has no language or version. For unversioned files, specifying a value for DefaultLanguage is not neccessary and it will not be used when determining file versions. Remove the DefaultLanguage attribute to eliminate this warning.", language, fileId);
88 }
89
90 public static Message DefaultLanguageUsedForVersionedFile(SourceLineNumber sourceLineNumbers, string language, string fileId)
91 {
92 return Message(sourceLineNumbers, Ids.DefaultLanguageUsedForVersionedFile, "The DefaultLanguage '{0}' was used for file '{1}' which has no language. Specifying a language that is different from the actual file may result in unexpected versioning behavior during a repair or while patching. Either specify a value for DefaultLanguage or put the language in the version information resource to eliminate this warning.", language, fileId);
93 }
94
95 public static Message DefaultVersionUsedForUnversionedFile(SourceLineNumber sourceLineNumbers, string version, string fileId)
96 {
97 return Message(sourceLineNumbers, Ids.DefaultVersionUsedForUnversionedFile, "The DefaultVersion '{0}' was used for file '{1}' which has no version. No entry for this file will be placed in the MsiFileHash table. For unversioned files, specifying a version that is different from the actual file may result in unexpected versioning behavior during a repair or while patching. Version the resource to eliminate this warning.", version, fileId);
98 }
99
100 public static Message DeprecatedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
101 {
102 return Message(sourceLineNumbers, Ids.DeprecatedAttribute, "The {0}/@{1} attribute has been deprecated.", elementName, attributeName);
103 }
104
105 public static Message DeprecatedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string newAttributeName)
106 {
107 return Message(sourceLineNumbers, Ids.DeprecatedAttribute, "The {0}/@{1} attribute has been deprecated. Please use the {2} attribute instead.", elementName, attributeName, newAttributeName);
108 }
109
110 public static Message DeprecatedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string newAttributeName1, string newAttributeName2)
111 {
112 return Message(sourceLineNumbers, Ids.DeprecatedAttribute, "The {0}/@{1} attribute has been deprecated. Please use the {2} or {3} attribute instead.", elementName, attributeName, newAttributeName1, newAttributeName2);
113 }
114
115 public static Message DeprecatedAttributeValue(SourceLineNumber sourceLineNumbers, string attributeValue, string elementName, string attributeName, string newAttributeValue)
116 {
117 return Message(sourceLineNumbers, Ids.DeprecatedAttributeValue, "The value \"{0}\" for the {1}/@{2} attribute has been deprecated. Please use \"{3}\" instead.", attributeValue, elementName, attributeName, newAttributeValue);
118 }
119
120 public static Message DeprecatedCommandLineSwitch(string oldSwitch)
121 {
122 return Message(null, Ids.DeprecatedCommandLineSwitch, "The command line switch '{0}' is deprecated.", oldSwitch);
123 }
124
125 public static Message DeprecatedCommandLineSwitch(string oldSwitch, string newSwitch)
126 {
127 return Message(null, Ids.DeprecatedCommandLineSwitch, "The command line switch '{0}' is deprecated. Please use '{1}' instead.", oldSwitch, newSwitch);
128 }
129
130 public static Message DeprecatedComponentGroupId(SourceLineNumber sourceLineNumbers, string elementName)
131 {
132 return Message(sourceLineNumbers, Ids.DeprecatedComponentGroupId, "The {0}/@Id attribute contains invalid characters for an identifier. Being able to use invalid identifier characters for a {0} identifier has been deprecated.", elementName);
133 }
134
135 public static Message DeprecatedElement(SourceLineNumber sourceLineNumbers, string elementName)
136 {
137 return Message(sourceLineNumbers, Ids.DeprecatedElement, "The {0} element has been deprecated.", elementName);
138 }
139
140 public static Message DeprecatedElement(SourceLineNumber sourceLineNumbers, string elementName, string newElementName)
141 {
142 return Message(sourceLineNumbers, Ids.DeprecatedElement, "The {0} element has been deprecated. Please use the {1} element instead.", elementName, newElementName);
143 }
144
145 public static Message DeprecatedElement(SourceLineNumber sourceLineNumbers, string elementName, string newElementName1, string newElementName2)
146 {
147 return Message(sourceLineNumbers, Ids.DeprecatedElement, "The {0} element has been deprecated. Please use the {1} or {2} element instead.", elementName, newElementName1, newElementName2);
148 }
149
150 public static Message DeprecatedIgnoreModularizationElement(SourceLineNumber sourceLineNumbers)
151 {
152 return Message(sourceLineNumbers, Ids.DeprecatedIgnoreModularizationElement, "The IgnoreModularization element has been deprecated. Use the Binary/@SuppressModularization, CustomAction/@SuppressModularization, or Property/@SuppressModularization attribute instead.");
153 }
154
155 public static Message DeprecatedLocalizationVariablePrefix(SourceLineNumber sourceLineNumbers, string variableId)
156 {
157 return Message(sourceLineNumbers, Ids.DeprecatedLocalizationVariablePrefix, "The localization variable $(loc.{0}) uses a deprecated prefix '$'. Please use the '!' prefix instead. Since the prefix '$' is also used by the preprocessor, it has been deprecated to avoid namespace collisions.", variableId);
158 }
159
160 public static Message DeprecatedLongNameAttribute(SourceLineNumber sourceLineNumbers, string elementName, string longNameAttributeName, string nameAttributeName, string shortNameAttributeName)
161 {
162 return Message(sourceLineNumbers, Ids.DeprecatedLongNameAttribute, "The {0}/@{1} attribute has been deprecated. Since WiX now has the ability to generate short file/directory names, the desired name should be specified in the {2} attribute instead. If the name specified in the {2} attribute is a short name, then WiX will not generate a short name. If the name specified in the {2} attribute is a long name and you want to manually specify the short name, please set the short name value in the {3} attribute.", elementName, longNameAttributeName, nameAttributeName, shortNameAttributeName);
163 }
164
165 public static Message DeprecatedModuleGuidAttribute(SourceLineNumber sourceLineNumbers)
166 {
167 return Message(sourceLineNumbers, Ids.DeprecatedModuleGuidAttribute, "The Module/@Guid attribute is deprecated merge modules use their package code as the modularization guid. Use the Package/@Id attribute instead.");
168 }
169
170 public static Message DeprecatedPackageCompressedAttribute(SourceLineNumber sourceLineNumbers)
171 {
172 return Message(sourceLineNumbers, Ids.DeprecatedPackageCompressedAttribute, "The Package/@Compressed attribute is deprecated under the Module element because merge modules must always be compressed.");
173 }
174
175 public static Message DeprecatedPatchSequenceTargetAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
176 {
177 return Message(sourceLineNumbers, Ids.DeprecatedPatchSequenceTargetAttribute, "The {0}/@{1} attribute has been deprecated in favor of the more strongly-typed ProductCode or TargetImage attributes. Please use the ProductCode attribute for indicating the ProductCode of a patch family directly, or the TargetImage attribute to specify the TargetImage which in turn will retrieve the ProductCode of the patch family.", elementName, attributeName);
178 }
179
180 public static Message DeprecatedPreProcVariable(SourceLineNumber sourceLineNumbers, string oldName, string newName)
181 {
182 return Message(sourceLineNumbers, Ids.DeprecatedPreProcVariable, "The built-in preprocessor variable '{0}' is deprecated. Please correct your authoring to use the new '{1}' preprocessor variable instead.", oldName, newName);
183 }
184
185 public static Message DeprecatedQuestionMarksGuid(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
186 {
187 return Message(sourceLineNumbers, Ids.DeprecatedQuestionMarksGuid, "The {0}/@{1} attribute's value '????????-????-????-????-????????????' has been deprecated. Use '*' instead.", elementName, attributeName);
188 }
189
190 public static Message DeprecatedRegistryElement(SourceLineNumber sourceLineNumbers)
191 {
192 return Message(sourceLineNumbers, Ids.DeprecatedRegistryElement, "The Registry element has been deprecated. Please use one of the new elements which replaces its functionality: RegistryKey for creating registry keys, RegistryValue for writing registry values, RemoveRegistryKey for removing registry keys, and RemoveRegistryValue for removing registry values.");
193 }
194
195 public static Message DeprecatedRegistryKeyActionAttribute(SourceLineNumber sourceLineNumbers)
196 {
197 return Message(sourceLineNumbers, Ids.DeprecatedRegistryKeyActionAttribute, "The RegistryKey/@Action attribute has been deprecated. In most cases, you can simply omit @Action. If you need to force Windows Installer to create an empty key or recursively delete the key, use the ForceCreateOnInstall or ForceDeleteOnUninstall attributes instead.");
198 }
199
200 public static Message DeprecatedTable(string tableName)
201 {
202 return Message(null, Ids.DeprecatedTable, "The {0} table is not supported by the WiX toolset because it has been deprecated by the Windows Installer team. Any information in this table will be left out of the decompiled output.", tableName);
203 }
204
205 public static Message DeprecatedUpgradeProperty(SourceLineNumber sourceLineNumbers)
206 {
207 return Message(sourceLineNumbers, Ids.DeprecatedUpgradeProperty, "Specifying a Property element as a child of an Upgrade element has been deprecated. Please specify this Property element as a child of a different element such as Product or Fragment.");
208 }
209
210 public static Message DirectoryInUse(SourceLineNumber sourceLineNumbers, string filePath)
211 {
212 return Message(sourceLineNumbers, Ids.DirectoryInUse, "The directory '{0}' is in use and cannot be deleted.", filePath);
213 }
214
215 public static Message DirectoryRedundantNames(SourceLineNumber sourceLineNumbers, string elementName, string shortNameAttributeName, string longNameAttributeName, string attributeValue)
216 {
217 return Message(sourceLineNumbers, Ids.DirectoryRedundantNames, "The {0} element's {1} and {2} values are both '{3}'. This is redundant; the {2} attribute should be removed.", elementName, shortNameAttributeName, longNameAttributeName, attributeValue);
218 }
219
220 public static Message DirectoryRedundantNames(SourceLineNumber sourceLineNumbers, string elementName, string sourceNameAttributeName, string longSourceAttributeName)
221 {
222 return Message(sourceLineNumbers, Ids.DirectoryRedundantNames, "The {0} element's source and destination names are identical. This is redundant; the {1} and {2} attributes should be removed if present.", elementName, sourceNameAttributeName, longSourceAttributeName);
223 }
224
225 public static Message DiscardedRollbackBoundary(SourceLineNumber sourceLineNumbers, string rollbackBoundaryId)
226 {
227 return Message(sourceLineNumbers, Ids.DiscardedRollbackBoundary, "The RollbackBoundary '{0}' was discarded because it was not followed by a package. Without a package the rollback boundary doesn't do anything. Verify that the RollbackBoundary element is not followed by another RollbackBoundary and that the element is not at the end of the chain.", rollbackBoundaryId);
228 }
229
230 public static Message DiscouragedAllUsersValue(SourceLineNumber sourceLineNumbers, string path, string machineOrUser)
231 {
232 return Message(sourceLineNumbers, Ids.DiscouragedAllUsersValue, "Bundles require a package to be either per-machine or per-user. The MSI '{0}' ALLUSERS Property is set to '2' which may change from per-user to per-machine at install time. The Bundle will assume the package is per-{1} and will not work correctly if that changes. If possible, remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute instead.", path, machineOrUser);
233 }
234
235 public static Message DownloadUrlNotSupportedForAttachedContainers(SourceLineNumber sourceLineNumbers, string containerId)
236 {
237 return Message(sourceLineNumbers, Ids.DownloadUrlNotSupportedForAttachedContainers, "The Container '{0}' is attached but included a @DownloadUrl attribute. Attached Containers cannot be downloaded so the download URL is being ignored.", containerId);
238 }
239
240 public static Message DownloadUrlNotSupportedForEmbeddedPayloads(SourceLineNumber sourceLineNumbers, string payloadId)
241 {
242 return Message(sourceLineNumbers, Ids.DownloadUrlNotSupportedForEmbeddedPayloads, "The Payload '{0}' is embedded but included a @DownloadUrl attribute. Embedded Payloads cannot be downloaded so the download URL is being ignored.", payloadId);
243 }
244
245 public static Message DuplicateComponentGuidsMustHaveMutuallyExclusiveConditions(SourceLineNumber sourceLineNumbers, string componentId, string guid)
246 {
247 return Message(sourceLineNumbers, Ids.DuplicateComponentGuidsMustHaveMutuallyExclusiveConditions, "Component/@Id='{0}' has a @Guid value '{1}' that duplicates another component in this package. This is not officially supported by Windows Installer but works as long as all components have mutually-exclusive conditions. It is recommended to give each component its own unique GUID.", componentId, guid);
248 }
249
250 public static Message DuplicatePrimaryKey(SourceLineNumber sourceLineNumbers, string primaryKey, string tableName)
251 {
252 return Message(sourceLineNumbers, Ids.DuplicatePrimaryKey, "The primary key '{0}' is duplicated in table '{1}' and will be ignored. Please remove one of the entries or rename a part of the primary key to avoid the collision.", primaryKey, tableName);
253 }
254
255 public static Message EmptyAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
256 {
257 return Message(sourceLineNumbers, Ids.EmptyAttributeValue, "The {0}/@{1} attribute's value cannot be an empty string. If you want the value to be null or empty, simply remove the entire attribute.", elementName, attributeName);
258 }
259
260 public static Message EmptyCabinet(SourceLineNumber sourceLineNumbers, string cabinetName)
261 {
262 return Message(sourceLineNumbers, Ids.EmptyCabinet, "The cabinet '{0}' does not contain any files. If this installation contains no files, this warning can likely be safely ignored. Otherwise, please add files to the cabinet or remove it.", cabinetName);
263 }
264
265 public static Message EmptyCabinet(SourceLineNumber sourceLineNumbers, string cabinetName, Boolean isPatch)
266 {
267 return Message(sourceLineNumbers, Ids.EmptyCabinet, "The cabinet '{0}' does not contain any files. If this patch contains no files, this warning can likely be safely ignored. Otherwise, try passing -p to torch.exe when first building the transforms, or add a ComponentRef to your PatchFamily authoring to pull changed files into the cabinet.", cabinetName, isPatch);
268 }
269
270 public static Message ExpectedForeignRow(SourceLineNumber sourceLineNumbers, string tableName, string primaryKey, string columnName, string columnValue, string foreignTableName)
271 {
272 return Message(sourceLineNumbers, Ids.ExpectedForeignRow, "The {0} table contains a row with primary key(s) '{1}' whose {2} column contains a value, '{3}', which specifies a foreign key relationship with the {4} table. However, since the expected foreign row specified by this value does not exist, this will result in some information being left out of the decompiled output.", tableName, primaryKey, columnName, columnValue, foreignTableName);
273 }
274
275 public static Message ExpectedForeignRow(SourceLineNumber sourceLineNumbers, string tableName, string primaryKey, string columnName1, string columnValue1, string columnName2, string columnValue2, string foreignTableName)
276 {
277 return Message(sourceLineNumbers, Ids.ExpectedForeignRow, "The {0} table contains a row with primary key(s) '{1}' whose {2} and {4} columns contain the values, '{3}' and '{5}', which specify a foreign key relationship with the {6} table. However, since the expected foreign row specified by this value does not exist, this will result in some information being left out of the decompiled output.", tableName, primaryKey, columnName1, columnValue1, columnName2, columnValue2, foreignTableName);
278 }
279
280 public static Message ExternalCabsAreNotSigned(string databaseFile)
281 {
282 return Message(null, Ids.ExternalCabsAreNotSigned, "The installer database '{0}' has external cabs, but at least one of them is not signed. Please ensure that all external cabs are signed, if you mean to sign them. If you don't mean to sign them, there is no need to run the insignia tool as part of your build.", databaseFile);
283 }
284
285 public static Message FailedToDeleteTempDir(string directory)
286 {
287 return Message(null, Ids.FailedToDeleteTempDir, "Failed to delete temporary directory: {0}", directory);
288 }
289
290 public static Message FileSearchFileNameIssue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2)
291 {
292 return Message(sourceLineNumbers, Ids.FileSearchFileNameIssue, "The {0} element's {1} and {2} attributes were found. Due to a bug with the Windows Installer, only the Name or LongName attribute should be used. Use the Name attribute for 8.3 compliant file names and the LongName attribute for longer ones. When using only the LongName attribute, ICE03 should be ignored for the Signature table's FileName column.", elementName, attributeName1, attributeName2);
293 }
294
295 public static Message GeneratedShortFileNameConflict(SourceLineNumber sourceLineNumbers, string shortFileName)
296 {
297 return Message(sourceLineNumbers, Ids.GeneratedShortFileNameConflict, "The short file name '{0}' was generated for multiple files that may be installed to the same directory. This could be due to conflicting long file names specified by the File/@Name attribute. If that is the case, please resolve the conflict in those attributes. Otherwise, please manually set the File/@ShortName attribute on the conflicting row to fix the collision. If one of the colliding files was added via a patch, that short file name should be specified manually to avoid disturbing the original short file name.", shortFileName);
298 }
299
300 public static Message GeneratedShortFileNameConflict2(SourceLineNumber sourceLineNumbers)
301 {
302 return Message(sourceLineNumbers, Ids.GeneratedShortFileNameConflict2, "The location of a conflicting generated short file name related to the previous warning.");
303 }
304
305 public static Message IdentifierCannotBeModularized(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string identifier, int length, int maximumLength)
306 {
307 return Message(sourceLineNumbers, Ids.IdentifierCannotBeModularized, "The {0}/@{1} attribute's value, '{2}', is {3} characters long. It will be too long if modularized. The identifier shouldn't be longer than {4} characters long to allow for modularization (appending a guid for merge modules).", elementName, attributeName, identifier, length, maximumLength);
308 }
309
310 public static Message IdentifierTooLong(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
311 {
312 return Message(sourceLineNumbers, Ids.IdentifierTooLong, "The {0}/@{1} attribute's value, '{2}', is too long for an identifier. Standard identifiers are 72 characters long or less.", elementName, attributeName, value);
313 }
314
315 public static Message IllegalActionInSequence(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
316 {
317 return Message(sourceLineNumbers, Ids.IllegalActionInSequence, "The {0} table contains an action '{1}' which is not allowed in this table. If this is a standard action then it is not valid for this table, if it is a custom action or dialog then this table does not accept actions of that type. This action will be left out of the decompiled output.", sequenceTableName, actionName);
318 }
319
320 public static Message IllegalColumnValue(SourceLineNumber sourceLineNumbers, string tableName, string columnName, Object value)
321 {
322 return Message(sourceLineNumbers, Ids.IllegalColumnValue, "The {0}.{1} column's value, '{2}', is not a recognized legal value. This information will be left out of the decompiled output.", tableName, columnName, value);
323 }
324
325 public static Message IllegalPatchCreationTable(SourceLineNumber sourceLineNumbers, string tableName)
326 {
327 return Message(sourceLineNumbers, Ids.IllegalPatchCreationTable, "The {0} table is not legal in a patch creation file. The information in this table will be left out of the decompiled output.", tableName);
328 }
329
330 public static Message IllegalRegistryKeyPath(SourceLineNumber sourceLineNumbers, string componentName, string registryId)
331 {
332 return Message(sourceLineNumbers, Ids.IllegalRegistryKeyPath, "Component '{0}' specifies an illegal registry keypath of '{1}'. Since this entry actually represents a registry key, not a registry value, it cannot be the keypath.", componentName, registryId);
333 }
334
335 public static Message ImplicitComponentPrimaryFeature(string componentId)
336 {
337 return Message(null, Ids.ImplicitComponentPrimaryFeature, "The component '{0}' does not have an explicit primary feature parent specified. If the source files are linked in a different order, the primary parent feature may change. To prevent accidental changes, the primary feature parent should be set to 'yes' in one of the ComponentRef/@Primary, ComponentGroupRef/@Primary, or FeatureGroupRef/@Primary locations for this component.", componentId);
338 }
339
340 public static Message ImplicitlyPerUser(SourceLineNumber sourceLineNumbers, string path)
341 {
342 return Message(sourceLineNumbers, Ids.ImplicitlyPerUser, "The MSI '{0}' does not explicitly indicate that it is a per-user package even though the ALLUSERS Property is blank. This suggests a per-user package so the Bundle will assume the package is per-user. If possible, use the Package/@InstallScope attribute to be explicit instead.", path);
343 }
344
345 public static Message ImplicitMergeModulePrimaryFeature(string componentId)
346 {
347 return Message(null, Ids.ImplicitMergeModulePrimaryFeature, "The merge module '{0}' does not have an explicit primary feature parent specified. If the source files are linked in a different order, the primary parent feature may change. To prevent accidental changes, the primary feature parent should be set to 'yes' in one of the MergeRef/@Primary or FeatureGroupRef/@Primary locations for this component.", componentId);
348 }
349
350 public static Message InsufficientPermissionHarvestTypeLib()
351 {
352 return Message(null, Ids.InsufficientPermissionHarvestTypeLib, "Not enough permissions to harvest type library. On Windows Vista, you must either run Heat elevated, or install Windows Vista SP1 (or higher).");
353 }
354
355 public static Message InvalidAttributeCombination(SourceLineNumber sourceLineNumbers, string attrib1, string attrib2, string name, string value)
356 {
357 return Message(sourceLineNumbers, Ids.InvalidAttributeCombination, "It is invalid to combine attributes {0} and {1}. The decompiled output will set attribute {2} to {3}.", attrib1, attrib2, name, value);
358 }
359
360 public static Message InvalidHigherInstallerVersionInModule(SourceLineNumber sourceLineNumbers, string moduleId, int moduleInstallerVersion, int productInstallerVersion)
361 {
362 return Message(sourceLineNumbers, Ids.InvalidHigherInstallerVersionInModule, "Merge module '{0}' has an installer version of {1} which is greater than the product's installer version of {2}. Merging a module with a higher installer version than the product it is being merged into can result in invalid values in the resulting msi. You must set the Package/@InstallerVersion attribute to {1} or greater to merge this merge module into your product.", moduleId, moduleInstallerVersion, productInstallerVersion);
363 }
364
365 public static Message InvalidModuleOrBundleVersion(SourceLineNumber sourceLineNumbers, string moduleOrBundle, string version)
366 {
367 return Message(sourceLineNumbers, Ids.InvalidModuleOrBundleVersion, "Invalid {0}/@Version '{1}'. {0} version has a max value of \"65535.65535.65535.65535\" and must be all numeric.", moduleOrBundle, version);
368 }
369
370 public static Message InvalidRemoveFile(SourceLineNumber sourceLineNumbers, string file, string component)
371 {
372 return Message(sourceLineNumbers, Ids.InvalidRemoveFile, "File '{0}' was removed from component '{1}'. Removing a file from a component will not result in the file being removed by a patch. You should author a RemoveFile element in your component to remove the file from the installation if you want the file to be removed.", file, component);
373 }
374
375 public static Message MajorUpgradePatchNotRecommended()
376 {
377 return Message(null, Ids.MajorUpgradePatchNotRecommended, "Changing the ProductCode in a patch is not recommended because the patch cannot be uninstalled nor can it be sequenced along with other patches for the target product. See http://msdn2.microsoft.com/library/aa367571.aspx for more information.");
378 }
379
380 public static Message MediaExternalCabinetFilenameIllegal(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
381 {
382 return Message(sourceLineNumbers, Ids.MediaExternalCabinetFilenameIllegal, "The {0}/@{1} attribute's value, '{2}', is not a valid external cabinet name. Legal cabinet names should follow 8.3 format: they should contain no more than 8 characters followed by an optional extension of no more than 3 characters. Any character except for the following may be used: \\ ? | > < : / * \" + , ; = [ ] (space). The Windows Installer team has recommended following the 8.3 format for external cabinet files and any other naming scheme is officially unsupported (which means it is not guaranteed to work on all platforms).", elementName, attributeName, value);
383 }
384
385 public static Message MergeRescheduledAction(SourceLineNumber sourceLineNumbers, string tableName, string actionName, string mergeModuleFile)
386 {
387 return Message(sourceLineNumbers, Ids.MergeRescheduledAction, "The {0} table contains an action '{1}' which cannot be merged from the merge module '{2}'. This action is likely colliding with an action in the database that is being created. The colliding action may have been authored in the database or merged in from another merge module. If this is a standard action, it is likely colliding due to a difference in the condition for the action in the database and merge module. If this is a custom action, it should only be declared in the database or one merge module.", tableName, actionName, mergeModuleFile);
388 }
389
390 public static Message MergeTableFailed(SourceLineNumber sourceLineNumbers, string tableName, string primaryKeys, string mergeModuleFile)
391 {
392 return Message(sourceLineNumbers, Ids.MergeTableFailed, "The {0} table contains a row with primary key(s) '{1}' which cannot be merged from the merge module '{2}'. This is likely due to collision of rows with the same primary key(s) (but other different values in other columns) between the database and the merge module.", tableName, primaryKeys, mergeModuleFile);
393 }
394
395 public static Message MissingUpgradeCode(SourceLineNumber sourceLineNumbers)
396 {
397 return Message(sourceLineNumbers, Ids.MissingUpgradeCode, "The Product/@UpgradeCode attribute was not found; it is strongly recommended to ensure that this product can be upgraded.");
398 }
399
400 public static Message NestedInstall(SourceLineNumber sourceLineNumbers, string tableName, string columnName, Object value)
401 {
402 return Message(sourceLineNumbers, Ids.NestedInstall, "The {0}.{1} column's value, '{2}', indicates a nested install. Nested installations are not supported by the WiX team. This action will be left out of the decompiled output.", tableName, columnName, value);
403 }
404
405 public static Message NewComponentAddedToExistingFeature(SourceLineNumber sourceLineNumbers, string component, string feature, string transformPath)
406 {
407 return Message(sourceLineNumbers, Ids.NewComponentAddedToExistingFeature, "Component '{0}' was added to feature '{1}' in the transform '{2}'. If you cannot guarantee that this feature will always be installed, you should consider adding new components to new top-level features to prevent prompts for source when installing this patch.", component, feature, transformPath);
408 }
409
410 public static Message NoPerMachineDependencies(SourceLineNumber sourceLineNumbers, string packageId)
411 {
412 return Message(sourceLineNumbers, Ids.NoPerMachineDependencies, "Bundle dependencies will not be registered on per-machine package '{0}' for a per-user bundle. Either make sure that all packages are installed per-machine, or author any per-machine dependencies as permanent packages.", packageId);
413 }
414
415 public static Message NotABinaryWixlib(string wixlib)
416 {
417 return Message(null, Ids.NotABinaryWixlib, "'{0}' is not a binary Wixlib and has no embedded files.", wixlib);
418 }
419
420 public static Message NullMsiAssemblyNameValue(SourceLineNumber sourceLineNumbers, string componentName, string name)
421 {
422 return Message(sourceLineNumbers, Ids.NullMsiAssemblyNameValue, "The assembly in component '{0}' has a null or empty {1} assembly name value.", componentName, name);
423 }
424
425 public static Message OrphanedProgId(SourceLineNumber sourceLineNumbers, string progId)
426 {
427 return Message(sourceLineNumbers, Ids.OrphanedProgId, "ProgId '{0}' is orphaned. It has no associated component, so it will never install. Every ProgId should have either a parent Class element or child Extension element (at any distance).", progId);
428 }
429
430 public static Message PackageCodeSet(SourceLineNumber sourceLineNumbers)
431 {
432 return Message(sourceLineNumbers, Ids.PackageCodeSet, "The Package/@Id attribute has been set. Setting this attribute will allow nonidentical .msi files to have the same package code. This may be a problem because the package code is the primary identifier used by the installer to search for and validate the correct package for a given installation. If a package is changed without changing the package code, the installer may not use the newer package if both are still accessible to the installer. Please remove the Id attribute in order to automatically generate a new package code for each new .msi file.");
433 }
434
435 public static Message PatchTable(SourceLineNumber sourceLineNumbers, string tableName)
436 {
437 return Message(sourceLineNumbers, Ids.PatchTable, "The {0} table is added to the install package by a transform from a patch package (.msp) and not authored directly into an install package (.msi). The information in this table will be left out of the decompiled output.", tableName);
438 }
439
440 public static Message PerUserButForcingPerMachine(SourceLineNumber sourceLineNumbers, string path)
441 {
442 return Message(sourceLineNumbers, Ids.PerUserButForcingPerMachine, "The MSI '{0}' is a per-user package being forced to per-machine. Verify that the MsiPackage/@ForcePerMachine attribute is expected and that the per-user package works correctly when forced to install per-machine.", path);
443 }
444
445 public static Message PlaceholderValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
446 {
447 return Message(sourceLineNumbers, Ids.PlaceholderValue, "The {0}/@{1} attribute's value, '{2}', is a placeholder value used in example files. Please replace this placeholder with the appropriate value.", elementName, attributeName, value);
448 }
449
450 public static Message PossiblyIncorrectTypelibVersion(SourceLineNumber sourceLineNumbers, string id)
451 {
452 return Message(sourceLineNumbers, Ids.PossiblyIncorrectTypelibVersion, "The Typelib table entry with Id '{0}' could have an incorrect version of '256.0'. InstallShield has a bug relating to the Typelib Version column: it will incorrectly set the value '65536' in to represent version '1.0'. However, this number actually corresponds to version '256.0'. This bug will not affect the typelib version that is registered during installation, however, it will prevent the Windows Installer from correctly identifying whether a typelib is already installed and lead to unnecessary reinstallations of the typelib.", id);
453 }
454
455 public static Message PreprocessorUnknownPragma(SourceLineNumber sourceLineNumbers, string pragmaName)
456 {
457 return Message(sourceLineNumbers, Ids.PreprocessorUnknownPragma, "The pragma '{0}' is unknown. Please ensure you have referenced the extension that defines this pragma.", pragmaName);
458 }
459
460 public static Message PreprocessorWarning(SourceLineNumber sourceLineNumbers, string message)
461 {
462 return Message(sourceLineNumbers, Ids.PreprocessorWarning, "{0}", message);
463 }
464
465 public static Message ProductIdAuthored(SourceLineNumber sourceLineNumbers)
466 {
467 return Message(sourceLineNumbers, Ids.ProductIdAuthored, "The 'ProductID' property should not be directly authored because it will prevent the ValidateProductID standard action from performing any validation during the installation. This property will be set by the ValidateProductID standard action or control event.");
468 }
469
470 public static Message PropertyModularizationSuppressed(SourceLineNumber sourceLineNumbers)
471 {
472 return Message(sourceLineNumbers, Ids.PropertyModularizationSuppressed, "The Property/@SuppressModularization attribute has been set to 'yes'. Using this functionality is strongly discouraged; it should only be necessary as a workaround of last resort in rare scenarios.");
473 }
474
475 public static Message PropertyUseless(SourceLineNumber sourceLineNumbers, string id)
476 {
477 return Message(sourceLineNumbers, Ids.PropertyUseless, "Property '{0}' does not contain a Value attribute and is not marked as Admin, Secure, or Hidden. The Property element is being ignored.", id);
478 }
479
480 public static Message PropertyValueContainsPropertyReference(SourceLineNumber sourceLineNumbers, string propertyId, string otherProperty)
481 {
482 return Message(sourceLineNumbers, Ids.PropertyValueContainsPropertyReference, "The '{0}' Property contains '[{1}]' in its value which is an illegal reference to another property. If this value is a string literal, not a property reference, please ignore this warning. To set a property with the value of another property, use a CustomAction with Property and Value attributes.", propertyId, otherProperty);
483 }
484
485 public static Message RelatedAttributeConditionallyIgnored(SourceLineNumber sourceLineNumbers, string recessiveAttribute, string dominantAttribute, string dominantValue)
486 {
487 return Message(sourceLineNumbers, Ids.RelatedAttributeConditionallyIgnored, "Ignoring attribute {0} because attribute {1} is set to {2}.", recessiveAttribute, dominantAttribute, dominantValue);
488 }
489
490 public static Message RemotePayloadsMustNotAlsoBeCompressed(SourceLineNumber sourceLineNumbers, string elementName)
491 {
492 return Message(sourceLineNumbers, Ids.RemotePayloadsMustNotAlsoBeCompressed, "The {0}/@Compressed attribute must have value 'no' when a RemotePayload child element is present. RemotePayload indicates that a package will always be downloaded and cannot be compressed into a bundle. To eliminate this warning, explicitly set the {0}/@Compressed attribute to 'no'.", elementName);
493 }
494
495 public static Message RemoveFileNameRequired(SourceLineNumber sourceLineNumbers)
496 {
497 return Message(sourceLineNumbers, Ids.RemoveFileNameRequired, "The RemoveFile/@Name attribute will soon become required. In order to match the old functionality of not specifying this attribute, please use the new RemoveFolder element instead.");
498 }
499
500 public static Message RequiresMsi200for64bitPackage(SourceLineNumber sourceLineNumbers)
501 {
502 return Message(sourceLineNumbers, Ids.RequiresMsi200for64bitPackage, "Package/@InstallerVersion must be 200 or greater for a 64-bit package. The value will be changed to 200. Please specify a value of 200 or greater in order to eliminate this warning.");
503 }
504
505 public static Message RequiresMsi500forArmPackage(SourceLineNumber sourceLineNumbers)
506 {
507 return Message(sourceLineNumbers, Ids.RequiresMsi500forArmPackage, "Package/@InstallerVersion must be 500 or greater for an Arm package. The value will be changed to 500. Please specify a value of 500 or greater in order to eliminate this warning.");
508 }
509
510 public static Message ReservedAttribute(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
511 {
512 return Message(sourceLineNumbers, Ids.ReservedAttribute, "The {0}/@{1} attribute is reserved for future use and has no effect in this version of the WiX toolset.", elementName, attributeName);
513 }
514
515 public static Message RetainRangeMismatch(SourceLineNumber sourceLineNumbers, string fileId)
516 {
517 return Message(sourceLineNumbers, Ids.RetainRangeMismatch, "Mismatch in RetainRangeCounts for the file '{0}' - ignoring the retain ranges.", fileId);
518 }
519
520 public static Message ServiceConfigFamilyNotSupported(SourceLineNumber sourceLineNumbers, string elementName)
521 {
522 return Message(sourceLineNumbers, Ids.ServiceConfigFamilyNotSupported, "{0} functionality is documented in the Windows Installer SDK to \"not [work] as expected.\" Consider replacing {0} with the WixUtilExtension ServiceConfig element.", elementName);
523 }
524
525 public static Message SkippingMergeModuleTable(SourceLineNumber sourceLineNumbers, string tableName)
526 {
527 return Message(sourceLineNumbers, Ids.SkippingMergeModuleTable, "The {0} table can only be represented in WiX for merge modules. The information in this table will be left out of the decompiled output.", tableName);
528 }
529
530 public static Message SkippingPatchCreationTable(SourceLineNumber sourceLineNumbers, string tableName)
531 {
532 return Message(sourceLineNumbers, Ids.SkippingPatchCreationTable, "The {0} table can only be represented in WiX for patch creation files. The information in this table will be left out of the decompiled output.", tableName);
533 }
534
535 public static Message StandardDirectoryConflictInMergeModule(SourceLineNumber sourceLineNumbers, string directory, string standardDirectory)
536 {
537 return Message(sourceLineNumbers, Ids.StandardDirectoryConflictInMergeModule, "The Directory '{0}' starts with the same Id as the standard folder in Windows Installer '{1}'. A directory Id that begins with the same Id as a standard folder that is in an MSM may encounter a conflict when merging the MSM into an MSI. This may result in the contents of this merge module being installed to an unexpected location. To eliminate this warning, change your directory Id to not start with the same Id as any standard folders.", directory, standardDirectory);
538 }
539
540 public static Message SuppressAction(SourceLineNumber sourceLineNumbers, string action, string sequenceName)
541 {
542 return Message(sourceLineNumbers, Ids.SuppressAction, "The action '{0}' in the {1} table is being suppressed.", action, sequenceName);
543 }
544
545 public static Message SuppressAction2(SourceLineNumber sourceLineNumbers)
546 {
547 return Message(sourceLineNumbers, Ids.SuppressAction2, "The location of the suppressed action related to previous warning.");
548 }
549
550 public static Message SuppressMergedAction(string action, string sequenceName)
551 {
552 return Message(null, Ids.SuppressMergedAction, "The merged action '{0}' in the {1} table is being suppressed.", action, sequenceName);
553 }
554
555 public static Message TableIncompatibleWithInstallerVersion(SourceLineNumber sourceLineNumbers, string tableName, int productInstallerVersion)
556 {
557 return Message(sourceLineNumbers, Ids.TableIncompatibleWithInstallerVersion, "Using table '{0}' requires a version of Windows Installer greater than specified in your package ('{1}').", tableName, productInstallerVersion);
558 }
559
560 public static Message TargetDirCorrectedDefaultDir()
561 {
562 return Message(null, Ids.TargetDirCorrectedDefaultDir, "The Directory with Id 'TARGETDIR' must have the value 'SourceDir' in its 'DefaultDir' column. This has been automatically corrected for you in the decompiled output.");
563 }
564
565 public static Message TooManyProgIds(SourceLineNumber sourceLineNumbers, string clsId, string progId, string otherClsId)
566 {
567 return Message(sourceLineNumbers, Ids.TooManyProgIds, "Class '{0}' tried to use ProgId '{1}' which has already been associated with class '{2}'. This information will be left out of the decompiled output.", clsId, progId, otherClsId);
568 }
569
570 public static Message UnableToFindFileFromCabOrImage(SourceLineNumber sourceLineNumbers, string existingFileSpec, string srcFileSpec)
571 {
572 return Message(sourceLineNumbers, Ids.UnableToFindFileFromCabOrImage, "Unable to find existing file {0} to place in src location {1}. Will likely cause a linker break.", existingFileSpec, srcFileSpec);
573 }
574
575 public static Message UnableToResetAcls()
576 {
577 return Message(null, Ids.UnableToResetAcls, "Unable to reset acls on destination files.");
578 }
579
580 public static Message UnclearShortcut(SourceLineNumber sourceLineNumbers, string shortcutId, string fileId, string componentId)
581 {
582 return Message(sourceLineNumbers, Ids.UnclearShortcut, "Because it is an advertised shortcut, the target of shortcut '{0}' will be the keypath of component '{2}' rather than parent file '{1}'. To eliminate this warning, you can (1) make the Shortcut element a child of the File element that is the keypath of component '{2}', (2) make file '{1}' the keypath of component '{2}', or (3) remove the @Advertise attribute so the shortcut is a non-advertised shortcut.", shortcutId, fileId, componentId);
583 }
584
585 public static Message UnexpectedEntrySection(SourceLineNumber sourceLineNumbers, string sectionType, string expectedType, string outputExtension)
586 {
587 return Message(sourceLineNumbers, Ids.UnexpectedEntrySection, "Found mismatched entry point <{0}>. Expected <{1}> for specified output package type {2}.", sectionType, expectedType, outputExtension);
588 }
589
590 public static Message UnexpectedTableInProduct(SourceLineNumber sourceLineNumbers, string tableName)
591 {
592 return Message(sourceLineNumbers, Ids.UnexpectedTableInProduct, "An unexpected row in the '{0}' table was found in this product. Products should not contain the '{0}' table.", tableName);
593 }
594
595 public static Message UnknownAction(SourceLineNumber sourceLineNumbers, string sequenceTableName, string actionName)
596 {
597 return Message(sourceLineNumbers, Ids.UnknownAction, "The {0} table contains an action '{1}' which is not a known custom action, dialog, or standard action. This action will be left out of the decompiled output.", sequenceTableName, actionName);
598 }
599
600 public static Message UnknownPermission(SourceLineNumber sourceLineNumbers, string tableName, string primaryKey, int bitPosition)
601 {
602 return Message(sourceLineNumbers, Ids.UnknownPermission, "The {0} table contains a row with primary key '{1}' which has an unknown permission at bit {2}.", tableName, primaryKey, bitPosition);
603 }
604
605 public static Message UnrepresentableColumnValue(SourceLineNumber sourceLineNumbers, string tableName, string columnName, Object value)
606 {
607 return Message(sourceLineNumbers, Ids.UnrepresentableColumnValue, "The {0}.{1} column's value, '{2}', cannot currently be represented in the WiX schema.", tableName, columnName, value);
608 }
609
610 public static Message UnsupportedCommandLineArgument(string arg)
611 {
612 return Message(null, Ids.UnsupportedCommandLineArgument, "'{0}' is not a valid command line argument.", arg);
613 }
614
615 public static Message UpdateOfNonKeyPathFile(string nonKeyPathFileId, string componentId, string keyPathFileId)
616 {
617 return Message(null, Ids.UpdateOfNonKeyPathFile, "File '{0}' in Component '{1}' was changed, but the KeyPath file '{2}' was not. This file will not be patched on the target system if the REINSTALLMODE does not contain 'A'. The KeyPath file should also be changed and included in your patch.", nonKeyPathFileId, componentId, keyPathFileId);
618 }
619
620 public static Message UxPayloadsOnlySupportEmbedding(SourceLineNumber sourceLineNumbers, string sourceFile)
621 {
622 return Message(sourceLineNumbers, Ids.UxPayloadsOnlySupportEmbedding, "A UX Payload ('{0}') was marked for something other than embedded packaging, possibly because it included a @DownloadUrl attribute. At present, UX Payloads must be embedded in the Bundle, so the requested packaging is being ignored.", sourceFile);
623 }
624
625 public static Message ValidationFailedDueToSystemPolicy()
626 {
627 return Message(null, Ids.ValidationFailedDueToSystemPolicy, "Validation could not run due to system policy. To eliminate this warning, run the process as admin or suppress ICE validation.");
628 }
629
630 public static Message ValidationWarning(SourceLineNumber sourceLineNumbers, string ice, string message)
631 {
632 return Message(sourceLineNumbers, Ids.ValidationWarning, "{0}: {1}", ice, message);
633 }
634
635 public static Message VariableDeclarationCollision(SourceLineNumber sourceLineNumbers, string variableName, string variableValue, string variableCollidingValue)
636 {
637 return Message(sourceLineNumbers, Ids.VariableDeclarationCollision, "The variable '{0}' with value '{1}' was previously declared with value '{2}'.", variableName, variableValue, variableCollidingValue);
638 }
639
640 public static Message VersionTruncated(SourceLineNumber sourceLineNumbers, string originalVersion, string package, string truncatedVersion)
641 {
642 return Message(sourceLineNumbers, Ids.VersionTruncated, "Product version {0} in package '{1}' is not valid per the MSI SDK and cannot be represented in a bundle. It has been truncated to {2}.", originalVersion, package, truncatedVersion);
643 }
644
645 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args)
646 {
647 return new Message(sourceLineNumber, MessageLevel.Warning, (int)id, format, args);
648 }
649
650 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, ResourceManager resourceManager, string resourceName, params object[] args)
651 {
652 return new Message(sourceLineNumber, MessageLevel.Warning, (int)id, resourceManager, resourceName, args);
653 }
654
655 public enum Ids
656 {
657 IdentifierCannotBeModularized = 1000,
658 EmptyAttributeValue = 1001,
659 UnableToFindFileFromCabOrImage = 1002,
660 CopyFileFileIdUseless = 1003,
661 NestedInstall = 1004,
662 OrphanedProgId = 1005,
663 PropertyUseless = 1006,
664 RemoveFileNameRequired = 1007,
665 SuppressAction = 1008,
666 SuppressMergedAction = 1009,
667 TargetDirCorrectedDefaultDir = 1010,
668 AccessDeniedForDeletion = 1011,
669 DirectoryInUse = 1012,
670 AccessDeniedForSettingAttributes = 1013,
671 UnknownAction = 1024,
672 IdentifierTooLong = 1026,
673 UnknownPermission = 1030,
674 DirectoryRedundantNames = 1031,
675 UnableToResetAcls = 1032,
676 MediaExternalCabinetFilenameIllegal = 1033,
677 DeprecatedPreProcVariable = 1034,
678 FileSearchFileNameIssue = 1043,
679 AmbiguousFileOrDirectoryName = 1044,
680 PossiblyIncorrectTypelibVersion = 1048,
681 ImplicitComponentPrimaryFeature = 1049,
682 ActionSequenceCollision = 1050,
683 ActionSequenceCollision2 = 1051,
684 SuppressAction2 = 1052,
685 UnexpectedTableInProduct = 1053,
686 DeprecatedAttribute = 1054,
687 MergeRescheduledAction = 1055,
688 MergeTableFailed = 1056,
689 DecompiledStandardActionRelativelyScheduledInModule = 1057,
690 IllegalActionInSequence = 1058,
691 ExpectedForeignRow = 1059,
692 DecompilingAsCustomTable = 1060,
693 IllegalPatchCreationTable = 1061,
694 SkippingMergeModuleTable = 1062,
695 SkippingPatchCreationTable = 1063,
696 UnrepresentableColumnValue = 1064,
697 DeprecatedTable = 1065,
698 PatchTable = 1066,
699 IllegalColumnValue = 1067,
700 DeprecatedLongNameAttribute = 1069,
701 GeneratedShortFileNameConflict = 1070,
702 GeneratedShortFileNameConflict2 = 1071,
703 DangerousTableInMergeModule = 1072,
704 DeprecatedLocalizationVariablePrefix = 1073,
705 PlaceholderValue = 1074,
706 MissingUpgradeCode = 1075,
707 ValidationWarning = 1076,
708 PropertyValueContainsPropertyReference = 1077,
709 DeprecatedUpgradeProperty = 1078,
710 EmptyCabinet = 1079,
711 DeprecatedRegistryElement = 1080,
712 IllegalRegistryKeyPath = 1081,
713 DeprecatedPatchSequenceTargetAttribute = 1082,
714 ProductIdAuthored = 1083,
715 ImplicitMergeModulePrimaryFeature = 1084,
716 DeprecatedIgnoreModularizationElement = 1085,
717 PropertyModularizationSuppressed = 1086,
718 DeprecatedPackageCompressedAttribute = 1087,
719 DeprecatedModuleGuidAttribute = 1088,
720 DeprecatedQuestionMarksGuid = 1090,
721 PackageCodeSet = 1091,
722 InvalidModuleOrBundleVersion = 1093,
723 InvalidRemoveFile = 1095,
724 PreprocessorWarning = 1096,
725 UpdateOfNonKeyPathFile = 1097,
726 UnsupportedCommandLineArgument = 1098,
727 MajorUpgradePatchNotRecommended = 1099,
728 RetainRangeMismatch = 1100,
729 DefaultLanguageUsedForVersionedFile = 1101,
730 DefaultLanguageUsedForUnversionedFile = 1102,
731 DefaultVersionUsedForUnversionedFile = 1103,
732 InvalidHigherInstallerVersionInModule = 1104,
733 ValidationFailedDueToSystemPolicy = 1105,
734 ColumnsIncompatibleWithInstallerVersion = 1106,
735 TableIncompatibleWithInstallerVersion = 1107,
736 DeprecatedCommandLineSwitch = 1108,
737 UnexpectedEntrySection = 1109,
738 NewComponentAddedToExistingFeature = 1110,
739 DeprecatedAttributeValue = 1111,
740 InsufficientPermissionHarvestTypeLib = 1112,
741 UnclearShortcut = 1113,
742 TooManyProgIds = 1114,
743 BadColumnDataIgnored = 1115,
744 NullMsiAssemblyNameValue = 1116,
745 InvalidAttributeCombination = 1117,
746 VariableDeclarationCollision = 1118,
747 DuplicatePrimaryKey = 1119,
748 RequiresMsi200for64bitPackage = 1121,
749 ExternalCabsAreNotSigned = 1122,
750 FailedToDeleteTempDir = 1123,
751 StandardDirectoryConflictInMergeModule = 1124,
752 PreprocessorUnknownPragma = 1125,
753 DeprecatedComponentGroupId = 1126,
754 UxPayloadsOnlySupportEmbedding = 1127,
755 DiscardedRollbackBoundary = 1129,
756 DeprecatedElement = 1130,
757 CannotUpdateCabCache = 1131,
758 DownloadUrlNotSupportedForEmbeddedPayloads = 1132,
759 DiscouragedAllUsersValue = 1133,
760 ImplicitlyPerUser = 1134,
761 PerUserButForcingPerMachine = 1135,
762 AttributeShouldContain = 1136,
763 DuplicateComponentGuidsMustHaveMutuallyExclusiveConditions = 1137,
764 DeprecatedRegistryKeyActionAttribute = 1138,
765 NotABinaryWixlib = 1139,
766 NoPerMachineDependencies = 1140,
767 DownloadUrlNotSupportedForAttachedContainers = 1141,
768 ReservedAttribute = 1142,
769 RequiresMsi500forArmPackage = 1143,
770 RemotePayloadsMustNotAlsoBeCompressed = 1144,
771 AllChangesIncludedInPatch = 1145,
772 RelatedAttributeConditionallyIgnored = 1146,
773 BackslashTerminateInlineDirectorySyntax = 1147,
774 VersionTruncated = 1148,
775 ServiceConfigFamilyNotSupported = 1149,
776 }
777 }
778}
diff --git a/src/WixToolset.Data/WindowsInstaller/Output.cs b/src/WixToolset.Data/WindowsInstaller/Output.cs
index 6164622d..7f2990f4 100644
--- a/src/WixToolset.Data/WindowsInstaller/Output.cs
+++ b/src/WixToolset.Data/WindowsInstaller/Output.cs
@@ -165,7 +165,7 @@ namespace WixToolset.Data.WindowsInstaller
165 165
166 if (!suppressVersionCheck && null != version && !Output.CurrentVersion.Equals(version)) 166 if (!suppressVersionCheck && null != version && !Output.CurrentVersion.Equals(version))
167 { 167 {
168 throw new WixException(WixDataErrors.VersionMismatch(SourceLineNumber.CreateFromUri(reader.BaseURI), "wixOutput", version.ToString(), Output.CurrentVersion.ToString())); 168 throw new WixException(ErrorMessages.VersionMismatch(SourceLineNumber.CreateFromUri(reader.BaseURI), "wixOutput", version.ToString(), Output.CurrentVersion.ToString()));
169 } 169 }
170 170
171 // loop through the rest of the xml building up the Output object 171 // loop through the rest of the xml building up the Output object
diff --git a/src/WixToolset.Data/WindowsInstaller/Pdb.cs b/src/WixToolset.Data/WindowsInstaller/Pdb.cs
index 41700b0d..d3fea0fe 100644
--- a/src/WixToolset.Data/WindowsInstaller/Pdb.cs
+++ b/src/WixToolset.Data/WindowsInstaller/Pdb.cs
@@ -107,7 +107,7 @@ namespace WixToolset.Data.WindowsInstaller
107 107
108 if (!suppressVersionCheck && null != version && !Pdb.CurrentVersion.Equals(version)) 108 if (!suppressVersionCheck && null != version && !Pdb.CurrentVersion.Equals(version))
109 { 109 {
110 throw new WixException(WixDataErrors.VersionMismatch(SourceLineNumber.CreateFromUri(reader.BaseURI), "wixPdb", version.ToString(), Pdb.CurrentVersion.ToString())); 110 throw new WixException(ErrorMessages.VersionMismatch(SourceLineNumber.CreateFromUri(reader.BaseURI), "wixPdb", version.ToString(), Pdb.CurrentVersion.ToString()));
111 } 111 }
112 112
113 // loop through the rest of the pdb building up the Output object 113 // loop through the rest of the pdb building up the Output object
diff --git a/src/WixToolset.Data/WindowsInstaller/Rows/FileRow.cs b/src/WixToolset.Data/WindowsInstaller/Rows/FileRow.cs
index 7fc34b3d..673d2315 100644
--- a/src/WixToolset.Data/WindowsInstaller/Rows/FileRow.cs
+++ b/src/WixToolset.Data/WindowsInstaller/Rows/FileRow.cs
@@ -179,7 +179,7 @@ namespace WixToolset.Data.WindowsInstaller.Rows
179 179
180 if (compressedFlag && noncompressedFlag) 180 if (compressedFlag && noncompressedFlag)
181 { 181 {
182 throw new WixException(WixDataErrors.IllegalFileCompressionAttributes(this.SourceLineNumbers)); 182 throw new WixException(ErrorMessages.IllegalFileCompressionAttributes(this.SourceLineNumbers));
183 } 183 }
184 else if (compressedFlag) 184 else if (compressedFlag)
185 { 185 {
diff --git a/src/WixToolset.Data/WindowsInstaller/Table.cs b/src/WixToolset.Data/WindowsInstaller/Table.cs
index 7fcc1b31..ccdcb40b 100644
--- a/src/WixToolset.Data/WindowsInstaller/Table.cs
+++ b/src/WixToolset.Data/WindowsInstaller/Table.cs
@@ -323,7 +323,7 @@ namespace WixToolset.Data.WindowsInstaller
323 323
324 if (primaryKeys.TryGetValue(primaryKey, out var collisionSourceLineNumber)) 324 if (primaryKeys.TryGetValue(primaryKey, out var collisionSourceLineNumber))
325 { 325 {
326 throw new WixException(WixDataErrors.DuplicatePrimaryKey(collisionSourceLineNumber, primaryKey, this.Definition.Name)); 326 throw new WixException(ErrorMessages.DuplicatePrimaryKey(collisionSourceLineNumber, primaryKey, this.Definition.Name));
327 } 327 }
328 328
329 primaryKeys.Add(primaryKey, row.SourceLineNumbers); 329 primaryKeys.Add(primaryKey, row.SourceLineNumbers);
diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
index 518f0926..2fb655e5 100644
--- a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
+++ b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
@@ -175,7 +175,7 @@ namespace WixToolset.Data.WindowsInstaller
175 175
176 if (!unreal && !bootstrapperApplicationData && !hasPrimaryKeyColumn) 176 if (!unreal && !bootstrapperApplicationData && !hasPrimaryKeyColumn)
177 { 177 {
178 throw new WixException(WixDataErrors.RealTableMissingPrimaryKeyColumn(SourceLineNumber.CreateFromUri(reader.BaseURI), name)); 178 throw new WixException(ErrorMessages.RealTableMissingPrimaryKeyColumn(SourceLineNumber.CreateFromUri(reader.BaseURI), name));
179 } 179 }
180 180
181 if (!done) 181 if (!done)
diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs
index 0954e9de..619a5206 100644
--- a/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs
+++ b/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs
@@ -59,7 +59,7 @@ namespace WixToolset.Data.WindowsInstaller
59 { 59 {
60 if (!this.collection.TryGetValue(tableName, out var table)) 60 if (!this.collection.TryGetValue(tableName, out var table))
61 { 61 {
62 throw new WixMissingTableDefinitionException(WixDataErrors.MissingTableDefinition(tableName)); 62 throw new WixMissingTableDefinitionException(ErrorMessages.MissingTableDefinition(tableName));
63 } 63 }
64 64
65 return table; 65 return table;
diff --git a/src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs b/src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs
index 4b15c0e5..9f7e5fa8 100644
--- a/src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs
+++ b/src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs
@@ -14,7 +14,7 @@ namespace WixToolset.Data.WindowsInstaller
14 /// Instantiate new WixMissingTableDefinitionException. 14 /// Instantiate new WixMissingTableDefinitionException.
15 /// </summary> 15 /// </summary>
16 /// <param name="error">Localized error information.</param> 16 /// <param name="error">Localized error information.</param>
17 public WixMissingTableDefinitionException(MessageEventArgs error) 17 public WixMissingTableDefinitionException(Message error)
18 : base(error) 18 : base(error)
19 { 19 {
20 } 20 }
diff --git a/src/WixToolset.Data/Data/Xsd/libraries.xsd b/src/WixToolset.Data/WindowsInstaller/Xsd/libraries.xsd
index a4504c01..a4504c01 100644
--- a/src/WixToolset.Data/Data/Xsd/libraries.xsd
+++ b/src/WixToolset.Data/WindowsInstaller/Xsd/libraries.xsd
diff --git a/src/WixToolset.Data/Data/Xsd/objects.xsd b/src/WixToolset.Data/WindowsInstaller/Xsd/objects.xsd
index 5d95a59c..5d95a59c 100644
--- a/src/WixToolset.Data/Data/Xsd/objects.xsd
+++ b/src/WixToolset.Data/WindowsInstaller/Xsd/objects.xsd
diff --git a/src/WixToolset.Data/Data/Xsd/outputs.xsd b/src/WixToolset.Data/WindowsInstaller/Xsd/outputs.xsd
index 00e20f12..00e20f12 100644
--- a/src/WixToolset.Data/Data/Xsd/outputs.xsd
+++ b/src/WixToolset.Data/WindowsInstaller/Xsd/outputs.xsd
diff --git a/src/WixToolset.Data/Data/Xsd/pdbs.xsd b/src/WixToolset.Data/WindowsInstaller/Xsd/pdbs.xsd
index c1d1756d..c1d1756d 100644
--- a/src/WixToolset.Data/Data/Xsd/pdbs.xsd
+++ b/src/WixToolset.Data/WindowsInstaller/Xsd/pdbs.xsd
diff --git a/src/WixToolset.Data/WixCorruptFileException.cs b/src/WixToolset.Data/WixCorruptFileException.cs
index f663b92d..f77f0d8a 100644
--- a/src/WixToolset.Data/WixCorruptFileException.cs
+++ b/src/WixToolset.Data/WixCorruptFileException.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 public class WixCorruptFileException : WixException 10 public class WixCorruptFileException : WixException
11 { 11 {
12 public WixCorruptFileException(string path, FileFormat format, Exception innerException = null) 12 public WixCorruptFileException(string path, FileFormat format, Exception innerException = null)
13 : base(WixDataErrors.CorruptFileFormat(path, format.ToString().ToLowerInvariant()), innerException) 13 : base(ErrorMessages.CorruptFileFormat(path, format), innerException)
14 { 14 {
15 this.Path = path; 15 this.Path = path;
16 this.FileFormat = format; 16 this.FileFormat = format;
@@ -19,11 +19,11 @@ namespace WixToolset.Data
19 /// <summary> 19 /// <summary>
20 /// Gets the actual file format found in the file. 20 /// Gets the actual file format found in the file.
21 /// </summary> 21 /// </summary>
22 public FileFormat FileFormat { get; private set; } 22 public FileFormat FileFormat { get; }
23 23
24 /// <summary> 24 /// <summary>
25 /// Gets the path to the file with unexpected format. 25 /// Gets the path to the file with unexpected format.
26 /// </summary> 26 /// </summary>
27 public string Path { get; set; } 27 public string Path { get; }
28 } 28 }
29} 29}
diff --git a/src/WixToolset.Data/WixDataStrings.Designer.cs b/src/WixToolset.Data/WixDataStrings.Designer.cs
index 37cced32..23555d3c 100644
--- a/src/WixToolset.Data/WixDataStrings.Designer.cs
+++ b/src/WixToolset.Data/WixDataStrings.Designer.cs
@@ -53,15 +53,6 @@ namespace WixToolset.Data {
53 } 53 }
54 54
55 /// <summary> 55 /// <summary>
56 /// Looks up a localized string similar to Cannot index into a FileRowCollection that allows duplicate FileIds.
57 /// </summary>
58 internal static string EXP_CannotIndexIntoFileRowCollection {
59 get {
60 return ResourceManager.GetString("EXP_CannotIndexIntoFileRowCollection", resourceCulture);
61 }
62 }
63
64 /// <summary>
65 /// Looks up a localized string similar to The value &apos;{0}&apos; is not a legal identifier and therefore cannot be modularized.. 56 /// Looks up a localized string similar to The value &apos;{0}&apos; is not a legal identifier and therefore cannot be modularized..
66 /// </summary> 57 /// </summary>
67 public static string EXP_CannotModularizeIllegalID { 58 public static string EXP_CannotModularizeIllegalID {
@@ -89,15 +80,6 @@ namespace WixToolset.Data {
89 } 80 }
90 81
91 /// <summary> 82 /// <summary>
92 /// Looks up a localized string similar to Didn&apos;t find duplicated symbol..
93 /// </summary>
94 internal static string EXP_DidnotFindDuplicateSymbol {
95 get {
96 return ResourceManager.GetString("EXP_DidnotFindDuplicateSymbol", resourceCulture);
97 }
98 }
99
100 /// <summary>
101 /// Looks up a localized string similar to Element must be a subclass of {0}, but was of type {1}.. 83 /// Looks up a localized string similar to Element must be a subclass of {0}, but was of type {1}..
102 /// </summary> 84 /// </summary>
103 internal static string EXP_ElementIsSubclassOfDifferentType { 85 internal static string EXP_ElementIsSubclassOfDifferentType {
@@ -125,15 +107,6 @@ namespace WixToolset.Data {
125 } 107 }
126 108
127 /// <summary> 109 /// <summary>
128 /// Looks up a localized string similar to Expected ComplexReference type..
129 /// </summary>
130 internal static string EXP_ExpectedComplexReferenceType {
131 get {
132 return ResourceManager.GetString("EXP_ExpectedComplexReferenceType", resourceCulture);
133 }
134 }
135
136 /// <summary>
137 /// Looks up a localized string similar to ISchemaElement with name {0} does not implement ICreateChildren.. 110 /// Looks up a localized string similar to ISchemaElement with name {0} does not implement ICreateChildren..
138 /// </summary> 111 /// </summary>
139 internal static string EXP_ISchemaElementDoesnotImplementICreateChildren { 112 internal static string EXP_ISchemaElementDoesnotImplementICreateChildren {
@@ -170,15 +143,6 @@ namespace WixToolset.Data {
170 } 143 }
171 144
172 /// <summary> 145 /// <summary>
173 /// Looks up a localized string similar to The other object is not a FileRow..
174 /// </summary>
175 internal static string EXP_OtherObjectIsNotFileRow {
176 get {
177 return ResourceManager.GetString("EXP_OtherObjectIsNotFileRow", resourceCulture);
178 }
179 }
180
181 /// <summary>
182 /// Looks up a localized string similar to Type {0} is not valid for this collection.. 146 /// Looks up a localized string similar to Type {0} is not valid for this collection..
183 /// </summary> 147 /// </summary>
184 internal static string EXP_TypeIsNotValidForThisCollection { 148 internal static string EXP_TypeIsNotValidForThisCollection {
@@ -188,15 +152,6 @@ namespace WixToolset.Data {
188 } 152 }
189 153
190 /// <summary> 154 /// <summary>
191 /// Looks up a localized string similar to Unexpected entry section type: {0}.
192 /// </summary>
193 public static string EXP_UnexpectedEntrySectionType {
194 get {
195 return ResourceManager.GetString("EXP_UnexpectedEntrySectionType", resourceCulture);
196 }
197 }
198
199 /// <summary>
200 /// Looks up a localized string similar to Unknown column type: {0}. 155 /// Looks up a localized string similar to Unknown column type: {0}.
201 /// </summary> 156 /// </summary>
202 public static string EXP_UnknownColumnType { 157 public static string EXP_UnknownColumnType {
@@ -206,15 +161,6 @@ namespace WixToolset.Data {
206 } 161 }
207 162
208 /// <summary> 163 /// <summary>
209 /// Looks up a localized string similar to Unknown compression level type: {0}.
210 /// </summary>
211 internal static string EXP_UnknownCompressionLevelType {
212 get {
213 return ResourceManager.GetString("EXP_UnknownCompressionLevelType", resourceCulture);
214 }
215 }
216
217 /// <summary>
218 /// Looks up a localized string similar to The table {0} is not supported.. 164 /// Looks up a localized string similar to The table {0} is not supported..
219 /// </summary> 165 /// </summary>
220 public static string EXP_UnsupportedTable { 166 public static string EXP_UnsupportedTable {
@@ -231,77 +177,5 @@ namespace WixToolset.Data {
231 return ResourceManager.GetString("EXP_XmlElementDoesnotHaveISchemaElement", resourceCulture); 177 return ResourceManager.GetString("EXP_XmlElementDoesnotHaveISchemaElement", resourceCulture);
232 } 178 }
233 } 179 }
234
235 /// <summary>
236 /// Looks up a localized string similar to {0}({1}).
237 /// </summary>
238 internal static string Format_FirstLineNumber {
239 get {
240 return ResourceManager.GetString("Format_FirstLineNumber", resourceCulture);
241 }
242 }
243
244 /// <summary>
245 /// Looks up a localized string similar to {0}.
246 /// </summary>
247 internal static string Format_InfoMessage {
248 get {
249 return ResourceManager.GetString("Format_InfoMessage", resourceCulture);
250 }
251 }
252
253 /// <summary>
254 /// Looks up a localized string similar to {0}: line {1}.
255 /// </summary>
256 internal static string Format_LineNumber {
257 get {
258 return ResourceManager.GetString("Format_LineNumber", resourceCulture);
259 }
260 }
261
262 /// <summary>
263 /// Looks up a localized string similar to {0} : {1} {2}{3:0000} : {4}.
264 /// </summary>
265 internal static string Format_NonInfoMessage {
266 get {
267 return ResourceManager.GetString("Format_NonInfoMessage", resourceCulture);
268 }
269 }
270
271 /// <summary>
272 /// Looks up a localized string similar to Source trace:{0}.
273 /// </summary>
274 internal static string INF_SourceTrace {
275 get {
276 return ResourceManager.GetString("INF_SourceTrace", resourceCulture);
277 }
278 }
279
280 /// <summary>
281 /// Looks up a localized string similar to at {0}{1}.
282 /// </summary>
283 internal static string INF_SourceTraceLocation {
284 get {
285 return ResourceManager.GetString("INF_SourceTraceLocation", resourceCulture);
286 }
287 }
288
289 /// <summary>
290 /// Looks up a localized string similar to error.
291 /// </summary>
292 internal static string MessageType_Error {
293 get {
294 return ResourceManager.GetString("MessageType_Error", resourceCulture);
295 }
296 }
297
298 /// <summary>
299 /// Looks up a localized string similar to warning.
300 /// </summary>
301 internal static string MessageType_Warning {
302 get {
303 return ResourceManager.GetString("MessageType_Warning", resourceCulture);
304 }
305 }
306 } 180 }
307} 181}
diff --git a/src/WixToolset.Data/WixDataStrings.resx b/src/WixToolset.Data/WixDataStrings.resx
index 16b70d83..19cdc3c7 100644
--- a/src/WixToolset.Data/WixDataStrings.resx
+++ b/src/WixToolset.Data/WixDataStrings.resx
@@ -117,63 +117,21 @@
117 <resheader name="writer"> 117 <resheader name="writer">
118 <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 118 <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119 </resheader> 119 </resheader>
120 <data name="EXP_UnexpectedEntrySectionType" xml:space="preserve">
121 <value>Unexpected entry section type: {0}</value>
122 </data>
123 <data name="EXP_UnsupportedTable" xml:space="preserve"> 120 <data name="EXP_UnsupportedTable" xml:space="preserve">
124 <value>The table {0} is not supported.</value> 121 <value>The table {0} is not supported.</value>
125 </data> 122 </data>
126 <data name="EXP_MergeTableFileCompressionColumnContainsInvalidValue" xml:space="preserve"> 123 <data name="EXP_MergeTableFileCompressionColumnContainsInvalidValue" xml:space="preserve">
127 <value>A Merge table FileCompression column contains an invalid value '{0}'.</value> 124 <value>A Merge table FileCompression column contains an invalid value '{0}'.</value>
128 </data> 125 </data>
129 <data name="EXP_OtherObjectIsNotFileRow" xml:space="preserve">
130 <value>The other object is not a FileRow.</value>
131 </data>
132 <data name="EXP_CannotIndexIntoFileRowCollection" xml:space="preserve">
133 <value>Cannot index into a FileRowCollection that allows duplicate FileIds</value>
134 </data>
135 <data name="EXP_CannotSetMergeTableFileCompressionColumnToInvalidValue" xml:space="preserve"> 126 <data name="EXP_CannotSetMergeTableFileCompressionColumnToInvalidValue" xml:space="preserve">
136 <value>A Merge table FileCompression column cannot be set to the invalid value '{0}'.</value> 127 <value>A Merge table FileCompression column cannot be set to the invalid value '{0}'.</value>
137 </data> 128 </data>
138 <data name="EXP_ExpectedComplexReferenceType" xml:space="preserve">
139 <value>Expected ComplexReference type.</value>
140 </data>
141 <data name="EXP_CannotModularizeIllegalID" xml:space="preserve"> 129 <data name="EXP_CannotModularizeIllegalID" xml:space="preserve">
142 <value>The value '{0}' is not a legal identifier and therefore cannot be modularized.</value> 130 <value>The value '{0}' is not a legal identifier and therefore cannot be modularized.</value>
143 </data> 131 </data>
144 <data name="EXP_DidnotFindDuplicateSymbol" xml:space="preserve">
145 <value>Didn't find duplicated symbol.</value>
146 </data>
147 <data name="EXP_UnknownColumnType" xml:space="preserve"> 132 <data name="EXP_UnknownColumnType" xml:space="preserve">
148 <value>Unknown column type: {0}</value> 133 <value>Unknown column type: {0}</value>
149 </data> 134 </data>
150 <data name="EXP_UnknownCompressionLevelType" xml:space="preserve">
151 <value>Unknown compression level type: {0}</value>
152 </data>
153 <data name="Format_FirstLineNumber" xml:space="preserve">
154 <value>{0}({1})</value>
155 </data>
156 <data name="Format_InfoMessage" xml:space="preserve">
157 <value>{0}</value>
158 </data>
159 <data name="Format_LineNumber" xml:space="preserve">
160 <value>{0}: line {1}</value>
161 </data>
162 <data name="Format_NonInfoMessage" xml:space="preserve">
163 <value>{0} : {1} {2}{3:0000} : {4}</value>
164 </data>
165 <data name="INF_SourceTrace" xml:space="preserve">
166 <value>Source trace:{0}</value>
167 </data>
168 <data name="INF_SourceTraceLocation" xml:space="preserve">
169 <value>at {0}{1}</value>
170 </data>
171 <data name="MessageType_Error" xml:space="preserve">
172 <value>error</value>
173 </data>
174 <data name="MessageType_Warning" xml:space="preserve">
175 <value>warning</value>
176 </data>
177 <data name="EXP_MultipleRootElementsFoundInFile" xml:space="preserve"> 135 <data name="EXP_MultipleRootElementsFoundInFile" xml:space="preserve">
178 <value>Multiple root elements found in file.</value> 136 <value>Multiple root elements found in file.</value>
179 </data> 137 </data>
diff --git a/src/WixToolset.Data/WixException.cs b/src/WixToolset.Data/WixException.cs
index 1254e090..e27e3584 100644
--- a/src/WixToolset.Data/WixException.cs
+++ b/src/WixToolset.Data/WixException.cs
@@ -10,13 +10,11 @@ namespace WixToolset.Data
10 [Serializable] 10 [Serializable]
11 public class WixException : Exception 11 public class WixException : Exception
12 { 12 {
13 private MessageEventArgs error;
14
15 /// <summary> 13 /// <summary>
16 /// Instantiate a new WixException with a given WixError. 14 /// Instantiate a new WixException with a given WixError.
17 /// </summary> 15 /// </summary>
18 /// <param name="error">The localized error information.</param> 16 /// <param name="error">The localized error information.</param>
19 public WixException(MessageEventArgs error) 17 public WixException(Message error)
20 : this(error, null) 18 : this(error, null)
21 { 19 {
22 } 20 }
@@ -26,19 +24,16 @@ namespace WixToolset.Data
26 /// </summary> 24 /// </summary>
27 /// <param name="error">The localized error information.</param> 25 /// <param name="error">The localized error information.</param>
28 /// <param name="exception">Original exception.</param> 26 /// <param name="exception">Original exception.</param>
29 public WixException(MessageEventArgs error, Exception exception) : 27 public WixException(Message error, Exception exception) :
30 base(error.GenerateMessageString(), exception) 28 base(error.ToString(), exception)
31 { 29 {
32 this.error = error; 30 this.Error = error;
33 } 31 }
34 32
35 /// <summary> 33 /// <summary>
36 /// Gets the error message. 34 /// Gets the error message.
37 /// </summary> 35 /// </summary>
38 /// <value>The error message.</value> 36 /// <value>The error message.</value>
39 public MessageEventArgs Error 37 public Message Error { get; }
40 {
41 get { return this.error; }
42 }
43 } 38 }
44} 39}
diff --git a/src/WixToolset.Data/WixUnexpectedFileFormatException.cs b/src/WixToolset.Data/WixUnexpectedFileFormatException.cs
index 4d1e39e9..340fb4d7 100644
--- a/src/WixToolset.Data/WixUnexpectedFileFormatException.cs
+++ b/src/WixToolset.Data/WixUnexpectedFileFormatException.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 public class WixUnexpectedFileFormatException : WixException 10 public class WixUnexpectedFileFormatException : WixException
11 { 11 {
12 public WixUnexpectedFileFormatException(string path, FileFormat expectedFormat, FileFormat format, Exception innerException = null) 12 public WixUnexpectedFileFormatException(string path, FileFormat expectedFormat, FileFormat format, Exception innerException = null)
13 : base(WixDataErrors.UnexpectedFileFormat(path, expectedFormat.ToString().ToLowerInvariant(), format.ToString().ToLowerInvariant()), innerException) 13 : base(ErrorMessages.UnexpectedFileFormat(path, expectedFormat, format), innerException)
14 { 14 {
15 this.Path = path; 15 this.Path = path;
16 this.ExpectedFileFormat = expectedFormat; 16 this.ExpectedFileFormat = expectedFormat;
@@ -20,12 +20,12 @@ namespace WixToolset.Data
20 /// <summary> 20 /// <summary>
21 /// Gets the expected file format. 21 /// Gets the expected file format.
22 /// </summary> 22 /// </summary>
23 public FileFormat ExpectedFileFormat { get; private set; } 23 public FileFormat ExpectedFileFormat { get; }
24 24
25 /// <summary> 25 /// <summary>
26 /// Gets the actual file format found in the file. 26 /// Gets the actual file format found in the file.
27 /// </summary> 27 /// </summary>
28 public FileFormat FileFormat { get; private set; } 28 public FileFormat FileFormat { get; }
29 29
30 /// <summary> 30 /// <summary>
31 /// Gets the path to the file with unexpected format. 31 /// Gets the path to the file with unexpected format.