diff options
author | Rob Mensching <rob@firegiant.com> | 2023-11-06 22:36:57 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2023-11-07 09:52:26 -0800 |
commit | a886df0a02f26a3fc30cf836a5a4cadbf4ab2bcd (patch) | |
tree | 4a2d4acbfc37024913a8da90df9f03ea3b890e80 /src/api | |
parent | 96e9c0f76029f27bd1f2a777aca385b29e9ec21a (diff) | |
download | wix-a886df0a02f26a3fc30cf836a5a4cadbf4ab2bcd.tar.gz wix-a886df0a02f26a3fc30cf836a5a4cadbf4ab2bcd.tar.bz2 wix-a886df0a02f26a3fc30cf836a5a4cadbf4ab2bcd.zip |
Correctly handle top-level AppId element
Fixes 7738
Diffstat (limited to '')
-rw-r--r-- | src/api/wix/WixToolset.Data/ErrorMessages.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs index 77433e6d..7cb0f4f9 100644 --- a/src/api/wix/WixToolset.Data/ErrorMessages.cs +++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs | |||
@@ -55,7 +55,7 @@ namespace WixToolset.Data | |||
55 | 55 | ||
56 | public static Message AppIdIncompatibleAdvertiseState(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string parentValue) | 56 | public static Message AppIdIncompatibleAdvertiseState(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, string parentValue) |
57 | { | 57 | { |
58 | return Message(sourceLineNumbers, Ids.AppIdIncompatibleAdvertiseState, "The {0}/@(1) attribute's value, '{2}' does not match the advertise state on its parent element: '{3}'. (Note: AppIds nested under Fragment, Module, or Product elements must be advertised.)", elementName, attributeName, value, parentValue); | 58 | return Message(sourceLineNumbers, Ids.AppIdIncompatibleAdvertiseState, "The {0}/@(1) attribute's value, '{2}' does not match the advertise state on its parent element: '{3}'. (Note: AppIds nested under Fragment, Module, or Package elements must be advertised.)", elementName, attributeName, value, parentValue); |
59 | } | 59 | } |
60 | 60 | ||
61 | public static Message BaselineRequired() | 61 | public static Message BaselineRequired() |