aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/ErrorMessages.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-02-28 23:03:23 -0800
committerRob Mensching <rob@firegiant.com>2021-03-01 12:18:32 -0800
commitaa072ea259b9685804134debda936436b142e12f (patch)
tree97fbac781eb2b7e03490d9069086093512befbe4 /src/WixToolset.Data/ErrorMessages.cs
parentc0b3e09c76e4de4e81af9d41bb1170dd8bd20d6d (diff)
downloadwix-aa072ea259b9685804134debda936436b142e12f.tar.gz
wix-aa072ea259b9685804134debda936436b142e12f.tar.bz2
wix-aa072ea259b9685804134debda936436b142e12f.zip
Update errors/warnings now that well-known folders are optional
Diffstat (limited to 'src/WixToolset.Data/ErrorMessages.cs')
-rw-r--r--src/WixToolset.Data/ErrorMessages.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs
index c69a675a..c4b74e4e 100644
--- a/src/WixToolset.Data/ErrorMessages.cs
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -263,11 +263,6 @@ namespace WixToolset.Data
263 return Message(null, Ids.DirectoryPathRequired, "The parameter '{0}' must be followed by a directory path.", parameter); 263 return Message(null, Ids.DirectoryPathRequired, "The parameter '{0}' must be followed by a directory path.", parameter);
264 } 264 }
265 265
266 public static Message DirectoryRootWithoutName(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
267 {
268 return Message(sourceLineNumbers, Ids.DirectoryRootWithoutName, "The {0} element requires the {1} attribute because there is no parent {0} element.", elementName, attributeName);
269 }
270
271 public static Message DisallowedMsiProperty(SourceLineNumber sourceLineNumbers, string property, string illegalValueList) 266 public static Message DisallowedMsiProperty(SourceLineNumber sourceLineNumbers, string property, string illegalValueList)
272 { 267 {
273 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); 268 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);
@@ -2320,7 +2315,6 @@ namespace WixToolset.Data
2320 CustomActionMultipleSources = 22, 2315 CustomActionMultipleSources = 22,
2321 CustomActionMultipleTargets = 23, 2316 CustomActionMultipleTargets = 23,
2322 CustomActionIllegalInnerText = 24, 2317 CustomActionIllegalInnerText = 24,
2323 DirectoryRootWithoutName = 25,
2324 IllegalShortFilename = 26, 2318 IllegalShortFilename = 26,
2325 IllegalLongFilename = 27, 2319 IllegalLongFilename = 27,
2326 TableNameTooLong = 28, 2320 TableNameTooLong = 28,