aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-08 16:28:58 -0700
committerRob Mensching <rob@firegiant.com>2020-06-08 16:32:07 -0700
commit47a086901d4227ad8d63b82602e4e0132a295741 (patch)
treea9507bf1b7d8b2b95b560defa22fa1a1709587b6
parent021565eca7be6c3307821bd9d4500a73a5c1c68f (diff)
downloadwix-47a086901d4227ad8d63b82602e4e0132a295741.tar.gz
wix-47a086901d4227ad8d63b82602e4e0132a295741.tar.bz2
wix-47a086901d4227ad8d63b82602e4e0132a295741.zip
Add error when extension cannot be found in cache
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/ErrorMessages.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs
index aef2ab66..cb8d5f8f 100644
--- a/src/WixToolset.Data/ErrorMessages.cs
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -1239,6 +1239,11 @@ namespace WixToolset.Data
1239 return Message(sourceLineNumbers, Ids.InvalidEmbeddedUIFileName, "The EmbeddedUI/@Name attribute value, '{0}', does not contain an extension. Windows Installer will not load an embedded UI DLL without an extension. Include an extension or just omit the Name attribute so it defaults to the file name portion of the Source attribute value.", codepage); 1239 return Message(sourceLineNumbers, Ids.InvalidEmbeddedUIFileName, "The EmbeddedUI/@Name attribute value, '{0}', does not contain an extension. Windows Installer will not load an embedded UI DLL without an extension. Include an extension or just omit the Name attribute so it defaults to the file name portion of the Source attribute value.", codepage);
1240 } 1240 }
1241 1241
1242 public static Message CouldNotFindExtensionInPaths(string extensionPath, IEnumerable<string> checkedPaths)
1243 {
1244 return Message(null, Ids.InvalidExtension, "The extension '{0}' could not be found. Checked paths: {1}", extensionPath, String.Join(", ", checkedPaths));
1245 }
1246
1242 public static Message InvalidExtension(string extension) 1247 public static Message InvalidExtension(string extension)
1243 { 1248 {
1244 return Message(null, Ids.InvalidExtension, "The extension '{0}' could not be loaded.", extension); 1249 return Message(null, Ids.InvalidExtension, "The extension '{0}' could not be loaded.", extension);