aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/Preprocessor
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-01-07 15:12:13 -0800
committerRob Mensching <rob@firegiant.com>2021-01-07 15:17:07 -0800
commita36c59a4911a7db525f6b03dc98fac5adde163b4 (patch)
tree74b6b1edab6547fc6bc4db1c75fefa94a00bed65 /src/test/WixToolsetTest.CoreIntegration/TestData/Preprocessor
parent1b10d394bc88c2840b355bb72c1a502181c28ca2 (diff)
downloadwix-a36c59a4911a7db525f6b03dc98fac5adde163b4.tar.gz
wix-a36c59a4911a7db525f6b03dc98fac5adde163b4.tar.bz2
wix-a36c59a4911a7db525f6b03dc98fac5adde163b4.zip
Support environment variables with parens in the preprocessor
Fixes wixtoolset/issues#4484
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/Preprocessor')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Preprocessor/EnvParens.wxs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Preprocessor/EnvParens.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Preprocessor/EnvParens.wxs
new file mode 100644
index 00000000..68d115c5
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Preprocessor/EnvParens.wxs
@@ -0,0 +1,4 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <?define Test = "$(env.CommonProgramFiles(x86))" ?>
4</Wix>