diff options
author | Bob Arnson <bob@firegiant.com> | 2021-03-07 17:44:38 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2021-03-07 17:49:43 -0500 |
commit | 7f0a67c7c4570f3e453b046b193c06b345fd9f43 (patch) | |
tree | e799feed74ad2fb78b2ac61fd9f0dde18e60cf93 /src | |
parent | b87b6f87a2912ef629cddfc54d773a47f88d83dc (diff) | |
download | wix-7f0a67c7c4570f3e453b046b193c06b345fd9f43.tar.gz wix-7f0a67c7c4570f3e453b046b193c06b345fd9f43.tar.bz2 wix-7f0a67c7c4570f3e453b046b193c06b345fd9f43.zip |
Improve missing entry section error message.
Fixes https://github.com/wixtoolset/issues/issues/5886
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Data/ErrorMessages.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs index 7924c2ab..d895775d 100644 --- a/src/WixToolset.Data/ErrorMessages.cs +++ b/src/WixToolset.Data/ErrorMessages.cs | |||
@@ -1489,6 +1489,11 @@ namespace WixToolset.Data | |||
1489 | return Message(null, Ids.MissingDependencyVersion, "The provider dependency version was not authored for the package with Id '{0}'. Please author the Provides/@Version attribute for this package.", packageId); | 1489 | return Message(null, Ids.MissingDependencyVersion, "The provider dependency version was not authored for the package with Id '{0}'. Please author the Provides/@Version attribute for this package.", packageId); |
1490 | } | 1490 | } |
1491 | 1491 | ||
1492 | public static Message MissingEntrySection() | ||
1493 | { | ||
1494 | return Message(null, Ids.MissingEntrySection, "Could not find entry section in provided list of intermediates. Supported entry section types are: Product, Bundle, Patch, PatchCreation, Module."); | ||
1495 | } | ||
1496 | |||
1492 | public static Message MissingEntrySection(string sectionType) | 1497 | public static Message MissingEntrySection(string sectionType) |
1493 | { | 1498 | { |
1494 | return Message(null, Ids.MissingEntrySection, "Could not find entry section in provided list of intermediates. Expected section of type '{0}'.", sectionType); | 1499 | return Message(null, Ids.MissingEntrySection, "Could not find entry section in provided list of intermediates. Expected section of type '{0}'.", sectionType); |