summaryrefslogtreecommitdiff
path: root/src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs
blob: 592c844d72582ce1fce9c3569e547edc7d32a70a (plain)
1
2
3
4
5
6
7
8
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  <Module Id="$safeprojectname$" Guid="PUT-GUID-HERE" Manufacturer="$company$" Language="0" Version="$version$">
    <Component Guid='PUT-GUID-HERE' Directory='TARGETDIR'>
        <!-- TODO: Install something more useful than this source code file itself -->
        <File Source="Module.wxs" />
    </Component>
  </Module>
</Wix>