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/LibraryProject | |
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/LibraryProject')
3 files changed, 23 insertions, 0 deletions
diff --git a/src/samples/WixToolset.Templates/templates/LibraryProject/$safeprojectname$.wixproj b/src/samples/WixToolset.Templates/templates/LibraryProject/$safeprojectname$.wixproj new file mode 100644 index 00000000..c3536151 --- /dev/null +++ b/src/samples/WixToolset.Templates/templates/LibraryProject/$safeprojectname$.wixproj | |||
@@ -0,0 +1,5 @@ | |||
1 | <Project Sdk="WixToolset.Sdk/4.0.0"> | ||
2 | <PropertyGroup> | ||
3 | <OutputType>Library</OutputType> | ||
4 | </PropertyGroup> | ||
5 | </Project> | ||
diff --git a/src/samples/WixToolset.Templates/templates/LibraryProject/.template.config/template.json b/src/samples/WixToolset.Templates/templates/LibraryProject/.template.config/template.json new file mode 100644 index 00000000..ddfa82e9 --- /dev/null +++ b/src/samples/WixToolset.Templates/templates/LibraryProject/.template.config/template.json | |||
@@ -0,0 +1,14 @@ | |||
1 | { | ||
2 | "$schema": "http://json.schemastore.org/template", | ||
3 | "identity": "WixToolset.Templates.LibraryProject", | ||
4 | "name": "WiX Toolset Library", | ||
5 | "shortName": "wixlib", | ||
6 | "author": "WiX Toolset Team", | ||
7 | "classifications": ["WixToolset", "Library"], | ||
8 | "tags": { | ||
9 | "language": "WiX", | ||
10 | "type": "project" | ||
11 | }, | ||
12 | "sourceName": "$safeprojectname$", | ||
13 | "defaultName": "Library" | ||
14 | } | ||
diff --git a/src/samples/WixToolset.Templates/templates/LibraryProject/Fragment.wxs b/src/samples/WixToolset.Templates/templates/LibraryProject/Fragment.wxs new file mode 100644 index 00000000..12e1bfc3 --- /dev/null +++ b/src/samples/WixToolset.Templates/templates/LibraryProject/Fragment.wxs | |||
@@ -0,0 +1,4 @@ | |||
1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
2 | <Fragment> | ||
3 | </Fragment> | ||
4 | </Wix> | ||