summaryrefslogtreecommitdiff
path: root/src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs')
-rw-r--r--src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs b/src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs
new file mode 100644
index 00000000..592c844d
--- /dev/null
+++ b/src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs
@@ -0,0 +1,8 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Module Id="$safeprojectname$" Guid="PUT-GUID-HERE" Manufacturer="$company$" Language="0" Version="$version$">
3 <Component Guid='PUT-GUID-HERE' Directory='TARGETDIR'>
4 <!-- TODO: Install something more useful than this source code file itself -->
5 <File Source="Module.wxs" />
6 </Component>
7 </Module>
8</Wix>