diff options
author | Bob Arnson <bob@firegiant.com> | 2021-01-26 11:35:19 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2021-01-26 11:37:13 -0500 |
commit | 37067209fa6defaecc877bab07262e9cf78088c5 (patch) | |
tree | 71f248ed38a76cf05c6c9ded37cf043944f434c0 /src | |
parent | 488177ce1f72154d75a1bcb5eb6d1030251afa87 (diff) | |
download | wix-37067209fa6defaecc877bab07262e9cf78088c5.tar.gz wix-37067209fa6defaecc877bab07262e9cf78088c5.tar.bz2 wix-37067209fa6defaecc877bab07262e9cf78088c5.zip |
Add DefaultCompressionLevel support.
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Data/ErrorMessages.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs index 644f08d7..b2a32961 100644 --- a/src/WixToolset.Data/ErrorMessages.cs +++ b/src/WixToolset.Data/ErrorMessages.cs | |||
@@ -954,9 +954,9 @@ namespace WixToolset.Data | |||
954 | return Message(sourceLineNumbers, Ids.IllegalComponentWithAutoGeneratedGuid, "The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with registry keypaths and files cannot use an automatically generated guid. Create multiple components, each with one file and/or one registry value keypath, to use automatically generated guids.", registryKeyPath); | 954 | return Message(sourceLineNumbers, Ids.IllegalComponentWithAutoGeneratedGuid, "The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the criteria for having an automatically generated guid. Components with registry keypaths and files cannot use an automatically generated guid. Create multiple components, each with one file and/or one registry value keypath, to use automatically generated guids.", registryKeyPath); |
955 | } | 955 | } |
956 | 956 | ||
957 | public static Message IllegalCompressionLevel(string compressionLevel) | 957 | public static Message IllegalCompressionLevel(SourceLineNumber sourceLineNumbers, string compressionLevel) |
958 | { | 958 | { |
959 | return Message(null, Ids.IllegalCompressionLevel, "The compression level '{0}' is not valid. Valid values are 'none', 'low', 'medium', 'high', and 'mszip'.", compressionLevel); | 959 | return Message(sourceLineNumbers, Ids.IllegalCompressionLevel, "The compression level '{0}' is not valid. Valid values are 'none', 'low', 'medium', 'high', and 'mszip'.", compressionLevel); |
960 | } | 960 | } |
961 | 961 | ||
962 | public static Message IllegalDefineStatement(SourceLineNumber sourceLineNumbers, string defineStatement) | 962 | public static Message IllegalDefineStatement(SourceLineNumber sourceLineNumbers, string defineStatement) |