diff options
-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); |