Tutorial: Create a template package
With .NET, you can create and deploy templates that generate projects, files, and even resources. This tutorial is part three of a series that teaches you how to create, install, and uninstall templates for use with the dotnet new
command.
You can view the completed template in the .NET Samples GitHub repository.
In this part of the series you'll learn how to:
- Create a *.csproj project to build a template package
- Configure the project file for packing
- Install a template package from a NuGet package file
- Uninstall a template package by package ID
Prerequisites
Complete part 1 and part 2 of this tutorial series.
This tutorial uses the two templates created in the first two parts of this tutorial. You can use a different template as long as you copy the template, as a folder, into the working\templates\ folder.
Open a terminal and navigate to the working\ folder.
Important
This article is written for .NET 7. However, it also applies to .NET 6 and previous versions, with one difference: The dotnet new
syntax is different. The list
, search
, install
, and uninstall
subcommands should be --list
, --search
, --install
, and --uninstall
options, respectively.
For example, the dotnet new install
command in .NET 7 becomes dotnet new --install
in .NET 6. Use the dotnet new --help
command to see a list of all options and subcommands.
Create a template package project
A template package is one or more templates packaged into a NuGet package. When you install or uninstall a template package, all templates contained in the package are added or removed, respectively. The previous parts of this tutorial series only worked with individual templates. To share a non-packed template, you have to copy the template folder and install via that folder. Because a template package can have more than one template in it, and is a single file, sharing is easier.
Template packages are represented by a NuGet package (.nupkg) file. And, like any NuGet package, you can upload the template package to a NuGet feed. The dotnet new install
command supports installing template package from a NuGet package feed. Additionally, you can install a template package from a .nupkg file directly.
Normally you use a C# project file to compile code and produce a binary. However, the project can also be used to generate a template package. By changing the settings of the .csproj, you can prevent it from compiling any code and instead include all the assets of your templates as resources. When this project is built, it produces a template package NuGet package.
The package you'll create will include the item template and package template previously created. Because we grouped the two templates into the working\templates\ folder, we can use the working folder for the .csproj file.
In your terminal, navigate to the working folder. Create a new project and set the name to templatepack
and the output folder to the current folder.
dotnet new console -n templatepack -o .
The -n
parameter sets the .csproj filename to templatepack.csproj. The -o
parameter creates the files in the current directory. You should see a result similar to the following output.
The template "Console Application" was created successfully.
Processing post-creation actions...
Running 'dotnet restore' on .\templatepack.csproj...
Restore completed in 52.38 ms for C:\working\templatepack.csproj.
Restore succeeded.
The new project template generates a Program.cs file. You can safely delete this file as it's not used by the templates.
Next, open the templatepack.csproj file in your favorite editor and replace the content with the following XML:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageId>AdatumCorporation.Utility.Templates</PackageId>
<Title>AdatumCorporation Templates</Title>
<Authors>Me</Authors>
<Description>Templates to use when creating an application for Adatum Corporation.</Description>
<PackageTags>dotnet-new;templates;contoso</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>
The settings under <PropertyGroup>
in the XML snippet are broken into three groups.
The first group deals with properties required for a NuGet package. The three <Package*>
settings have to do with the NuGet package properties to identify your package on a NuGet feed. Specifically the <PackageId>
value is used to uninstall the template package with a single name instead of a directory path. It can also be used to install the template package from a NuGet feed. The remaining settings, such as <Title>
and <PackageTags>
, have to do with metadata displayed on the NuGet feed. For more information about NuGet settings, see NuGet and MSBuild properties.
Note
To ensure that the template package appears in dotnet new search
results, set <PackageType>
to Template
.
In the second group, the <TargetFramework>
setting ensures that MSBuild executes properly when you run the pack command to compile and pack the project.
The third group includes settings that have to do with configuring the project to include the templates in the appropriate folder in the NuGet pack when it's created:
The
<NoWarn>
setting suppresses a warning message that doesn't apply to template package projects.The
<NoDefaultExcludes>
setting ensures that files and folders that start with a.
(like.gitignore
) are part of the template. The default behavior of NuGet packages is to ignore those files and folders.
<ItemGroup>
contains two items. First, the <Content>
item includes everything in the templates folder as content. It's also set to exclude any bin folder or obj folder to prevent any compiled code (if you tested and compiled your templates) from being included. Second, the <Compile>
item excludes all code files from compiling no matter where they're located. This setting prevents the project that's used to create the template package from trying to compile the code in the templates folder hierarchy.
Build and install
Save the project file. Before building the template package, verify that your folder structure is correct. Any template you want to pack should be placed in the templates folder, in its own folder. The folder structure should look similar to the following hierarchy:
working
│ templatepack.csproj
└───templates
├───extensions
│ └───.template.config
│ template.json
└───consoleasync
└───.template.config
template.json
The templates folder has two folders: extensions and consoleasync.
In your terminal, from the working folder, run the dotnet pack
command. This command builds your project and creates a NuGet package in the working\bin\Debug folder, as indicated by the following output:
C:\working> dotnet pack
Microsoft (R) Build Engine version 16.8.0+126527ff1 for .NET
Copyright (C) Microsoft Corporation. All rights reserved.
Restore completed in 123.86 ms for C:\working\templatepack.csproj.
templatepack -> C:\working\bin\Debug\netstandard2.0\templatepack.dll
Successfully created package 'C:\working\bin\Debug\AdatumCorporation.Utility.Templates.1.0.0.nupkg'.
Next, install the template package with the dotnet new install
command.
C:\working> dotnet new install C:\working\bin\Debug\AdatumCorporation.Utility.Templates.1.0.0.nupkg
The following template packages will be installed:
C:\working\bin\Debug\AdatumCorporation.Utility.Templates.1.0.0.nupkg
Success: AdatumCorporation.Utility.Templates::1.0.0 installed the following templates:
Templates Short Name Language Tags
-------------------------------------------- ------------------- ------------ ----------------------
Example templates: string extensions stringext [C#] Common/Code
Example templates: async project consoleasync [C#] Common/Console/C#9
If you uploaded the NuGet package to a NuGet feed, you can use the dotnet new install <PACKAGE_ID>
command where <PACKAGE_ID>
is the same as the <PackageId>
setting from the .csproj file. This package ID is the same as the NuGet package identifier.
Uninstall the template package
No matter how you installed the template package, either with the .nupkg file directly or by NuGet feed, removing a template package is the same. Use the <PackageId>
of the template you want to uninstall. You can get a list of templates that are installed by running the dotnet new uninstall
command.
C:\working> dotnet new uninstall
Currently installed items:
... cut to save space ...
AdatumCorporation.Utility.Templates
Details:
NuGetPackageId: AdatumCorporation.Utility.Templates
Version: 1.0.0
Author: Me
Templates:
Example templates: async project (consoleasync) C#
Example templates: string extensions (stringext) C#
Uninstall Command:
dotnet new uninstall AdatumCorporation.Utility.Templates
Run dotnet new uninstall AdatumCorporation.Utility.Templates
to uninstall the template package. The command will output information about what template packages were uninstalled.
Congratulations! You've installed and uninstalled a template package.
Next steps
To learn more about templates, most of which you've already learned, see the Custom templates for dotnet new article.
Feedback
Submit and view feedback for