aboutsummaryrefslogtreecommitdiff
path: root/src/ext
diff options
context:
space:
mode:
authorBevan Weiss <bevanweiss@users.noreply.github.com>2025-03-28 12:37:05 +1100
committerGitHub <noreply@github.com>2025-03-27 18:37:05 -0700
commitb20af76706dc8f7e2ac7342636fd09428b307fe4 (patch)
tree1e5e4ae1c60050a580156666876811ed4b901a0f /src/ext
parent663d2556f29a094276e18a3d6c59dba257914f41 (diff)
downloadwix-b20af76706dc8f7e2ac7342636fd09428b307fe4.tar.gz
wix-b20af76706dc8f7e2ac7342636fd09428b307fe4.tar.bz2
wix-b20af76706dc8f7e2ac7342636fd09428b307fe4.zip
Iis certstore more xsd
Adds XSD for #597 And slight fix up for error message to capture new options --------- Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to 'src/ext')
-rw-r--r--src/ext/Iis/wixext/IIsCompiler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Iis/wixext/IIsCompiler.cs b/src/ext/Iis/wixext/IIsCompiler.cs
index 5e3c0a95..53160dcd 100644
--- a/src/ext/Iis/wixext/IIsCompiler.cs
+++ b/src/ext/Iis/wixext/IIsCompiler.cs
@@ -219,7 +219,7 @@ namespace WixToolset.Iis
219 break; 219 break;
220 default: 220 default:
221 storeLocation = -1; 221 storeLocation = -1;
222 this.Messaging.Write(ErrorMessages.IllegalAttributeValue(sourceLineNumbers, element.Name.LocalName, "StoreLocation", storeLocationValue, "currentUser", "localMachine")); 222 this.Messaging.Write(ErrorMessages.IllegalAttributeValue(sourceLineNumbers, element.Name.LocalName, "StoreLocation", storeLocationValue, "currentUser", "localMachine", "services", "users", "userPolicy", "localMachinePolicy", "localMachineEnterprise"));
223 break; 223 break;
224 } 224 }
225 } 225 }