diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-07-17 10:42:30 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-07-17 15:27:13 -0700 |
| commit | c37f29a156a84e27e6b38a7841e2ddcde015b071 (patch) | |
| tree | d9ff8d98970a103dcb31c1fc045d4c3031bf2a40 /src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables | |
| parent | 0db15d84eaabf2f1950784655ddd79413cfea44f (diff) | |
| download | wix-c37f29a156a84e27e6b38a7841e2ddcde015b071.tar.gz wix-c37f29a156a84e27e6b38a7841e2ddcde015b071.tar.bz2 wix-c37f29a156a84e27e6b38a7841e2ddcde015b071.zip | |
Fix parsing of bind variables with default values
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/DefaultedVariable.wxs | 6 | ||||
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/data/test.txt | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/DefaultedVariable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/DefaultedVariable.wxs new file mode 100644 index 00000000..c3528a67 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/DefaultedVariable.wxs | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8" ?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Fragment> | ||
| 4 | <Binary Id="Bound" SourceFile="!(wix.Test=data\test.txt)" /> | ||
| 5 | </Fragment> | ||
| 6 | </Wix> | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/data/test.txt b/src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/data/test.txt new file mode 100644 index 00000000..3b862323 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BindVariables/data/test.txt | |||
| @@ -0,0 +1 @@ | |||
| This is test.txt | |||
