aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/ErrorMessages.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-01-31 19:20:54 -0500
committerBob Arnson <bob@firegiant.com>2021-01-31 19:22:43 -0500
commitfa0ca50300e55a730d1df33347559620edec99f3 (patch)
tree14907a19f2a4ada56ee3957fc62dd6e743077ede /src/WixToolset.Data/ErrorMessages.cs
parent37067209fa6defaecc877bab07262e9cf78088c5 (diff)
downloadwix-fa0ca50300e55a730d1df33347559620edec99f3.tar.gz
wix-fa0ca50300e55a730d1df33347559620edec99f3.tar.bz2
wix-fa0ca50300e55a730d1df33347559620edec99f3.zip
Remove Burn Authenticode. Fixes https://github.com/wixtoolset/issues/issues/6301.
Diffstat (limited to 'src/WixToolset.Data/ErrorMessages.cs')
-rw-r--r--src/WixToolset.Data/ErrorMessages.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs
index b2a32961..c69a675a 100644
--- a/src/WixToolset.Data/ErrorMessages.cs
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -158,16 +158,6 @@ namespace WixToolset.Data
158 return Message(sourceLineNumbers, Ids.CannotReundefineVariable, "The variable '{0}' cannot be undefined because its already undefined.", variableName); 158 return Message(sourceLineNumbers, Ids.CannotReundefineVariable, "The variable '{0}' cannot be undefined because its already undefined.", variableName);
159 } 159 }
160 160
161 public static Message CatalogFileHashFailed(string fileName, int errorCode)
162 {
163 return Message(null, Ids.CatalogFileHashFailed, "Could not get hash of file '{0}'. Error: {2}.", fileName, errorCode);
164 }
165
166 public static Message CatalogVerificationFailed(string fileName)
167 {
168 return Message(null, Ids.CatalogVerificationFailed, "File '{0}' could not be verified with a catalog file.", fileName);
169 }
170
171 public static Message CheckBoxValueOnlyValidWithCheckBox(SourceLineNumber sourceLineNumbers, string elementName, string controlType) 161 public static Message CheckBoxValueOnlyValidWithCheckBox(SourceLineNumber sourceLineNumbers, string elementName, string controlType)
172 { 162 {
173 return Message(sourceLineNumbers, Ids.CheckBoxValueOnlyValidWithCheckBox, "A {0} element was specified with Type='{1}' and a CheckBoxValue. Check box values can only be specified with Type='CheckBox'.", elementName, controlType); 163 return Message(sourceLineNumbers, Ids.CheckBoxValueOnlyValidWithCheckBox, "A {0} element was specified with Type='{1}' and a CheckBoxValue. Check box values can only be specified with Type='CheckBox'.", elementName, controlType);
@@ -2656,8 +2646,6 @@ namespace WixToolset.Data
2656 MediaTableCollision = 357, 2646 MediaTableCollision = 357,
2657 InvalidCabinetTemplate = 358, 2647 InvalidCabinetTemplate = 358,
2658 MaximumUncompressedMediaSizeTooLarge = 359, 2648 MaximumUncompressedMediaSizeTooLarge = 359,
2659 CatalogVerificationFailed = 360,
2660 CatalogFileHashFailed = 361,
2661 ReservedNamespaceViolation = 362, 2649 ReservedNamespaceViolation = 362,
2662 PerUserButAllUsersEquals1 = 363, 2650 PerUserButAllUsersEquals1 = 363,
2663 UnsupportedAllUsersValue = 364, 2651 UnsupportedAllUsersValue = 364,