aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/PackageComponents.wxs
diff options
context:
space:
mode:
authorBob Arnson <bob@joyofsetup.com>2018-01-08 13:12:02 -0500
committerBob Arnson <bob@joyofsetup.com>2018-01-08 13:12:02 -0500
commit301388abc7bfe230630e33bfd96ae4af43d59fb0 (patch)
tree7c9d2d9fbe2bdb4e6f89eb305219d4d7a217f554 /src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/PackageComponents.wxs
parentbfd280115ae55bf0e63f5a787c0ab3a3cf8efa32 (diff)
downloadwix-301388abc7bfe230630e33bfd96ae4af43d59fb0.tar.gz
wix-301388abc7bfe230630e33bfd96ae4af43d59fb0.tar.bz2
wix-301388abc7bfe230630e33bfd96ae4af43d59fb0.zip
Add failing unit test for .NET assemblies
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/PackageComponents.wxs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/PackageComponents.wxs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/PackageComponents.wxs
new file mode 100644
index 00000000..e0c84c63
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/PackageComponents.wxs
@@ -0,0 +1,10 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
5 <Component>
6 <File Source="candle.exe" Assembly=".net" />
7 </Component>
8 </ComponentGroup>
9 </Fragment>
10</Wix>