aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle
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/PatchSingle
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/PatchSingle')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs
index 72424986..e3845382 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/PatchSingle/Package.wxs
@@ -1,15 +1,13 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="~Test Package" Version="$(var.V)" Manufacturer="Example Corporation" Language="1033" UpgradeCode="7d326855-e790-4a94-8611-5351f8321fca" Compressed="yes" Scope="perMachine" ProductCode="7d326855-e790-4a94-8611-5351f8321fca"> 2 <Package Name="~Test Package" Version="$(var.V)" Manufacturer="Example Corporation" Language="1033" UpgradeCode="7d326855-e790-4a94-8611-5351f8321fca" Compressed="yes" Scope="perMachine" ProductCode="7d326855-e790-4a94-8611-5351f8321fca">
3 3
4 4
5 <MajorUpgrade DowngradeErrorMessage="Newer version already installed." /> 5 <MajorUpgrade DowngradeErrorMessage="Newer version already installed." />
6 <MediaTemplate EmbedCab="yes" /> 6 <MediaTemplate EmbedCab="yes" />
7 7
8 <Directory Id="TARGETDIR" Name="SourceDir"> 8 <StandardDirectory Id="ProgramFilesFolder">
9 <Directory Id="ProgramFilesFolder"> 9 <Directory Id="INSTALLFOLDER" Name="~Test A" />
10 <Directory Id="INSTALLFOLDER" Name="~Test App" /> 10 </StandardDirectory>
11 </Directory>
12 </Directory>
13 11
14 <Feature Id="Main"> 12 <Feature Id="Main">
15 <ComponentGroupRef Id="Components" /> 13 <ComponentGroupRef Id="Components" />