aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-11-29 22:11:32 -0800
committerRob Mensching <rob@firegiant.com>2017-11-29 22:11:32 -0800
commitb387913d0e76aa7863f8766868cd2fb3b3fffcde (patch)
tree489c84a68c6a2932efe99def3ebc81e926d07a36 /src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs
parent71c52d5af2293d3eb79882ce36b0411f81185c11 (diff)
downloadwix-b387913d0e76aa7863f8766868cd2fb3b3fffcde.tar.gz
wix-b387913d0e76aa7863f8766868cd2fb3b3fffcde.tar.bz2
wix-b387913d0e76aa7863f8766868cd2fb3b3fffcde.zip
Remove "Fixture" from the test assembly name
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs
new file mode 100644
index 00000000..260339ba
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleModule/Module.wxs
@@ -0,0 +1,16 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Module Id="MergeModule1" Language="1033" Version="1.0.0.0">
4 <Package Id="243FB739-4D05-472F-9CFB-EF6B1017B6DE" Manufacturer="!(loc.Manufacturer)" InstallerVersion="200" />
5
6 <Directory Id="TARGETDIR" Name="SourceDir">
7 <Directory Id="MergeRedirectFolder">
8
9 <Component Id="ModuleComponent" Guid="A04E61B2-3ED4-4803-B2EB-4B773576FA45">
10 <File Source="test.txt" />
11 </Component>
12
13 </Directory>
14 </Directory>
15 </Module>
16</Wix>