diff options
author | Rob Mensching <rob@firegiant.com> | 2023-03-09 04:13:27 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2023-03-09 06:17:00 -0700 |
commit | a14cb82fcca0b5522dfefe862493ad2e51240a84 (patch) | |
tree | df1c50db7bf25f67d7b494aa8f5b4c87601652ee /src/api | |
parent | 3efe3f3a8682f333741b3c52e10eea2297f43dc9 (diff) | |
download | wix-a14cb82fcca0b5522dfefe862493ad2e51240a84.tar.gz wix-a14cb82fcca0b5522dfefe862493ad2e51240a84.tar.bz2 wix-a14cb82fcca0b5522dfefe862493ad2e51240a84.zip |
Warn on mismatched output times and validate only Windows Installer databases
Fixes 7250
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Data/WarningMessages.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/wix/WixToolset.Data/WarningMessages.cs b/src/api/wix/WixToolset.Data/WarningMessages.cs index 65716ba7..7659b4e5 100644 --- a/src/api/wix/WixToolset.Data/WarningMessages.cs +++ b/src/api/wix/WixToolset.Data/WarningMessages.cs | |||
@@ -613,9 +613,9 @@ namespace WixToolset.Data | |||
613 | return Message(sourceLineNumbers, Ids.UnclearShortcut, "Because it is an advertised shortcut, the target of shortcut '{0}' will be the keypath of component '{2}' rather than parent file '{1}'. To eliminate this warning, you can (1) make the Shortcut element a child of the File element that is the keypath of component '{2}', (2) make file '{1}' the keypath of component '{2}', or (3) remove the @Advertise attribute so the shortcut is a non-advertised shortcut.", shortcutId, fileId, componentId); | 613 | return Message(sourceLineNumbers, Ids.UnclearShortcut, "Because it is an advertised shortcut, the target of shortcut '{0}' will be the keypath of component '{2}' rather than parent file '{1}'. To eliminate this warning, you can (1) make the Shortcut element a child of the File element that is the keypath of component '{2}', (2) make file '{1}' the keypath of component '{2}', or (3) remove the @Advertise attribute so the shortcut is a non-advertised shortcut.", shortcutId, fileId, componentId); |
614 | } | 614 | } |
615 | 615 | ||
616 | public static Message UnexpectedEntrySection(SourceLineNumber sourceLineNumbers, string sectionType, string expectedType, string outputExtension) | 616 | public static Message UnexpectedEntrySection(SourceLineNumber sourceLineNumbers, string sectionType, string expectedType) |
617 | { | 617 | { |
618 | return Message(sourceLineNumbers, Ids.UnexpectedEntrySection, "Found mismatched entry point <{0}>. Expected <{1}> for specified output package type {2}.", sectionType, expectedType, outputExtension); | 618 | return Message(sourceLineNumbers, Ids.UnexpectedEntrySection, "Found entry point <{0}> that does not match expected <{1}> output type. Verify that your source code is correct and matches the expected output type.", sectionType, expectedType); |
619 | } | 619 | } |
620 | 620 | ||
621 | public static Message UnexpectedTableInProduct(SourceLineNumber sourceLineNumbers, string tableName) | 621 | public static Message UnexpectedTableInProduct(SourceLineNumber sourceLineNumbers, string tableName) |