diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-08 10:32:40 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-04-08 10:37:00 -0700 |
| commit | 999621b156ae6be4c06205e3e992b2a76dce7926 (patch) | |
| tree | 80c19b663d0a4c3014d6323498676a5d05c52124 /src/test/WixToolsetTest.CoreIntegration/TestData | |
| parent | 399ab500b78b0bbd4735cdce560b0f389f2603a0 (diff) | |
| download | wix-999621b156ae6be4c06205e3e992b2a76dce7926.tar.gz wix-999621b156ae6be4c06205e3e992b2a76dce7926.tar.bz2 wix-999621b156ae6be4c06205e3e992b2a76dce7926.zip | |
Re-enable MSI usage of only a "." in Directory/@Name
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/Directory/DefaultName.wxs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Directory/DefaultName.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Directory/DefaultName.wxs new file mode 100644 index 00000000..3e7887c4 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Directory/DefaultName.wxs | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Fragment> | ||
| 4 | <ComponentGroup Id="ProductComponents" Directory="BinFolder" /> | ||
| 5 | </Fragment> | ||
| 6 | <Fragment> | ||
| 7 | <StandardDirectory Id="ProgramFilesFolder"> | ||
| 8 | <Directory Id="CompanyFolder" Name="!(bind.Property.Manufacturer)"> | ||
| 9 | <Directory Id="BinFolder" Name="." /> | ||
| 10 | </Directory> | ||
| 11 | </StandardDirectory> | ||
| 12 | </Fragment> | ||
| 13 | </Wix> | ||
