diff options
| author | Rob Mensching <rob@firegiant.com> | 2023-03-09 03:43:57 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2023-03-09 06:17:00 -0700 |
| commit | 3efe3f3a8682f333741b3c52e10eea2297f43dc9 (patch) | |
| tree | c4935644e337175b44ba137e99265144444857bc /src/ext/UI/test/WixToolsetTest.UI/TestData | |
| parent | 3bc1056b69b420de75ce571c102b3b24c8cab390 (diff) | |
| download | wix-3efe3f3a8682f333741b3c52e10eea2297f43dc9.tar.gz wix-3efe3f3a8682f333741b3c52e10eea2297f43dc9.tar.bz2 wix-3efe3f3a8682f333741b3c52e10eea2297f43dc9.zip | |
Prevent direct references to platform neutral WixUI
Fixes 7265
Diffstat (limited to 'src/ext/UI/test/WixToolsetTest.UI/TestData')
| -rw-r--r-- | src/ext/UI/test/WixToolsetTest.UI/TestData/InvalidUIRef/Package.wxs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ext/UI/test/WixToolsetTest.UI/TestData/InvalidUIRef/Package.wxs b/src/ext/UI/test/WixToolsetTest.UI/TestData/InvalidUIRef/Package.wxs new file mode 100644 index 00000000..3cf78b3a --- /dev/null +++ b/src/ext/UI/test/WixToolsetTest.UI/TestData/InvalidUIRef/Package.wxs | |||
| @@ -0,0 +1,23 @@ | |||
| 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"> | ||
| 3 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> | ||
| 4 | |||
| 5 | <Feature Id="ProductFeature" Title="MsiPackage"> | ||
| 6 | <ComponentGroupRef Id="ProductComponents" /> | ||
| 7 | </Feature> | ||
| 8 | |||
| 9 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | ||
| 10 | <Component> | ||
| 11 | <File Source="example.txt" /> | ||
| 12 | </Component> | ||
| 13 | </ComponentGroup> | ||
| 14 | |||
| 15 | <UIRef Id="WixUI_Mondo" /> | ||
| 16 | </Package> | ||
| 17 | |||
| 18 | <Fragment> | ||
| 19 | <StandardDirectory Id="ProgramFilesFolder"> | ||
| 20 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> | ||
| 21 | </StandardDirectory> | ||
| 22 | </Fragment> | ||
| 23 | </Wix> | ||
