From aa072ea259b9685804134debda936436b142e12f Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 28 Feb 2021 23:03:23 -0800 Subject: Update errors/warnings now that well-known folders are optional --- src/WixToolset.Data/ErrorMessages.cs | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/WixToolset.Data/ErrorMessages.cs') 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 return Message(null, Ids.DirectoryPathRequired, "The parameter '{0}' must be followed by a directory path.", parameter); } - public static Message DirectoryRootWithoutName(SourceLineNumber sourceLineNumbers, string elementName, string attributeName) - { - return Message(sourceLineNumbers, Ids.DirectoryRootWithoutName, "The {0} element requires the {1} attribute because there is no parent {0} element.", elementName, attributeName); - } - public static Message DisallowedMsiProperty(SourceLineNumber sourceLineNumbers, string property, string illegalValueList) { 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 CustomActionMultipleSources = 22, CustomActionMultipleTargets = 23, CustomActionIllegalInnerText = 24, - DirectoryRootWithoutName = 25, IllegalShortFilename = 26, IllegalLongFilename = 27, TableNameTooLong = 28, -- cgit v1.2.3-55-g6feb