diff options
| author | Bob Arnson <bob@firegiant.com> | 2024-09-27 22:09:24 -0400 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2024-12-26 21:46:38 -0800 |
| commit | aa2678906191e0535fad5634467f074aae049c09 (patch) | |
| tree | d4b4d03a313d12dac0f4ee7f81b1945b1293691e /src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_Advanced | |
| parent | 3986a0b375d5b536f897d6284770baf711afaf86 (diff) | |
| download | wix-aa2678906191e0535fad5634467f074aae049c09.tar.gz wix-aa2678906191e0535fad5634467f074aae049c09.tar.bz2 wix-aa2678906191e0535fad5634467f074aae049c09.zip | |
Drop CA path validation in WixUI by default.
Add `WixUI/ExtendedPathValidation="yes"` to opt-in.
Removed the WIXUI_DONTVALIDATEPATH runtime opt-out.
Fixes https://github.com/wixtoolset/issues/issues/8718
Relies on https://github.com/wixtoolset/wix/pull/563
Diffstat (limited to 'src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_Advanced')
| -rw-r--r-- | src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_Advanced/Package.wxs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_Advanced/Package.wxs b/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_Advanced/Package.wxs index c22328e6..095a4546 100644 --- a/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_Advanced/Package.wxs +++ b/src/ext/UI/test/WixToolsetTest.UI/TestData/WixUI_Advanced/Package.wxs | |||
| @@ -1,12 +1,12 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> | 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"> | 2 | <Package Name="WixUI_Advanced" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> |
| 3 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> | 3 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> |
| 4 | 4 | ||
| 5 | <Feature Id="ProductFeature" Title="MsiPackage"> | 5 | <Feature Id="ProductFeature" Title="MsiPackage"> |
| 6 | <ComponentGroupRef Id="ProductComponents" /> | 6 | <ComponentGroupRef Id="ProductComponents" /> |
| 7 | </Feature> | 7 | </Feature> |
| 8 | 8 | ||
| 9 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | 9 | <ComponentGroup Id="ProductComponents" Directory="APPLICATIONFOLDER"> |
| 10 | <Component> | 10 | <Component> |
| 11 | <File Source="example.txt" /> | 11 | <File Source="example.txt" /> |
| 12 | </Component> | 12 | </Component> |
