aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
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/test/WixToolsetTest.CoreIntegration/TestData
parentd5e31dec3a753f98955f3cde3d49a653cfc4aed0 (diff)
downloadwix-da9e593a5c044cf5430b071dd194b9d94877c4e1.tar.gz
wix-da9e593a5c044cf5430b071dd194b9d94877c4e1.tar.bz2
wix-da9e593a5c044cf5430b071dd194b9d94877c4e1.zip
Fix parsing of DpiAwareness attribute.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BootstrapperApplication/DpiAwareness.wxs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BootstrapperApplication/DpiAwareness.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BootstrapperApplication/DpiAwareness.wxs
new file mode 100644
index 00000000..5b41e807
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BootstrapperApplication/DpiAwareness.wxs
@@ -0,0 +1,7 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Fragment>
3 <BootstrapperApplication Id="fakeba">
4 <BootstrapperApplicationDll SourceFile="$(sys.SOURCEFILEPATH)" DpiAwareness="gdiScaled" />
5 </BootstrapperApplication>
6 </Fragment>
7</Wix>