diff options
author | Bob Arnson <bob@firegiant.com> | 2021-03-08 16:58:43 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2021-03-08 17:05:15 -0500 |
commit | 0832f4f8538a9621c8197f406edd95990232dfe4 (patch) | |
tree | 5a7b41937054fe310aafcbf97ef0ec4b1e10e685 /src | |
parent | dc13aa675da9307e36e8ff84b9914aceee15593d (diff) | |
download | wix-0832f4f8538a9621c8197f406edd95990232dfe4.tar.gz wix-0832f4f8538a9621c8197f406edd95990232dfe4.tar.bz2 wix-0832f4f8538a9621c8197f406edd95990232dfe4.zip |
Improve CollidingModularizationTypes message.
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Data/ErrorMessages.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs index d895775d..34192da4 100644 --- a/src/WixToolset.Data/ErrorMessages.cs +++ b/src/WixToolset.Data/ErrorMessages.cs | |||
@@ -170,7 +170,7 @@ namespace WixToolset.Data | |||
170 | 170 | ||
171 | public static Message CollidingModularizationTypes(string tableName, string columnName, string foreignTableName, int foreignColumnNumber, string modularizationType, string foreignModularizationType) | 171 | public static Message CollidingModularizationTypes(string tableName, string columnName, string foreignTableName, int foreignColumnNumber, string modularizationType, string foreignModularizationType) |
172 | { | 172 | { |
173 | 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); | 173 | 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: table '{0}' uses type {4} and table '{2}' uses type {5}. Change one of the modularization types so that they match.", tableName, columnName, foreignTableName, foreignColumnNumber, modularizationType, foreignModularizationType); |
174 | } | 174 | } |
175 | 175 | ||
176 | public static Message ComponentExpectedFeature(SourceLineNumber sourceLineNumbers, string component, string type, string target) | 176 | public static Message ComponentExpectedFeature(SourceLineNumber sourceLineNumbers, string component, string type, string target) |