diff options
author | Bob Arnson <bob@firegiant.com> | 2021-04-06 20:30:51 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2021-04-06 20:33:36 -0400 |
commit | 0f0f825506753e889938a3e0b6bd5177fbbb43ab (patch) | |
tree | 465b638cc7f7dc18b582c43f5d66a942e3ae6010 /src/test/WixToolsetTest.Util/TestData/XmlConfigModule/Module.wxs | |
parent | d545a15acaa24ef9e071144d645e51c2cef1d53a (diff) | |
download | wix-0f0f825506753e889938a3e0b6bd5177fbbb43ab.tar.gz wix-0f0f825506753e889938a3e0b6bd5177fbbb43ab.tar.bz2 wix-0f0f825506753e889938a3e0b6bd5177fbbb43ab.zip |
Update dependencies.
Diffstat (limited to '')
-rw-r--r-- | src/test/WixToolsetTest.Util/TestData/XmlConfigModule/Module.wxs | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/src/test/WixToolsetTest.Util/TestData/XmlConfigModule/Module.wxs b/src/test/WixToolsetTest.Util/TestData/XmlConfigModule/Module.wxs index 93f5eeb1..29e8555b 100644 --- a/src/test/WixToolsetTest.Util/TestData/XmlConfigModule/Module.wxs +++ b/src/test/WixToolsetTest.Util/TestData/XmlConfigModule/Module.wxs | |||
@@ -1,34 +1,19 @@ | |||
1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> |
2 | <Module Id="XmlConfigModule" Language="1033" Version="1.0.0.0" Guid="047730a5-30fe-4a62-a520-da9381b8226a"> | 2 | <Module Id="XmlConfigModule" Language="1033" Version="1.0.0.0" Guid="047730a5-30fe-4a62-a520-da9381b8226a"> |
3 | 3 | ||
4 | <Component Id="Parent" Directory="INSTALLFOLDER"> | 4 | <Component Id="Parent" Directory="INSTALLFOLDER"> |
5 | <File Id="my.xml" Source="my.xml" /> | 5 | <File Id="my.xml" Source="my.xml" /> |
6 | <util:XmlConfig | 6 | <util:XmlConfig Id="AddElement" File="[my.xml]" Action="create" Node="element" VerifyPath="xxx" ElementPath="//root/sub" On="install" Sequence="1" /> |
7 | Id="AddElement" | ||
8 | File="[my.xml]" | ||
9 | Action="create" | ||
10 | Node="element" | ||
11 | VerifyPath="xxx" | ||
12 | ElementPath="//root/sub" | ||
13 | On="install" | ||
14 | Sequence="1" /> | ||
15 | </Component> | 7 | </Component> |
16 | 8 | ||
17 | <Component Id="Child" Directory="INSTALLFOLDER" Guid="4613414c-11f5-40fa-a1f1-a0ba722a6895"> | 9 | <Component Id="Child" Directory="INSTALLFOLDER" Guid="4613414c-11f5-40fa-a1f1-a0ba722a6895"> |
18 | <util:XmlConfig | 10 | <util:XmlConfig Id="ChildElement" File="[my.xml]" VerifyPath="xxx" ElementId="AddElement" Sequence="1" /> |
19 | Id="ChildElement" | ||
20 | File="[my.xml]" | ||
21 | VerifyPath="xxx" | ||
22 | ElementId="AddElement" | ||
23 | Sequence="1" /> | ||
24 | </Component> | 11 | </Component> |
25 | </Module> | 12 | </Module> |
26 | 13 | ||
27 | <Fragment> | 14 | <Fragment> |
28 | <Directory Id="TARGETDIR" Name="SourceDir"> | 15 | <StandardDirectory Id="ProgramFilesFolder"> |
29 | <Directory Id="ProgramFilesFolder"> | ||
30 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> | 16 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
31 | </Directory> | 17 | </StandardDirectory> |
32 | </Directory> | 18 | </Fragment> |
33 | </Fragment> | ||
34 | </Wix> | 19 | </Wix> |