diff options
author | Bob Arnson <bob@firegiant.com> | 2023-02-20 18:40:42 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2023-02-20 19:31:10 -0500 |
commit | 149a4220e8246c037c9c26a4bca817fd5d6968df (patch) | |
tree | 5b88adb47552f02fd9e13d07320de66486df66b8 | |
parent | 26adc0c6bf1e4aafe6dc261f8aca09636ca63912 (diff) | |
download | wix-149a4220e8246c037c9c26a4bca817fd5d6968df.tar.gz wix-149a4220e8246c037c9c26a4bca817fd5d6968df.tar.bz2 wix-149a4220e8246c037c9c26a4bca817fd5d6968df.zip |
Fix a couple of attributes mentioned in messages.
-rw-r--r-- | src/api/wix/WixToolset.Data/ErrorMessages.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs index 35bd23c5..a948fb2f 100644 --- a/src/api/wix/WixToolset.Data/ErrorMessages.cs +++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs | |||
@@ -1683,7 +1683,7 @@ namespace WixToolset.Data | |||
1683 | 1683 | ||
1684 | public static Message PerUserButAllUsersEquals1(SourceLineNumber sourceLineNumbers, string path) | 1684 | public static Message PerUserButAllUsersEquals1(SourceLineNumber sourceLineNumbers, string path) |
1685 | { | 1685 | { |
1686 | return Message(sourceLineNumbers, Ids.PerUserButAllUsersEquals1, "The MSI '{0}' is explicitly marked to not elevate so it must be a per-user package but the ALLUSERS Property is set to '1' creating a per-machine package. Remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute to be explicit instead.", path); | 1686 | return Message(sourceLineNumbers, Ids.PerUserButAllUsersEquals1, "The MSI '{0}' is explicitly marked to not elevate so it must be a per-user package but the ALLUSERS Property is set to '1' creating a per-machine package. Remove the Property with Id='ALLUSERS' and use Package/@Scope attribute to be explicit instead.", path); |
1687 | } | 1687 | } |
1688 | 1688 | ||
1689 | public static Message PreprocessorError(SourceLineNumber sourceLineNumbers, string message) | 1689 | public static Message PreprocessorError(SourceLineNumber sourceLineNumbers, string message) |
@@ -1723,7 +1723,7 @@ namespace WixToolset.Data | |||
1723 | 1723 | ||
1724 | public static Message ProductCodeInvalidForTransform(SourceLineNumber sourceLineNumbers) | 1724 | public static Message ProductCodeInvalidForTransform(SourceLineNumber sourceLineNumbers) |
1725 | { | 1725 | { |
1726 | return Message(sourceLineNumbers, Ids.ProductCodeInvalidForTransform, "The value '*' is not valid for the ProductCode when used in a transform or in a patch. Copy the ProductCode from your target product MSI into the Package/@Id attribute value for your product authoring."); | 1726 | return Message(sourceLineNumbers, Ids.ProductCodeInvalidForTransform, "The value '*' is not valid for the ProductCode when used in a transform or in a patch. Copy the ProductCode from your target product MSI into the Package/@ProductCode attribute value for your product authoring."); |
1727 | } | 1727 | } |
1728 | 1728 | ||
1729 | public static Message ProgIdNestedTooDeep(SourceLineNumber sourceLineNumbers) | 1729 | public static Message ProgIdNestedTooDeep(SourceLineNumber sourceLineNumbers) |
@@ -2148,7 +2148,7 @@ namespace WixToolset.Data | |||
2148 | 2148 | ||
2149 | public static Message UnsupportedAllUsersValue(SourceLineNumber sourceLineNumbers, string path, string value) | 2149 | public static Message UnsupportedAllUsersValue(SourceLineNumber sourceLineNumbers, string path, string value) |
2150 | { | 2150 | { |
2151 | return Message(sourceLineNumbers, Ids.UnsupportedAllUsersValue, "The MSI '{0}' set the ALLUSERS Property to '{0}' which is not supported. Remove the Property with Id='ALLUSERS' and use Package/@InstallScope attribute instead.", path, value); | 2151 | return Message(sourceLineNumbers, Ids.UnsupportedAllUsersValue, "The MSI '{0}' set the ALLUSERS Property to '{0}' which is not supported. Remove the Property with Id='ALLUSERS' and use Package/@Scope attribute instead.", path, value); |
2152 | } | 2152 | } |
2153 | 2153 | ||
2154 | public static Message UnsupportedExtensionAttribute(SourceLineNumber sourceLineNumbers, string elementName, string extensionElementName) | 2154 | public static Message UnsupportedExtensionAttribute(SourceLineNumber sourceLineNumbers, string elementName, string extensionElementName) |