aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-03-05 18:28:01 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-03-08 15:51:55 -0600
commit7fa2390b06b643ec775d00d7938c1624f5c0fdfe (patch)
treec946ecbc67337e3df00ce27730e7eb499ab075ef /src/test/WixToolsetTest.CoreIntegration/TestData
parent1f4652516a385aeeeea1558738efa0863f63c9fc (diff)
downloadwix-7fa2390b06b643ec775d00d7938c1624f5c0fdfe.tar.gz
wix-7fa2390b06b643ec775d00d7938c1624f5c0fdfe.tar.bz2
wix-7fa2390b06b643ec775d00d7938c1624f5c0fdfe.zip
Fix parsing ProviderKey for Bundle.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Dependency/CustomProviderKeyBundle.wxs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Dependency/CustomProviderKeyBundle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Dependency/CustomProviderKeyBundle.wxs
new file mode 100644
index 00000000..6df8a7c0
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Dependency/CustomProviderKeyBundle.wxs
@@ -0,0 +1,10 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Bundle Name="BurnBundle" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="B94478B1-E1F3-4700-9CE8-6AA090854AEC" ProviderKey="MyProviderKey,v1.0">
3 <BootstrapperApplication>
4 <BootstrapperApplicationDll SourceFile="fakeba.dll" />
5 </BootstrapperApplication>
6 <Chain>
7 <PackageGroupRef Id="MinimalPackageGroup" />
8 </Chain>
9 </Bundle>
10</Wix>