diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.Sdk/TestData/SimpleMsiPackage/SimpleBundle/Bundle.wxs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/test/WixToolsetTest.Sdk/TestData/SimpleMsiPackage/SimpleBundle/Bundle.wxs b/src/test/WixToolsetTest.Sdk/TestData/SimpleMsiPackage/SimpleBundle/Bundle.wxs index 6cd04712..d668a14f 100644 --- a/src/test/WixToolsetTest.Sdk/TestData/SimpleMsiPackage/SimpleBundle/Bundle.wxs +++ b/src/test/WixToolsetTest.Sdk/TestData/SimpleMsiPackage/SimpleBundle/Bundle.wxs | |||
@@ -1,10 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
3 | <Bundle Name="SimpleBundle" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="6670d5c9-bbec-4828-ab60-4a1c0ffeb97d"> | 2 | <Bundle Name="SimpleBundle" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="6670d5c9-bbec-4828-ab60-4a1c0ffeb97d"> |
4 | <BootstrapperApplication SourceFile="test.txt" /> | 3 | <BootstrapperApplication> |
4 | <BootstrapperApplicationDll SourceFile="test.txt" /> | ||
5 | </BootstrapperApplication> | ||
5 | 6 | ||
6 | <Chain> | 7 | <Chain> |
7 | <ExePackage SourceFile="test.txt" /> | 8 | <ExePackage SourceFile="test.txt" /> |
8 | </Chain> | 9 | </Chain> |
9 | </Bundle> | 10 | </Bundle> |
10 | </Wix> | 11 | </Wix> |