diff options
author | Bob Arnson <bob@firegiant.com> | 2024-01-01 22:07:46 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-01-01 22:53:44 -0500 |
commit | 44a13ff738267fc7e1147e46cd86df6cdbba7bb3 (patch) | |
tree | 3a7451f479e84a666605ab74ac2ee44d94cf576b /src/ext/Util/test/WixToolsetTest.Util/TestData | |
parent | 59ca47751ea1d59198e01b7e6a0a3d9fc144088e (diff) | |
download | wix-44a13ff738267fc7e1147e46cd86df6cdbba7bb3.tar.gz wix-44a13ff738267fc7e1147e46cd86df6cdbba7bb3.tar.bz2 wix-44a13ff738267fc7e1147e46cd86df6cdbba7bb3.zip |
Remove warning for `Wix` bundle variable prefix.
It's a bit overzealous.
Fixes https://github.com/wixtoolset/issues/issues/7579.
Diffstat (limited to 'src/ext/Util/test/WixToolsetTest.Util/TestData')
-rw-r--r-- | src/ext/Util/test/WixToolsetTest.Util/TestData/BundleWithSearches/BundleUsingDiscouragedVariableNames.wxs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/ext/Util/test/WixToolsetTest.Util/TestData/BundleWithSearches/BundleUsingDiscouragedVariableNames.wxs b/src/ext/Util/test/WixToolsetTest.Util/TestData/BundleWithSearches/BundleUsingDiscouragedVariableNames.wxs deleted file mode 100644 index 68f46af8..00000000 --- a/src/ext/Util/test/WixToolsetTest.Util/TestData/BundleWithSearches/BundleUsingDiscouragedVariableNames.wxs +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | ||
2 | <Bundle Name="!(loc.BundleName)" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | ||
3 | <BootstrapperApplication> | ||
4 | <BootstrapperApplicationDll SourceFile="fakeba.dll" /> | ||
5 | </BootstrapperApplication> | ||
6 | |||
7 | <util:RegistrySearch | ||
8 | Variable="WixCustomVariable" | ||
9 | Root="HKLM" | ||
10 | Key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Custom" | ||
11 | Value="Release" | ||
12 | Result="value" | ||
13 | Bitness="always64" /> | ||
14 | |||
15 | <Chain> | ||
16 | <MsiPackage SourceFile="test.msi" /> | ||
17 | </Chain> | ||
18 | </Bundle> | ||
19 | </Wix> | ||