diff options
author | Rob Mensching <rob@firegiant.com> | 2022-03-20 16:14:20 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-03-20 16:54:41 -0700 |
commit | cd90117f7ad5685d5af7eaecc3f2347f9b8ab1cb (patch) | |
tree | 9d75e41d65e16d8fd090c1ee1a8851f776e78ab3 /src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs | |
parent | ba4bb7b2080d74918d6d856fba6f86caa410149b (diff) | |
download | wix-cd90117f7ad5685d5af7eaecc3f2347f9b8ab1cb.tar.gz wix-cd90117f7ad5685d5af7eaecc3f2347f9b8ab1cb.tar.bz2 wix-cd90117f7ad5685d5af7eaecc3f2347f9b8ab1cb.zip |
Infrastructure and some starter "dotnet new" templates
Introduces some basic WixToolset templates for "dotnet new" with the
infrastructure for more to be added in the future.
Closes 6207
Diffstat (limited to 'src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs')
-rw-r--r-- | src/samples/WixToolset.Templates/templates/ModuleProject/Module.wxs | 8 |
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> | ||