diff options
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch')
2 files changed, 18 insertions, 6 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs index 8d1e5de2..b67abbde 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Codepage="1252" Language="1033" Manufacturer="Example Corporation" Name="MsiPackage" UpgradeCode="{12E4699F-E774-4D05-8A01-5BDD41BBA127}" Version="1.0.0.0" ProductCode="{33C58183-7333-4257-AEFD-6705DA66E617}"> | 2 | <Package Codepage="1252" Language="1033" Manufacturer="Example Corporation" Name="MsiPackage" UpgradeCode="{12E4699F-E774-4D05-8A01-5BDD41BBA127}" Version="1.0.0.0" ProductCode="{33C58183-7333-4257-AEFD-6705DA66E617}"> |
| 3 | <Directory Id="TARGETDIR" Name="SourceDir"> | 3 | <Directory Id="TARGETDIR" Name="SourceDir"> |
| 4 | <Directory Id="ProgramFilesFolder"> | 4 | <Directory Id="ProgramFilesFolder"> |
| 5 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="ykd0udtb"> | 5 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="ykd0udtb"> |
| 6 | <Component Id="test.txt" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Win64="no"> | 6 | <Component Id="test.txt" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Bitness="always32"> |
| 7 | <File Id="test.txt" Name="test.txt" KeyPath="yes" Source="SourceDir\\MsiPackage\test.txt" /> | 7 | <File Id="test.txt" Name="test.txt" KeyPath="yes" Source="SourceDir\\MsiPackage\test.txt" /> |
| 8 | </Component> | 8 | </Component> |
| 9 | </Directory> | 9 | </Directory> |
| @@ -15,10 +15,10 @@ | |||
| 15 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> | 15 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> |
| 16 | <Media Id="1" /> | 16 | <Media Id="1" /> |
| 17 | <Property Id="SAMPLEREGFOUND"> | 17 | <Property Id="SAMPLEREGFOUND"> |
| 18 | <RegistrySearch Id="RegSearch" Root="HKLM" Key="Reg" Type="raw" Win64="no" /> | 18 | <RegistrySearch Id="RegSearch" Root="HKLM" Key="Reg" Type="raw" Bitness="always32" /> |
| 19 | </Property> | 19 | </Property> |
| 20 | <Property Id="NESTEDDIRFOUND"> | 20 | <Property Id="NESTEDDIRFOUND"> |
| 21 | <RegistrySearch Id="ARegKeySearch" Root="HKLM" Key="ARegKey" Type="raw" Win64="no"> | 21 | <RegistrySearch Id="ARegKeySearch" Root="HKLM" Key="ARegKey" Type="raw" Bitness="always32"> |
| 22 | <DirectorySearch Id="TopDirSearch" Path="TopDir"> | 22 | <DirectorySearch Id="TopDirSearch" Path="TopDir"> |
| 23 | <DirectorySearch Id="SecondDirSearch" Path="SecondDir"> | 23 | <DirectorySearch Id="SecondDirSearch" Path="SecondDir"> |
| 24 | <DirectorySearch Id="ThirdDirSearch" Path="ThirdDir"> | 24 | <DirectorySearch Id="ThirdDirSearch" Path="ThirdDir"> |
| @@ -29,12 +29,12 @@ | |||
| 29 | </RegistrySearch> | 29 | </RegistrySearch> |
| 30 | </Property> | 30 | </Property> |
| 31 | <Property Id="SAMPLENESTEDDIRFOUND"> | 31 | <Property Id="SAMPLENESTEDDIRFOUND"> |
| 32 | <RegistrySearch Id="NestedRegSearch" Root="HKLM" Key="NestedReg" Type="raw" Win64="no"> | 32 | <RegistrySearch Id="NestedRegSearch" Root="HKLM" Key="NestedReg" Type="raw" Bitness="always32"> |
| 33 | <DirectorySearch Id="SampleNestedDirSearch" Path="NestedDir" /> | 33 | <DirectorySearch Id="SampleNestedDirSearch" Path="NestedDir" /> |
| 34 | </RegistrySearch> | 34 | </RegistrySearch> |
| 35 | </Property> | 35 | </Property> |
| 36 | <Property Id="SAMPLEDIRFOUND"> | 36 | <Property Id="SAMPLEDIRFOUND"> |
| 37 | <RegistrySearch Id="SubRegSearch" Root="HKLM" Key="SampleReg" Type="raw" Win64="no"> | 37 | <RegistrySearch Id="SubRegSearch" Root="HKLM" Key="SampleReg" Type="raw" Bitness="always32"> |
| 38 | <DirectorySearch Id="SampleDirSearch" Path="SampleDir"> | 38 | <DirectorySearch Id="SampleDirSearch" Path="SampleDir"> |
| 39 | <DirectorySearch Id="SubDirSearch" Path="Subdir" /> | 39 | <DirectorySearch Id="SubDirSearch" Path="Subdir" /> |
| 40 | </DirectorySearch> | 40 | </DirectorySearch> |
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/RegistrySearch64.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/RegistrySearch64.wxs new file mode 100644 index 00000000..8be5abb2 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/RegistrySearch64.wxs | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Fragment> | ||
| 4 | <ComponentGroup Id="ProductComponents"> | ||
| 5 | <ComponentGroupRef Id="MinimalComponentGroup"></ComponentGroupRef> | ||
| 6 | </ComponentGroup> | ||
| 7 | |||
| 8 | <Property Id="SAMPLEREGFOUND"> | ||
| 9 | <RegistrySearch Id="SampleRegSearch" Root="HKLM" Key="SampleReg" Type="raw" Bitness="always64"></RegistrySearch> | ||
| 10 | </Property> | ||
| 11 | </Fragment> | ||
| 12 | </Wix> | ||
