diff options
| author | Bob Arnson <bob@firegiant.com> | 2022-01-29 23:44:11 -0500 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2022-01-30 13:02:05 -0500 |
| commit | 7ce477c6863c74ef0a50d117d8c28b2f19971b42 (patch) | |
| tree | b953aae25a04d9ffbf0bd4609055087d96e760dc /src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree | |
| parent | 3c1b81ff55975adffdc76f1a184b0f264bd97cd6 (diff) | |
| download | wix-7ce477c6863c74ef0a50d117d8c28b2f19971b42.tar.gz wix-7ce477c6863c74ef0a50d117d8c28b2f19971b42.tar.bz2 wix-7ce477c6863c74ef0a50d117d8c28b2f19971b42.zip | |
Add compiler extension to handle platforms.
Custom actions to print EULA and validate install directories are
defined in WixUIExtension compiler extension, to handle
platform-specific custom actions referred to from `DoAction` control
events. This is the least-worst solution, given the `DoAction` approach
used in the WixUI authoring and anyone customizing a WixUI set.
Diffstat (limited to 'src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree')
| -rw-r--r-- | src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs b/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs index aff1c077..7c4db223 100644 --- a/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs +++ b/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_FeatureTree/Package.wxs | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> |
| 2 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" InstallerVersion="200"> | 2 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" InstallerVersion="200"> |
| 3 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> | 3 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> |
| 4 | 4 | ||
| @@ -12,7 +12,7 @@ | |||
| 12 | </Component> | 12 | </Component> |
| 13 | </ComponentGroup> | 13 | </ComponentGroup> |
| 14 | 14 | ||
| 15 | <UIRef Id="WixUI_FeatureTree" /> | 15 | <ui:WixUI Id="WixUI_FeatureTree" /> |
| 16 | </Package> | 16 | </Package> |
| 17 | 17 | ||
| 18 | <Fragment> | 18 | <Fragment> |
