aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-06 09:34:57 -0700
committerRob Mensching <rob@firegiant.com>2021-04-06 16:10:05 -0700
commit86e59fdbc94ae661ca682f04cddb60d7830ae8a8 (patch)
tree227b19100f4f116abdd4b4996688a86d58ad3d32 /src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch
parent860f77f7c9d522074dc7e44cfe11281efd20687f (diff)
downloadwix-86e59fdbc94ae661ca682f04cddb60d7830ae8a8.tar.gz
wix-86e59fdbc94ae661ca682f04cddb60d7830ae8a8.tar.bz2
wix-86e59fdbc94ae661ca682f04cddb60d7830ae8a8.zip
Introduce StandardDirectory for referencing standard directories
Completes wixtoolset/issues#6416
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs
index b67abbde..6b9fe013 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/DecompiledNestedDirSearchUnderRegSearch.wxs
@@ -1,14 +1,12 @@
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 <StandardDirectory Id="ProgramFilesFolder">
4 <Directory Id="ProgramFilesFolder"> 4 <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="ykd0udtb">
5 <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="ykd0udtb"> 5 <Component Id="test.txt" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Bitness="always32">
6 <Component Id="test.txt" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Bitness="always32"> 6 <File Id="test.txt" Name="test.txt" KeyPath="yes" Source="MsiPackage\test.txt" />
7 <File Id="test.txt" Name="test.txt" KeyPath="yes" Source="SourceDir\\MsiPackage\test.txt" /> 7 </Component>
8 </Component>
9 </Directory>
10 </Directory> 8 </Directory>
11 </Directory> 9 </StandardDirectory>
12 <Feature Id="ProductFeature" Level="1" Title="MsiPackageTitle"> 10 <Feature Id="ProductFeature" Level="1" Title="MsiPackageTitle">
13 <ComponentRef Id="test.txt" /> 11 <ComponentRef Id="test.txt" />
14 </Feature> 12 </Feature>