diff options
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs new file mode 100644 index 00000000..56c07eb9 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs | |||
| @@ -0,0 +1,19 @@ | |||
| 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" /> | ||
| 6 | </ComponentGroup> | ||
| 7 | |||
| 8 | <Binary Id="Binary1" SourceFile="test.txt" /> | ||
| 9 | <CustomAction Id="Action1" BinaryKey="Binary1" DllEntry="EntryPoint1" /> | ||
| 10 | <CustomAction Id="Action2" BinaryKey="Binary1" DllEntry="EntryPoint2" /> | ||
| 11 | <CustomAction Id="Action3" BinaryKey="Binary1" DllEntry="EntryPoint3" /> | ||
| 12 | |||
| 13 | <InstallExecuteSequence> | ||
| 14 | <Custom Action="Action1" After="Action2" /> | ||
| 15 | <Custom Action="Action2" After="Action3" /> | ||
| 16 | <Custom Action="Action3" After="Action1" /> | ||
| 17 | </InstallExecuteSequence> | ||
| 18 | </Fragment> | ||
| 19 | </Wix> | ||
