aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler_Bundle.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-01-03 14:06:13 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-01-03 15:49:32 -0600
commitda9e593a5c044cf5430b071dd194b9d94877c4e1 (patch)
tree76c11883bb4c399d67cc425dfacbda45ec063cfa /src/WixToolset.Core/Compiler_Bundle.cs
parentd5e31dec3a753f98955f3cde3d49a653cfc4aed0 (diff)
downloadwix-da9e593a5c044cf5430b071dd194b9d94877c4e1.tar.gz
wix-da9e593a5c044cf5430b071dd194b9d94877c4e1.tar.bz2
wix-da9e593a5c044cf5430b071dd194b9d94877c4e1.zip
Fix parsing of DpiAwareness attribute.
Diffstat (limited to 'src/WixToolset.Core/Compiler_Bundle.cs')
-rw-r--r--src/WixToolset.Core/Compiler_Bundle.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs
index 482232c7..40b44bbd 100644
--- a/src/WixToolset.Core/Compiler_Bundle.cs
+++ b/src/WixToolset.Core/Compiler_Bundle.cs
@@ -1404,7 +1404,7 @@ namespace WixToolset.Core
1404 enableSignatureVerification = this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib); 1404 enableSignatureVerification = this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib);
1405 break; 1405 break;
1406 case "DpiAwareness": 1406 case "DpiAwareness":
1407 if (node.Name.LocalName != "BootstrapperApplication") 1407 if (node.Name.LocalName != "BootstrapperApplicationDll")
1408 { 1408 {
1409 this.Core.UnexpectedAttribute(node, attrib); 1409 this.Core.UnexpectedAttribute(node, attrib);
1410 } 1410 }