diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-07 13:20:06 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-07 20:36:35 +1000 |
| commit | 79cd3cc53ab71329270c9e171d88cf475d3f7e23 (patch) | |
| tree | ad8cd9f74c4c6ae67e7e0f88241f6f845491c6e8 /src/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree | |
| parent | 3c6ef1b305b97c2db4169e8a900fdd3178cf9d83 (diff) | |
| download | wix-79cd3cc53ab71329270c9e171d88cf475d3f7e23.tar.gz wix-79cd3cc53ab71329270c9e171d88cf475d3f7e23.tar.bz2 wix-79cd3cc53ab71329270c9e171d88cf475d3f7e23.zip | |
Add tests for the rest of the UI modes.
Diffstat (limited to 'src/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree')
| -rw-r--r-- | src/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs b/src/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs new file mode 100644 index 00000000..9f630f99 --- /dev/null +++ b/src/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | ||
| 4 | <Package InstallerVersion="200" Compressed="no" InstallScope="perMachine" /> | ||
| 5 | |||
| 6 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> | ||
| 7 | <MediaTemplate /> | ||
| 8 | |||
| 9 | <Feature Id="ProductFeature" Title="MsiPackage"> | ||
| 10 | <ComponentGroupRef Id="ProductComponents" /> | ||
| 11 | </Feature> | ||
| 12 | |||
| 13 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | ||
| 14 | <Component> | ||
| 15 | <File Source="example.txt" /> | ||
| 16 | </Component> | ||
| 17 | </ComponentGroup> | ||
| 18 | |||
| 19 | <UIRef Id="WixUI_FeatureTree" /> | ||
| 20 | </Product> | ||
| 21 | |||
| 22 | <Fragment> | ||
| 23 | <Directory Id="TARGETDIR" Name="SourceDir"> | ||
| 24 | <Directory Id="ProgramFilesFolder"> | ||
| 25 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> | ||
| 26 | </Directory> | ||
| 27 | </Directory> | ||
| 28 | </Fragment> | ||
| 29 | </Wix> | ||
