diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-10-18 15:14:03 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-10-18 15:14:03 -0700 |
| commit | a8656a87887d6cb2c54f4bbeacee37f7074f1032 (patch) | |
| tree | cc09d228656cb411bb4f5a5d337491a2c980a9a7 /src/WixToolset.Data/Data/messages.xml | |
| parent | d0d48599caf5b5f018b9fdd4ea8f6064d76d2e8b (diff) | |
| download | wix-a8656a87887d6cb2c54f4bbeacee37f7074f1032.tar.gz wix-a8656a87887d6cb2c54f4bbeacee37f7074f1032.tar.bz2 wix-a8656a87887d6cb2c54f4bbeacee37f7074f1032.zip | |
Commit generated message and schema classes one way to better system
Generating messages and schema classes from XML is a bit cool but is
fraught with issues when there is a build failure anywhere. This commits
those generated files until a better process is in place.
Diffstat (limited to 'src/WixToolset.Data/Data/messages.xml')
| -rw-r--r-- | src/WixToolset.Data/Data/messages.xml | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/src/WixToolset.Data/Data/messages.xml b/src/WixToolset.Data/Data/messages.xml deleted file mode 100644 index 191e0b3e..00000000 --- a/src/WixToolset.Data/Data/messages.xml +++ /dev/null | |||
| @@ -1,95 +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="DuplicateLocalizationIdentifier" Number="100"> | ||
| 23 | <Instance> | ||
| 24 | The localization identifier '{0}' has been duplicated in multiple locations. Please resolve the conflict. | ||
| 25 | <Parameter Type="System.String" Name="localizationId" /> | ||
| 26 | </Instance> | ||
| 27 | </Message> | ||
| 28 | <Message Id="FileNotFound" Number="103"> | ||
| 29 | <Instance> | ||
| 30 | The system cannot find the file '{0}'. | ||
| 31 | <Parameter Type="System.String" Name="file" /> | ||
| 32 | </Instance> | ||
| 33 | <Instance> | ||
| 34 | The system cannot find the file '{0}' with type '{1}'. | ||
| 35 | <Parameter Type="System.String" Name="file" /> | ||
| 36 | <Parameter Type="System.String" Name="fileType" /> | ||
| 37 | </Instance> | ||
| 38 | </Message> | ||
| 39 | <Message Id="DuplicatePrimaryKey" Number="130"> | ||
| 40 | <Instance> | ||
| 41 | 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. | ||
| 42 | <Parameter Type="System.String" Name="primaryKey" /> | ||
| 43 | <Parameter Type="System.String" Name="tableName" /> | ||
| 44 | </Instance> | ||
| 45 | </Message> | ||
| 46 | <Message Id="InvalidIdt" Number="136"> | ||
| 47 | <Instance> | ||
| 48 | There was an error importing the file '{0}'. | ||
| 49 | <Parameter Type="System.String" Name="idtFile" /> | ||
| 50 | </Instance> | ||
| 51 | <Instance> | ||
| 52 | There was an error importing table '{1}' from file '{0}'. | ||
| 53 | <Parameter Type="System.String" Name="idtFile" /> | ||
| 54 | <Parameter Type="System.String" Name="tableName" /> | ||
| 55 | </Instance> | ||
| 56 | </Message> | ||
| 57 | <Message Id="VersionMismatch" Number="141"> | ||
| 58 | <Instance> | ||
| 59 | The {0} file format version {1} is not compatible with the expected {0} file format version {2}. | ||
| 60 | <Parameter Type="System.String" Name="fileType" /> | ||
| 61 | <Parameter Type="System.String" Name="version" /> | ||
| 62 | <Parameter Type="System.String" Name="expectedVersion" /> | ||
| 63 | </Instance> | ||
| 64 | </Message> | ||
| 65 | <Message Id="IllegalFileCompressionAttributes" Number="167"> | ||
| 66 | <Instance>Cannot have both the MsidbFileAttributesCompressed and MsidbFileAttributesNoncompressed options set in a file attributes column.</Instance> | ||
| 67 | </Message> | ||
| 68 | <Message Id="MissingTableDefinition" Number="182" SourceLineNumbers="no"> | ||
| 69 | <Instance> | ||
| 70 | 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. | ||
| 71 | <Parameter Type="System.String" Name="tableName" /> | ||
| 72 | </Instance> | ||
| 73 | </Message> | ||
| 74 | <Message Id="RealTableMissingPrimaryKeyColumn" Number="225"> | ||
| 75 | <Instance> | ||
| 76 | 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. | ||
| 77 | <Parameter Type="System.String" Name="tableName" /> | ||
| 78 | </Instance> | ||
| 79 | </Message> | ||
| 80 | <Message Id="InvalidStringForCodepage" Number="311"> | ||
| 81 | <Instance> | ||
| 82 | 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. | ||
| 83 | <Parameter Type="System.String" Name="codepage" /> | ||
| 84 | </Instance> | ||
| 85 | </Message> | ||
| 86 | <Message Id="TooManyColumnsInRealTable" Number="386" SourceLineNumbers="no"> | ||
| 87 | <Instance> | ||
| 88 | The table '{0}' contains {1} columns which is not supported by Windows Installer. Windows Installer supports a maximum of {2} columns. | ||
| 89 | <Parameter Type="System.String" Name="tableName" /> | ||
| 90 | <Parameter Type="System.Int32" Name="columnCount" /> | ||
| 91 | <Parameter Type="System.Int32" Name="supportedColumnCount" /> | ||
| 92 | </Instance> | ||
| 93 | </Message> | ||
| 94 | </Class> | ||
| 95 | </Messages> | ||
