aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/ErrorMessages.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-03-15 20:41:08 -0400
committerBob Arnson <bob@firegiant.com>2021-03-15 20:43:24 -0400
commit8bb7f447b3a44c6f7dfeb3a413c402903f72386f (patch)
treea4555072053ed2d57c950b9bb2b6ff4ed653f386 /src/WixToolset.Data/ErrorMessages.cs
parentdb5c1dd657a495d9ff33b42b4f1d6c8f53c0fc00 (diff)
downloadwix-8bb7f447b3a44c6f7dfeb3a413c402903f72386f.tar.gz
wix-8bb7f447b3a44c6f7dfeb3a413c402903f72386f.tar.bz2
wix-8bb7f447b3a44c6f7dfeb3a413c402903f72386f.zip
Demote CollidingModularizationTypes from error to warning
Diffstat (limited to 'src/WixToolset.Data/ErrorMessages.cs')
-rw-r--r--src/WixToolset.Data/ErrorMessages.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs
index 34192da4..ffd975e3 100644
--- a/src/WixToolset.Data/ErrorMessages.cs
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -168,11 +168,6 @@ namespace WixToolset.Data
168 return Message(null, Ids.CircularSearchReference, "A circular reference of search ordering constraints was detected: {0}. Search ordering references must form a directed acyclic graph.", chain); 168 return Message(null, Ids.CircularSearchReference, "A circular reference of search ordering constraints was detected: {0}. Search ordering references must form a directed acyclic graph.", chain);
169 } 169 }
170 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: 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) 171 public static Message ComponentExpectedFeature(SourceLineNumber sourceLineNumbers, string component, string type, string target)
177 { 172 {
178 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); 173 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);