@joebigelow / wix-1 / commits / 0832f4f8

Improve CollidingModularizationTypes message.

Bob Arnson committed Mar 8, 2021 at 16:58 UTC 0832f4f8538a9621c8197f406edd95990232dfe4
1 file changed +1 -1
src/WixToolset.Data/ErrorMessages.cs
+1 -1
@@ -170,7 +170,7 @@ namespace WixToolset.Data
170
171 public static Message CollidingModularizationTypes(string tableName, string columnName, string foreignTableName, int foreignColumnNumber, string modularizationType, string foreignModularizationType)
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 }
175
176 public static Message ComponentExpectedFeature(SourceLineNumber sourceLineNumbers, string component, string type, string target)