Template Authoring
This skill helps an agent create and validate custom dotnet new templates. It guides bootstrapping templates from existing projects and validates template.json files for authoring issues before publishing.
When to Use
- User wants to create a reusable template from an existing .csproj
- User wants to validate a template.json for correctness
- User is setting up
.template.config/template.json from scratch
- User wants to package a template for NuGet distribution
When Not to Use
- User wants to find or use existing templates — route to
template-discovery or template-instantiation
- User has MSBuild issues unrelated to template authoring — route to
dotnet-msbuild plugin
Inputs
| Input |
Required |
Description |
| Source project path |
For creation |
Path to the .csproj to use as template source |
| template.json path |
For validation |
Path to an existing template.json to validate |
| Template name |
For creation |
Human-readable name for the template |
| Short name |
Recommended |
Short name for dotnet new <shortname> usage |
Workflow
Step 1: Bootstrap from existing project
Analyze the source .csproj and create a .template.config/template.json:
- Create
.template.config directory next to the project
- Generate
template.json with identity (reverse-DNS), name, shortName, sourceName (project name for replacement), classifications, and tags
- Preserve from source: SDK type, package references with metadata (PrivateAssets, IncludeAssets), properties (OutputType, TreatWarningsAsErrors), CPM patterns
Minimal example:
{
"$schema": "http://json.schemastore.org/template",
"author": "MyOrg",
"classifications": ["Library"],
"identity": "MyOrg.Templates.MyLib",
"name": "My Library Template",
"shortName": "mylib",
"sourceName": "MyLib",
"tags": { "language": "C#", "type": "project" }
}
Step 2: Validate template.json
Read and review the template.json for common authoring issues:
Validation checks to perform:
- Required fields — verify
identity, name, and shortName are present
- Identity format — use reverse-DNS format (e.g.,
MyOrg.Templates.WebApi)
- Parameter issues — check datatypes are valid (
string, bool, choice, int, float), choices have defaults, descriptions are present
- ShortName conflicts — avoid names that collide with built-in CLI commands (
build, run, test, publish). Check with dotnet new list to see if the name is already taken
- Post-action completeness — verify post-actions have all required configuration
- Tags — ensure language, type, and classification tags are set for discoverability
Step 3: Refine the template
Based on validation results and user requirements:
- Add parameters with appropriate types (string, bool, choice), defaults, and descriptions
- Add conditional content using
#if preprocessor directives for optional features
- Configure post-actions for solution add, restore, or custom scripts
- Set constraints to restrict which SDKs or workloads the template supports
- Add classifications and tags for discoverability
Step 4: Test the template locally
dotnet new install ./path/to/template/root
dotnet new mylib --name TestProject --dry-run
dotnet new mylib --name TestProject --output ./test-output
dotnet build ./test-output/TestProject
Validation
Common Pitfalls
| Pitfall |
Solution |
| Identity format issues |
Use reverse-DNS format (e.g., MyOrg.Templates.WebApi). Avoid spaces or special characters. |
| ShortName conflicts with CLI commands |
Avoid names like build, run, test, publish. Check by running dotnet new list to see if the name is already taken. |
| Missing parameter descriptions |
Every parameter should have a description and displayName for discoverability. |
| Not testing all parameter combinations |
Use dotnet new <template> --dry-run with different parameter values to verify conditional content works correctly. |
| Hardcoded versions in template |
Use sourceName replacement for project names and consider parameterizing framework versions. |
| Not setting classifications |
Add appropriate classifications (e.g., ["Web", "API"]) for template discovery. |
More Info
1---2name: template-authoring3description: Guides creation and validation of custom dotnet new templates. Generates templates from existing projects and validates template.json for authoring issues. USE FOR: creating a reusable dotnet new template from an existing project, validating template.json files for schema compliance and parameter issues, bootstrapping .template.config/template.json with correct identity, shortName, parameters, and post-actions, packaging templates as NuGet packages for distribution. DO NOT USE FOR: finding or using existing templates (use template-discovery and template-instantiation), MSBuild project file issues unrelated to template authoring, NuGet package publishing (only template packaging structure).4license: MIT5---6
7# Template Authoring
8
9This skill helps an agent create and validate custom `dotnet new` templates. It guides bootstrapping templates from existing projects and validates `template.json` files for authoring issues before publishing.
10
11## When to Use
12
13- User wants to create a reusable template from an existing .csproj
14- User wants to validate a template.json for correctness
15- User is setting up `.template.config/template.json` from scratch
16- User wants to package a template for NuGet distribution
17
18## When Not to Use
19
20- User wants to find or use existing templates — route to `template-discovery` or `template-instantiation`
21- User has MSBuild issues unrelated to template authoring — route to `dotnet-msbuild` plugin
22
23## Inputs
24
25| Input | Required | Description |
26|-------|----------|-------------|
27| Source project path | For creation | Path to the .csproj to use as template source |
28| template.json path | For validation | Path to an existing template.json to validate |
29| Template name | For creation | Human-readable name for the template |
30| Short name | Recommended | Short name for `dotnet new <shortname>` usage |
31
32## Workflow
33
34### Step 1: Bootstrap from existing project
35
36Analyze the source `.csproj` and create a `.template.config/template.json`:
37
381. Create `.template.config` directory next to the project
392. Generate `template.json` with `identity` (reverse-DNS), `name`, `shortName`, `sourceName` (project name for replacement), `classifications`, and `tags`
403. Preserve from source: SDK type, package references with metadata (PrivateAssets, IncludeAssets), properties (OutputType, TreatWarningsAsErrors), CPM patterns
41
42Minimal example:
43```json
44{
45 "$schema": "http://json.schemastore.org/template",
46 "author": "MyOrg",
47 "classifications": ["Library"],
48 "identity": "MyOrg.Templates.MyLib",
49 "name": "My Library Template",
50 "shortName": "mylib",
51 "sourceName": "MyLib",
52 "tags": { "language": "C#", "type": "project" }
53}
54```
55
56### Step 2: Validate template.json
57
58Read and review the `template.json` for common authoring issues:
59
60Validation checks to perform:
61- **Required fields** — verify `identity`, `name`, and `shortName` are present
62- **Identity format** — use reverse-DNS format (e.g., `MyOrg.Templates.WebApi`)
63- **Parameter issues** — check datatypes are valid (`string`, `bool`, `choice`, `int`, `float`), choices have defaults, descriptions are present
64- **ShortName conflicts** — avoid names that collide with built-in CLI commands (`build`, `run`, `test`, `publish`). Check with `dotnet new list` to see if the name is already taken
65- **Post-action completeness** — verify post-actions have all required configuration
66- **Tags** — ensure language, type, and classification tags are set for discoverability
67
68### Step 3: Refine the template
69
70Based on validation results and user requirements:
71
721. **Add parameters** with appropriate types (string, bool, choice), defaults, and descriptions
732. **Add conditional content** using `#if` preprocessor directives for optional features
743. **Configure post-actions** for solution add, restore, or custom scripts
754. **Set constraints** to restrict which SDKs or workloads the template supports
765. **Add classifications** and tags for discoverability
77
78### Step 4: Test the template locally
79
80```bash
81dotnet new install ./path/to/template/root
82dotnet new mylib --name TestProject --dry-run
83dotnet new mylib --name TestProject --output ./test-output
84dotnet build ./test-output/TestProject
85```
86
87## Validation
88
89- [ ] `template.json` passes manual validation with zero errors
90- [ ] Template identity and shortName are unique and meaningful
91- [ ] All parameters have descriptions and appropriate defaults
92- [ ] Template can be installed, dry-run, and instantiated successfully
93- [ ] Created projects build cleanly with `dotnet build`
94- [ ] Conditional content produces correct output for all parameter combinations
95
96## Common Pitfalls
97
98| Pitfall | Solution |
99|---------|----------|
100| Identity format issues | Use reverse-DNS format (e.g., `MyOrg.Templates.WebApi`). Avoid spaces or special characters. |
101| ShortName conflicts with CLI commands | Avoid names like `build`, `run`, `test`, `publish`. Check by running `dotnet new list` to see if the name is already taken. |
102| Missing parameter descriptions | Every parameter should have a `description` and `displayName` for discoverability. |
103| Not testing all parameter combinations | Use `dotnet new <template> --dry-run` with different parameter values to verify conditional content works correctly. |
104| Hardcoded versions in template | Use `sourceName` replacement for project names and consider parameterizing framework versions. |
105| Not setting classifications | Add appropriate `classifications` (e.g., `["Web", "API"]`) for template discovery. |
106
107## More Info
108
109- [Custom templates for dotnet new](https://learn.microsoft.com/dotnet/core/tools/custom-templates) — official authoring guide
110- [template.json reference](https://github.com/dotnet/templating/wiki/Reference-for-template.json) — full schema reference
111- [Template Engine Wiki](https://github.com/dotnet/templating/wiki) — template engine internals