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/test/burn | |
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/test/burn')
-rw-r--r-- | src/test/burn/TestData/FilesInUseTests/PackageA/PackageA.wxs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/burn/TestData/FilesInUseTests/PackageA/PackageA.wxs b/src/test/burn/TestData/FilesInUseTests/PackageA/PackageA.wxs index a96c2a11..0902ff1a 100644 --- a/src/test/burn/TestData/FilesInUseTests/PackageA/PackageA.wxs +++ b/src/test/burn/TestData/FilesInUseTests/PackageA/PackageA.wxs | |||
@@ -1,10 +1,10 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
2 | 2 | ||
3 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 3 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> |
4 | <Fragment> | 4 | <Fragment> |
5 | <ComponentGroup Id="ProductComponents" /> | 5 | <ComponentGroup Id="ProductComponents" /> |
6 | 6 | ||
7 | <UIRef Id="WixUI_Minimal" /> | 7 | <ui:WixUI Id="WixUI_Minimal" /> |
8 | <WixVariable Id="WixUILicenseRtf" Value="license.txt" /> | 8 | <WixVariable Id="WixUILicenseRtf" Value="license.txt" /> |
9 | </Fragment> | 9 | </Fragment> |
10 | </Wix> | 10 | </Wix> |