diff options
author | Bob Arnson <bob@firegiant.com> | 2024-01-01 22:07:46 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-01-01 22:53:44 -0500 |
commit | 44a13ff738267fc7e1147e46cd86df6cdbba7bb3 (patch) | |
tree | 3a7451f479e84a666605ab74ac2ee44d94cf576b /src/api | |
parent | 59ca47751ea1d59198e01b7e6a0a3d9fc144088e (diff) | |
download | wix-44a13ff738267fc7e1147e46cd86df6cdbba7bb3.tar.gz wix-44a13ff738267fc7e1147e46cd86df6cdbba7bb3.tar.bz2 wix-44a13ff738267fc7e1147e46cd86df6cdbba7bb3.zip |
Remove warning for `Wix` bundle variable prefix.
It's a bit overzealous.
Fixes https://github.com/wixtoolset/issues/issues/7579.
Diffstat (limited to 'src/api')
-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 e149d54a..e7c88613 100644 --- a/src/api/wix/WixToolset.Data/ErrorMessages.cs +++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs | |||
@@ -1773,7 +1773,7 @@ namespace WixToolset.Data | |||
1773 | 1773 | ||
1774 | public static Message ReservedNamespaceViolation(SourceLineNumber sourceLineNumbers, string element, string attribute, string prefix) | 1774 | public static Message ReservedNamespaceViolation(SourceLineNumber sourceLineNumbers, string element, string attribute, string prefix) |
1775 | { | 1775 | { |
1776 | return Message(sourceLineNumbers, Ids.ReservedNamespaceViolation, "The {0}/@{1} attribute's value begins with the reserved prefix '{2}'. Some prefixes are reserved by the Windows Installer and WiX toolset for well-known values. Change your attribute's value to not begin with the same prefix.", element, attribute, prefix); | 1776 | return Message(sourceLineNumbers, Ids.ReservedNamespaceViolation, "The {0}/@{1} attribute's value begins with the reserved prefix '{2}'. Some prefixes are reserved by the Windows Installer and WiX Toolset for well-known values. Change your attribute's value to not begin with the same prefix.", element, attribute, prefix); |
1777 | } | 1777 | } |
1778 | 1778 | ||
1779 | public static Message RootFeatureCannotFollowParent(SourceLineNumber sourceLineNumbers) | 1779 | public static Message RootFeatureCannotFollowParent(SourceLineNumber sourceLineNumbers) |