diff options
author | Bob Arnson <bob@firegiant.com> | 2022-08-14 23:56:32 -0400 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2022-08-15 23:19:55 -0400 |
commit | da5cc586114e537461b239a882c5bbea470d812d (patch) | |
tree | 071c2b90693435e2593b06b950c4cb87b7c43999 /src/api | |
parent | 91b8fb6f3215e9e652ac036f756dec383267adad (diff) | |
download | wix-da5cc586114e537461b239a882c5bbea470d812d.tar.gz wix-da5cc586114e537461b239a882c5bbea470d812d.tar.bz2 wix-da5cc586114e537461b239a882c5bbea470d812d.zip |
Clean up error message when BA is missing.
Fixes https://github.com/wixtoolset/issues/issues/6852.
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Data/ErrorMessages.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs index bb0bdaab..40378a2e 100644 --- a/src/api/wix/WixToolset.Data/ErrorMessages.cs +++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs | |||
@@ -1425,9 +1425,9 @@ namespace WixToolset.Data | |||
1425 | return Message(sourceLineNumbers, Ids.MergePlatformMismatch, "'{0}' is a 64-bit merge module but the product consuming it is 32-bit. 32-bit products can consume only 32-bit merge modules.", mergeModuleFile); | 1425 | return Message(sourceLineNumbers, Ids.MergePlatformMismatch, "'{0}' is a 64-bit merge module but the product consuming it is 32-bit. 32-bit products can consume only 32-bit merge modules.", mergeModuleFile); |
1426 | } | 1426 | } |
1427 | 1427 | ||
1428 | public static Message MissingBundleInformation(string data) | 1428 | public static Message MissingBundleInformation(string friendlyName) |
1429 | { | 1429 | { |
1430 | return Message(null, Ids.MissingBundleInformation, "The Bundle is missing '{0}' data, and cannot continue.", data); | 1430 | return Message(null, Ids.MissingBundleInformation, "The Bundle is missing {0} data, and cannot continue.", friendlyName); |
1431 | } | 1431 | } |
1432 | 1432 | ||
1433 | public static Message MissingBundleSearch(SourceLineNumber sourceLineNumbers, string searchId) | 1433 | public static Message MissingBundleSearch(SourceLineNumber sourceLineNumbers, string searchId) |