[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-template-authoring":3,"mdc--a6az41-key":37,"related-org-dotnet-template-authoring":1958,"related-repo-dotnet-template-authoring":2121},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":32,"sourceUrl":35,"mdContent":36},"template-authoring","create and validate .NET project templates","Guides creation and validation of custom dotnet new templates from existing projects. Generates a .template.config\u002Ftemplate.json that preserves the source project's conventions. USE FOR: creating a reusable dotnet new template from an existing project, bootstrapping .template.config\u002Ftemplate.json with correct identity, shortName, parameters, and post-actions, adding parameters or conditional content to a template you are authoring, validating the template.json you are authoring before publishing, packaging templates as NuGet packages for distribution. DO NOT USE FOR: validating an existing template.json as a standalone task (use template-validation), 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).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"dotnet",".NET (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdotnet.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Packaging","packaging","tag",{"name":17,"slug":18,"type":15},".NET","net",{"name":20,"slug":21,"type":15},"Templates","templates",{"name":23,"slug":24,"type":15},"Engineering","engineering",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-22T05:35:43.650365","MIT",332,[31],"agent-skills",{"repoUrl":26,"stars":25,"forks":29,"topics":33,"description":34},[31],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-template-engine\u002Fskills\u002Ftemplate-authoring","---\nname: template-authoring\ndescription: >\n  Guides creation and validation of custom dotnet new templates from existing projects.\n  Generates a .template.config\u002Ftemplate.json that preserves the source project's conventions.\n  USE FOR: creating a reusable dotnet new template from an existing project, bootstrapping\n  .template.config\u002Ftemplate.json with correct identity, shortName, parameters, and\n  post-actions, adding parameters or conditional content to a template you are authoring,\n  validating the template.json you are authoring before publishing,\n  packaging templates as NuGet packages for distribution.\n  DO NOT USE FOR: validating an existing template.json as a standalone task (use\n  template-validation), finding or using existing templates (use template-discovery and\n  template-instantiation), MSBuild project file issues unrelated to template authoring,\n  NuGet package publishing (only template packaging structure).\nlicense: MIT\n---\n\n# Template Authoring\n\nThis 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.\n\n## When to Use\n\n- User wants to create a reusable template from an existing .csproj\n- User wants to validate a template.json they are authoring before publishing\n- User is setting up `.template.config\u002Ftemplate.json` from scratch\n- User wants to package a template for NuGet distribution\n\n## When Not to Use\n\n- User wants to find or use existing templates — route to `template-discovery` or `template-instantiation`\n- User has MSBuild issues unrelated to template authoring — route to `dotnet-msbuild` plugin\n\n## Inputs\n\n| Input | Required | Description |\n|-------|----------|-------------|\n| Source project path | For creation | Path to the .csproj to use as template source |\n| template.json path | For validation | Path to an existing template.json to validate |\n| Template name | For creation | Human-readable name for the template |\n| Short name | Recommended | Short name for `dotnet new \u003Cshortname>` usage |\n\n## Workflow\n\n### Step 1: Bootstrap from existing project\n\nAnalyze the source `.csproj` and create a `.template.config\u002Ftemplate.json`:\n\n1. Create `.template.config` directory next to the project\n2. Generate `template.json` with `identity` (reverse-DNS), `name`, `shortName`, `sourceName` (project name for replacement), `classifications`, and `tags`\n3. Preserve from source — generic `dotnet new` templates frequently get these wrong, so verify each is carried over from the original `.csproj`:\n   1. **SDK type** — `Microsoft.NET.Sdk`, `Microsoft.NET.Sdk.Web`, `Microsoft.NET.Sdk.Worker`, etc.\n   2. **Analyzer\u002Fpackage reference metadata** — `PrivateAssets`, `IncludeAssets`, `ExcludeAssets`\n   3. **`OutputType` and other key properties** — `TreatWarningsAsErrors`, `Nullable`, `LangVersion`\n   4. **CPM participation** — no inline `Version` attributes when a `Directory.Packages.props` is present\n   5. **Custom build props\u002Ftargets** and `Directory.Build.props` conventions\n   6. **Repo conventions** — folder layout, naming, `global.json` SDK pin\n\nMinimal example:\n```json\n{\n  \"$schema\": \"http:\u002F\u002Fjson.schemastore.org\u002Ftemplate\",\n  \"author\": \"MyOrg\",\n  \"classifications\": [\"Library\"],\n  \"identity\": \"MyOrg.Templates.MyLib\",\n  \"name\": \"My Library Template\",\n  \"shortName\": \"mylib\",\n  \"sourceName\": \"MyLib\",\n  \"tags\": { \"language\": \"C#\", \"type\": \"project\" }\n}\n```\n\n**Required output — do not stop at a minimal stub.** Write the *complete* `.template.config\u002Ftemplate.json` for the actual source project, then emit a short **conventions-preserved** confirmation so the user can see nothing was silently dropped. This carry-over is the whole value of the skill; a generic `dotnet new` template that loses these is why authoring ties with a hand-written stub.\n\n| Source `.csproj` setting | Carried over? | How |\n|--------------------------|---------------|-----|\n| SDK (`Microsoft.NET.Sdk.*`) | ✅ | template content `.csproj` uses same SDK |\n| `TreatWarningsAsErrors` \u002F `Nullable` \u002F `LangVersion` | ✅ | preserved verbatim in template `.csproj` |\n| PackageReference `PrivateAssets` \u002F `IncludeAssets` \u002F `ExcludeAssets` | ✅ | metadata kept on each reference |\n| CPM (`Directory.Packages.props` present) | ✅ | no inline `Version` attributes emitted |\n\nMark any row you intentionally omitted as ⚠️ with a reason — never leave it implicit.\n\n### Step 2: Validate template.json\n\nValidate the generated `template.json` using the **template-validation** skill (it owns the full rule set — required fields, identity format, reserved shortName conflicts, parameter datatypes, post-actions, constraints, and tags).\n\nQuick summary of what gets checked:\n- **Required fields** — `identity`, `name`, and `shortName` must be present.\n- **ShortName conflicts** — avoid names that collide with `dotnet new` subcommands. Read the authoritative set from the `Commands:` section of `dotnet new --help` for the installed SDK and do not hardcode it (it can change between versions); illustrative examples from current SDKs are `install`, `uninstall`, `update`, `list`, `search`, `details`, `create`. A conflict happens because `dotnet new \u003Cname>` would be parsed as the subcommand of the same name. Top-level `dotnet` verbs like `build`, `run`, `test`, and `publish` do NOT conflict. Run `dotnet new list` to confirm the name is not already taken.\n- **Parameters, post-actions, tags** — see template-validation for the complete rules, including the valid datatype list.\n\n### Step 3: Refine the template\n\nBased on validation results and user requirements:\n\n1. **Add parameters** with appropriate types (string, bool, choice), defaults, and descriptions\n2. **Add conditional content** using `#if` preprocessor directives for optional features\n3. **Configure post-actions** for solution add, restore, or custom scripts\n4. **Set constraints** to restrict which SDKs or workloads the template supports\n5. **Add classifications** and tags for discoverability\n\n### Step 4: Test the template locally\n\n```bash\ndotnet new install .\u002Fpath\u002Fto\u002Ftemplate\u002Froot\ndotnet new mylib --name TestProject --dry-run\ndotnet new mylib --name TestProject --output .\u002Ftest-output\ndotnet build .\u002Ftest-output\u002FTestProject\n```\n\n## Validation\n\n- [ ] `template.json` passes manual validation with zero errors\n- [ ] Template identity and shortName are unique and meaningful\n- [ ] All parameters have descriptions and appropriate defaults\n- [ ] Template can be installed, dry-run, and instantiated successfully\n- [ ] Created projects build cleanly with `dotnet build`\n- [ ] Conditional content produces correct output for all parameter combinations\n\n## Common Pitfalls\n\n| Pitfall | Solution |\n|---------|----------|\n| Identity format issues | Use reverse-DNS format (e.g., `MyOrg.Templates.WebApi`). Avoid spaces or special characters. |\n| ShortName conflicts with CLI commands | Avoid names that match a `dotnet new` subcommand; read the live set from `dotnet new --help` and don't hardcode it (illustrative examples: `install`, `uninstall`, `update`, `list`, `search`, `details`, `create`). Top-level verbs like `build`\u002F`run`\u002F`test`\u002F`publish` are fine. Run `dotnet new list` to see if the name is already taken. |\n| Missing parameter descriptions | Every parameter should have a `description` and `displayName` for discoverability. |\n| Not testing all parameter combinations | Use `dotnet new \u003Ctemplate> --dry-run` with different parameter values to verify conditional content works correctly. |\n| Hardcoded versions in template | Use `sourceName` replacement for project names and consider parameterizing framework versions. |\n| Not setting classifications | Add appropriate `classifications` (e.g., `[\"Web\", \"API\"]`) for template discovery. |\n\n## More Info\n\n- [Custom templates for dotnet new](https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fcustom-templates) — official authoring guide\n- [template.json reference](https:\u002F\u002Fgithub.com\u002Fdotnet\u002Ftemplating\u002Fwiki\u002FReference-for-template.json) — full schema reference\n- [Template Engine Wiki](https:\u002F\u002Fgithub.com\u002Fdotnet\u002Ftemplating\u002Fwiki) — template engine internals\n",{"data":38,"body":39},{"name":4,"description":6,"license":28},{"type":40,"children":41},"root",[42,50,73,80,113,119,154,160,272,278,285,305,560,565,966,1005,1175,1180,1186,1205,1210,1386,1392,1397,1458,1464,1576,1582,1657,1663,1905,1911,1952],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","Template Authoring",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54,56,63,65,71],{"type":48,"value":55},"This skill helps an agent create and validate custom ",{"type":43,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":48,"value":62},"dotnet new",{"type":48,"value":64}," templates. It guides bootstrapping templates from existing projects and validates ",{"type":43,"tag":57,"props":66,"children":68},{"className":67},[],[69],{"type":48,"value":70},"template.json",{"type":48,"value":72}," files for authoring issues before publishing.",{"type":43,"tag":74,"props":75,"children":77},"h2",{"id":76},"when-to-use",[78],{"type":48,"value":79},"When to Use",{"type":43,"tag":81,"props":82,"children":83},"ul",{},[84,90,95,108],{"type":43,"tag":85,"props":86,"children":87},"li",{},[88],{"type":48,"value":89},"User wants to create a reusable template from an existing .csproj",{"type":43,"tag":85,"props":91,"children":92},{},[93],{"type":48,"value":94},"User wants to validate a template.json they are authoring before publishing",{"type":43,"tag":85,"props":96,"children":97},{},[98,100,106],{"type":48,"value":99},"User is setting up ",{"type":43,"tag":57,"props":101,"children":103},{"className":102},[],[104],{"type":48,"value":105},".template.config\u002Ftemplate.json",{"type":48,"value":107}," from scratch",{"type":43,"tag":85,"props":109,"children":110},{},[111],{"type":48,"value":112},"User wants to package a template for NuGet distribution",{"type":43,"tag":74,"props":114,"children":116},{"id":115},"when-not-to-use",[117],{"type":48,"value":118},"When Not to Use",{"type":43,"tag":81,"props":120,"children":121},{},[122,141],{"type":43,"tag":85,"props":123,"children":124},{},[125,127,133,135],{"type":48,"value":126},"User wants to find or use existing templates — route to ",{"type":43,"tag":57,"props":128,"children":130},{"className":129},[],[131],{"type":48,"value":132},"template-discovery",{"type":48,"value":134}," or ",{"type":43,"tag":57,"props":136,"children":138},{"className":137},[],[139],{"type":48,"value":140},"template-instantiation",{"type":43,"tag":85,"props":142,"children":143},{},[144,146,152],{"type":48,"value":145},"User has MSBuild issues unrelated to template authoring — route to ",{"type":43,"tag":57,"props":147,"children":149},{"className":148},[],[150],{"type":48,"value":151},"dotnet-msbuild",{"type":48,"value":153}," plugin",{"type":43,"tag":74,"props":155,"children":157},{"id":156},"inputs",[158],{"type":48,"value":159},"Inputs",{"type":43,"tag":161,"props":162,"children":163},"table",{},[164,188],{"type":43,"tag":165,"props":166,"children":167},"thead",{},[168],{"type":43,"tag":169,"props":170,"children":171},"tr",{},[172,178,183],{"type":43,"tag":173,"props":174,"children":175},"th",{},[176],{"type":48,"value":177},"Input",{"type":43,"tag":173,"props":179,"children":180},{},[181],{"type":48,"value":182},"Required",{"type":43,"tag":173,"props":184,"children":185},{},[186],{"type":48,"value":187},"Description",{"type":43,"tag":189,"props":190,"children":191},"tbody",{},[192,211,229,246],{"type":43,"tag":169,"props":193,"children":194},{},[195,201,206],{"type":43,"tag":196,"props":197,"children":198},"td",{},[199],{"type":48,"value":200},"Source project path",{"type":43,"tag":196,"props":202,"children":203},{},[204],{"type":48,"value":205},"For creation",{"type":43,"tag":196,"props":207,"children":208},{},[209],{"type":48,"value":210},"Path to the .csproj to use as template source",{"type":43,"tag":169,"props":212,"children":213},{},[214,219,224],{"type":43,"tag":196,"props":215,"children":216},{},[217],{"type":48,"value":218},"template.json path",{"type":43,"tag":196,"props":220,"children":221},{},[222],{"type":48,"value":223},"For validation",{"type":43,"tag":196,"props":225,"children":226},{},[227],{"type":48,"value":228},"Path to an existing template.json to validate",{"type":43,"tag":169,"props":230,"children":231},{},[232,237,241],{"type":43,"tag":196,"props":233,"children":234},{},[235],{"type":48,"value":236},"Template name",{"type":43,"tag":196,"props":238,"children":239},{},[240],{"type":48,"value":205},{"type":43,"tag":196,"props":242,"children":243},{},[244],{"type":48,"value":245},"Human-readable name for the template",{"type":43,"tag":169,"props":247,"children":248},{},[249,254,259],{"type":43,"tag":196,"props":250,"children":251},{},[252],{"type":48,"value":253},"Short name",{"type":43,"tag":196,"props":255,"children":256},{},[257],{"type":48,"value":258},"Recommended",{"type":43,"tag":196,"props":260,"children":261},{},[262,264,270],{"type":48,"value":263},"Short name for ",{"type":43,"tag":57,"props":265,"children":267},{"className":266},[],[268],{"type":48,"value":269},"dotnet new \u003Cshortname>",{"type":48,"value":271}," usage",{"type":43,"tag":74,"props":273,"children":275},{"id":274},"workflow",[276],{"type":48,"value":277},"Workflow",{"type":43,"tag":279,"props":280,"children":282},"h3",{"id":281},"step-1-bootstrap-from-existing-project",[283],{"type":48,"value":284},"Step 1: Bootstrap from existing project",{"type":43,"tag":51,"props":286,"children":287},{},[288,290,296,298,303],{"type":48,"value":289},"Analyze the source ",{"type":43,"tag":57,"props":291,"children":293},{"className":292},[],[294],{"type":48,"value":295},".csproj",{"type":48,"value":297}," and create a ",{"type":43,"tag":57,"props":299,"children":301},{"className":300},[],[302],{"type":48,"value":105},{"type":48,"value":304},":",{"type":43,"tag":306,"props":307,"children":308},"ol",{},[309,322,379],{"type":43,"tag":85,"props":310,"children":311},{},[312,314,320],{"type":48,"value":313},"Create ",{"type":43,"tag":57,"props":315,"children":317},{"className":316},[],[318],{"type":48,"value":319},".template.config",{"type":48,"value":321}," directory next to the project",{"type":43,"tag":85,"props":323,"children":324},{},[325,327,332,334,340,342,348,350,356,357,363,365,371,373],{"type":48,"value":326},"Generate ",{"type":43,"tag":57,"props":328,"children":330},{"className":329},[],[331],{"type":48,"value":70},{"type":48,"value":333}," with ",{"type":43,"tag":57,"props":335,"children":337},{"className":336},[],[338],{"type":48,"value":339},"identity",{"type":48,"value":341}," (reverse-DNS), ",{"type":43,"tag":57,"props":343,"children":345},{"className":344},[],[346],{"type":48,"value":347},"name",{"type":48,"value":349},", ",{"type":43,"tag":57,"props":351,"children":353},{"className":352},[],[354],{"type":48,"value":355},"shortName",{"type":48,"value":349},{"type":43,"tag":57,"props":358,"children":360},{"className":359},[],[361],{"type":48,"value":362},"sourceName",{"type":48,"value":364}," (project name for replacement), ",{"type":43,"tag":57,"props":366,"children":368},{"className":367},[],[369],{"type":48,"value":370},"classifications",{"type":48,"value":372},", and ",{"type":43,"tag":57,"props":374,"children":376},{"className":375},[],[377],{"type":48,"value":378},"tags",{"type":43,"tag":85,"props":380,"children":381},{},[382,384,389,391,396,398],{"type":48,"value":383},"Preserve from source — generic ",{"type":43,"tag":57,"props":385,"children":387},{"className":386},[],[388],{"type":48,"value":62},{"type":48,"value":390}," templates frequently get these wrong, so verify each is carried over from the original ",{"type":43,"tag":57,"props":392,"children":394},{"className":393},[],[395],{"type":48,"value":295},{"type":48,"value":397},":\n",{"type":43,"tag":306,"props":399,"children":400},{},[401,434,463,498,524,542],{"type":43,"tag":85,"props":402,"children":403},{},[404,410,412,418,419,425,426,432],{"type":43,"tag":405,"props":406,"children":407},"strong",{},[408],{"type":48,"value":409},"SDK type",{"type":48,"value":411}," — ",{"type":43,"tag":57,"props":413,"children":415},{"className":414},[],[416],{"type":48,"value":417},"Microsoft.NET.Sdk",{"type":48,"value":349},{"type":43,"tag":57,"props":420,"children":422},{"className":421},[],[423],{"type":48,"value":424},"Microsoft.NET.Sdk.Web",{"type":48,"value":349},{"type":43,"tag":57,"props":427,"children":429},{"className":428},[],[430],{"type":48,"value":431},"Microsoft.NET.Sdk.Worker",{"type":48,"value":433},", etc.",{"type":43,"tag":85,"props":435,"children":436},{},[437,442,443,449,450,456,457],{"type":43,"tag":405,"props":438,"children":439},{},[440],{"type":48,"value":441},"Analyzer\u002Fpackage reference metadata",{"type":48,"value":411},{"type":43,"tag":57,"props":444,"children":446},{"className":445},[],[447],{"type":48,"value":448},"PrivateAssets",{"type":48,"value":349},{"type":43,"tag":57,"props":451,"children":453},{"className":452},[],[454],{"type":48,"value":455},"IncludeAssets",{"type":48,"value":349},{"type":43,"tag":57,"props":458,"children":460},{"className":459},[],[461],{"type":48,"value":462},"ExcludeAssets",{"type":43,"tag":85,"props":464,"children":465},{},[466,477,478,484,485,491,492],{"type":43,"tag":405,"props":467,"children":468},{},[469,475],{"type":43,"tag":57,"props":470,"children":472},{"className":471},[],[473],{"type":48,"value":474},"OutputType",{"type":48,"value":476}," and other key properties",{"type":48,"value":411},{"type":43,"tag":57,"props":479,"children":481},{"className":480},[],[482],{"type":48,"value":483},"TreatWarningsAsErrors",{"type":48,"value":349},{"type":43,"tag":57,"props":486,"children":488},{"className":487},[],[489],{"type":48,"value":490},"Nullable",{"type":48,"value":349},{"type":43,"tag":57,"props":493,"children":495},{"className":494},[],[496],{"type":48,"value":497},"LangVersion",{"type":43,"tag":85,"props":499,"children":500},{},[501,506,508,514,516,522],{"type":43,"tag":405,"props":502,"children":503},{},[504],{"type":48,"value":505},"CPM participation",{"type":48,"value":507}," — no inline ",{"type":43,"tag":57,"props":509,"children":511},{"className":510},[],[512],{"type":48,"value":513},"Version",{"type":48,"value":515}," attributes when a ",{"type":43,"tag":57,"props":517,"children":519},{"className":518},[],[520],{"type":48,"value":521},"Directory.Packages.props",{"type":48,"value":523}," is present",{"type":43,"tag":85,"props":525,"children":526},{},[527,532,534,540],{"type":43,"tag":405,"props":528,"children":529},{},[530],{"type":48,"value":531},"Custom build props\u002Ftargets",{"type":48,"value":533}," and ",{"type":43,"tag":57,"props":535,"children":537},{"className":536},[],[538],{"type":48,"value":539},"Directory.Build.props",{"type":48,"value":541}," conventions",{"type":43,"tag":85,"props":543,"children":544},{},[545,550,552,558],{"type":43,"tag":405,"props":546,"children":547},{},[548],{"type":48,"value":549},"Repo conventions",{"type":48,"value":551}," — folder layout, naming, ",{"type":43,"tag":57,"props":553,"children":555},{"className":554},[],[556],{"type":48,"value":557},"global.json",{"type":48,"value":559}," SDK pin",{"type":43,"tag":51,"props":561,"children":562},{},[563],{"type":48,"value":564},"Minimal example:",{"type":43,"tag":566,"props":567,"children":572},"pre",{"className":568,"code":569,"language":570,"meta":571,"style":571},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"$schema\": \"http:\u002F\u002Fjson.schemastore.org\u002Ftemplate\",\n  \"author\": \"MyOrg\",\n  \"classifications\": [\"Library\"],\n  \"identity\": \"MyOrg.Templates.MyLib\",\n  \"name\": \"My Library Template\",\n  \"shortName\": \"mylib\",\n  \"sourceName\": \"MyLib\",\n  \"tags\": { \"language\": \"C#\", \"type\": \"project\" }\n}\n","json","",[573],{"type":43,"tag":57,"props":574,"children":575},{"__ignoreMap":571},[576,588,632,670,713,750,787,824,861,957],{"type":43,"tag":577,"props":578,"children":581},"span",{"class":579,"line":580},"line",1,[582],{"type":43,"tag":577,"props":583,"children":585},{"style":584},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[586],{"type":48,"value":587},"{\n",{"type":43,"tag":577,"props":589,"children":591},{"class":579,"line":590},2,[592,597,603,608,612,617,623,627],{"type":43,"tag":577,"props":593,"children":594},{"style":584},[595],{"type":48,"value":596},"  \"",{"type":43,"tag":577,"props":598,"children":600},{"style":599},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[601],{"type":48,"value":602},"$schema",{"type":43,"tag":577,"props":604,"children":605},{"style":584},[606],{"type":48,"value":607},"\"",{"type":43,"tag":577,"props":609,"children":610},{"style":584},[611],{"type":48,"value":304},{"type":43,"tag":577,"props":613,"children":614},{"style":584},[615],{"type":48,"value":616}," \"",{"type":43,"tag":577,"props":618,"children":620},{"style":619},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[621],{"type":48,"value":622},"http:\u002F\u002Fjson.schemastore.org\u002Ftemplate",{"type":43,"tag":577,"props":624,"children":625},{"style":584},[626],{"type":48,"value":607},{"type":43,"tag":577,"props":628,"children":629},{"style":584},[630],{"type":48,"value":631},",\n",{"type":43,"tag":577,"props":633,"children":635},{"class":579,"line":634},3,[636,640,645,649,653,657,662,666],{"type":43,"tag":577,"props":637,"children":638},{"style":584},[639],{"type":48,"value":596},{"type":43,"tag":577,"props":641,"children":642},{"style":599},[643],{"type":48,"value":644},"author",{"type":43,"tag":577,"props":646,"children":647},{"style":584},[648],{"type":48,"value":607},{"type":43,"tag":577,"props":650,"children":651},{"style":584},[652],{"type":48,"value":304},{"type":43,"tag":577,"props":654,"children":655},{"style":584},[656],{"type":48,"value":616},{"type":43,"tag":577,"props":658,"children":659},{"style":619},[660],{"type":48,"value":661},"MyOrg",{"type":43,"tag":577,"props":663,"children":664},{"style":584},[665],{"type":48,"value":607},{"type":43,"tag":577,"props":667,"children":668},{"style":584},[669],{"type":48,"value":631},{"type":43,"tag":577,"props":671,"children":673},{"class":579,"line":672},4,[674,678,682,686,690,695,699,704,708],{"type":43,"tag":577,"props":675,"children":676},{"style":584},[677],{"type":48,"value":596},{"type":43,"tag":577,"props":679,"children":680},{"style":599},[681],{"type":48,"value":370},{"type":43,"tag":577,"props":683,"children":684},{"style":584},[685],{"type":48,"value":607},{"type":43,"tag":577,"props":687,"children":688},{"style":584},[689],{"type":48,"value":304},{"type":43,"tag":577,"props":691,"children":692},{"style":584},[693],{"type":48,"value":694}," [",{"type":43,"tag":577,"props":696,"children":697},{"style":584},[698],{"type":48,"value":607},{"type":43,"tag":577,"props":700,"children":701},{"style":619},[702],{"type":48,"value":703},"Library",{"type":43,"tag":577,"props":705,"children":706},{"style":584},[707],{"type":48,"value":607},{"type":43,"tag":577,"props":709,"children":710},{"style":584},[711],{"type":48,"value":712},"],\n",{"type":43,"tag":577,"props":714,"children":716},{"class":579,"line":715},5,[717,721,725,729,733,737,742,746],{"type":43,"tag":577,"props":718,"children":719},{"style":584},[720],{"type":48,"value":596},{"type":43,"tag":577,"props":722,"children":723},{"style":599},[724],{"type":48,"value":339},{"type":43,"tag":577,"props":726,"children":727},{"style":584},[728],{"type":48,"value":607},{"type":43,"tag":577,"props":730,"children":731},{"style":584},[732],{"type":48,"value":304},{"type":43,"tag":577,"props":734,"children":735},{"style":584},[736],{"type":48,"value":616},{"type":43,"tag":577,"props":738,"children":739},{"style":619},[740],{"type":48,"value":741},"MyOrg.Templates.MyLib",{"type":43,"tag":577,"props":743,"children":744},{"style":584},[745],{"type":48,"value":607},{"type":43,"tag":577,"props":747,"children":748},{"style":584},[749],{"type":48,"value":631},{"type":43,"tag":577,"props":751,"children":753},{"class":579,"line":752},6,[754,758,762,766,770,774,779,783],{"type":43,"tag":577,"props":755,"children":756},{"style":584},[757],{"type":48,"value":596},{"type":43,"tag":577,"props":759,"children":760},{"style":599},[761],{"type":48,"value":347},{"type":43,"tag":577,"props":763,"children":764},{"style":584},[765],{"type":48,"value":607},{"type":43,"tag":577,"props":767,"children":768},{"style":584},[769],{"type":48,"value":304},{"type":43,"tag":577,"props":771,"children":772},{"style":584},[773],{"type":48,"value":616},{"type":43,"tag":577,"props":775,"children":776},{"style":619},[777],{"type":48,"value":778},"My Library Template",{"type":43,"tag":577,"props":780,"children":781},{"style":584},[782],{"type":48,"value":607},{"type":43,"tag":577,"props":784,"children":785},{"style":584},[786],{"type":48,"value":631},{"type":43,"tag":577,"props":788,"children":790},{"class":579,"line":789},7,[791,795,799,803,807,811,816,820],{"type":43,"tag":577,"props":792,"children":793},{"style":584},[794],{"type":48,"value":596},{"type":43,"tag":577,"props":796,"children":797},{"style":599},[798],{"type":48,"value":355},{"type":43,"tag":577,"props":800,"children":801},{"style":584},[802],{"type":48,"value":607},{"type":43,"tag":577,"props":804,"children":805},{"style":584},[806],{"type":48,"value":304},{"type":43,"tag":577,"props":808,"children":809},{"style":584},[810],{"type":48,"value":616},{"type":43,"tag":577,"props":812,"children":813},{"style":619},[814],{"type":48,"value":815},"mylib",{"type":43,"tag":577,"props":817,"children":818},{"style":584},[819],{"type":48,"value":607},{"type":43,"tag":577,"props":821,"children":822},{"style":584},[823],{"type":48,"value":631},{"type":43,"tag":577,"props":825,"children":827},{"class":579,"line":826},8,[828,832,836,840,844,848,853,857],{"type":43,"tag":577,"props":829,"children":830},{"style":584},[831],{"type":48,"value":596},{"type":43,"tag":577,"props":833,"children":834},{"style":599},[835],{"type":48,"value":362},{"type":43,"tag":577,"props":837,"children":838},{"style":584},[839],{"type":48,"value":607},{"type":43,"tag":577,"props":841,"children":842},{"style":584},[843],{"type":48,"value":304},{"type":43,"tag":577,"props":845,"children":846},{"style":584},[847],{"type":48,"value":616},{"type":43,"tag":577,"props":849,"children":850},{"style":619},[851],{"type":48,"value":852},"MyLib",{"type":43,"tag":577,"props":854,"children":855},{"style":584},[856],{"type":48,"value":607},{"type":43,"tag":577,"props":858,"children":859},{"style":584},[860],{"type":48,"value":631},{"type":43,"tag":577,"props":862,"children":864},{"class":579,"line":863},9,[865,869,873,877,881,886,890,896,900,904,908,913,917,922,926,931,935,939,943,948,952],{"type":43,"tag":577,"props":866,"children":867},{"style":584},[868],{"type":48,"value":596},{"type":43,"tag":577,"props":870,"children":871},{"style":599},[872],{"type":48,"value":378},{"type":43,"tag":577,"props":874,"children":875},{"style":584},[876],{"type":48,"value":607},{"type":43,"tag":577,"props":878,"children":879},{"style":584},[880],{"type":48,"value":304},{"type":43,"tag":577,"props":882,"children":883},{"style":584},[884],{"type":48,"value":885}," {",{"type":43,"tag":577,"props":887,"children":888},{"style":584},[889],{"type":48,"value":616},{"type":43,"tag":577,"props":891,"children":893},{"style":892},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[894],{"type":48,"value":895},"language",{"type":43,"tag":577,"props":897,"children":898},{"style":584},[899],{"type":48,"value":607},{"type":43,"tag":577,"props":901,"children":902},{"style":584},[903],{"type":48,"value":304},{"type":43,"tag":577,"props":905,"children":906},{"style":584},[907],{"type":48,"value":616},{"type":43,"tag":577,"props":909,"children":910},{"style":619},[911],{"type":48,"value":912},"C#",{"type":43,"tag":577,"props":914,"children":915},{"style":584},[916],{"type":48,"value":607},{"type":43,"tag":577,"props":918,"children":919},{"style":584},[920],{"type":48,"value":921},",",{"type":43,"tag":577,"props":923,"children":924},{"style":584},[925],{"type":48,"value":616},{"type":43,"tag":577,"props":927,"children":928},{"style":892},[929],{"type":48,"value":930},"type",{"type":43,"tag":577,"props":932,"children":933},{"style":584},[934],{"type":48,"value":607},{"type":43,"tag":577,"props":936,"children":937},{"style":584},[938],{"type":48,"value":304},{"type":43,"tag":577,"props":940,"children":941},{"style":584},[942],{"type":48,"value":616},{"type":43,"tag":577,"props":944,"children":945},{"style":619},[946],{"type":48,"value":947},"project",{"type":43,"tag":577,"props":949,"children":950},{"style":584},[951],{"type":48,"value":607},{"type":43,"tag":577,"props":953,"children":954},{"style":584},[955],{"type":48,"value":956}," }\n",{"type":43,"tag":577,"props":958,"children":960},{"class":579,"line":959},10,[961],{"type":43,"tag":577,"props":962,"children":963},{"style":584},[964],{"type":48,"value":965},"}\n",{"type":43,"tag":51,"props":967,"children":968},{},[969,974,976,982,984,989,991,996,998,1003],{"type":43,"tag":405,"props":970,"children":971},{},[972],{"type":48,"value":973},"Required output — do not stop at a minimal stub.",{"type":48,"value":975}," Write the ",{"type":43,"tag":977,"props":978,"children":979},"em",{},[980],{"type":48,"value":981},"complete",{"type":48,"value":983}," ",{"type":43,"tag":57,"props":985,"children":987},{"className":986},[],[988],{"type":48,"value":105},{"type":48,"value":990}," for the actual source project, then emit a short ",{"type":43,"tag":405,"props":992,"children":993},{},[994],{"type":48,"value":995},"conventions-preserved",{"type":48,"value":997}," confirmation so the user can see nothing was silently dropped. This carry-over is the whole value of the skill; a generic ",{"type":43,"tag":57,"props":999,"children":1001},{"className":1000},[],[1002],{"type":48,"value":62},{"type":48,"value":1004}," template that loses these is why authoring ties with a hand-written stub.",{"type":43,"tag":161,"props":1006,"children":1007},{},[1008,1036],{"type":43,"tag":165,"props":1009,"children":1010},{},[1011],{"type":43,"tag":169,"props":1012,"children":1013},{},[1014,1026,1031],{"type":43,"tag":173,"props":1015,"children":1016},{},[1017,1019,1024],{"type":48,"value":1018},"Source ",{"type":43,"tag":57,"props":1020,"children":1022},{"className":1021},[],[1023],{"type":48,"value":295},{"type":48,"value":1025}," setting",{"type":43,"tag":173,"props":1027,"children":1028},{},[1029],{"type":48,"value":1030},"Carried over?",{"type":43,"tag":173,"props":1032,"children":1033},{},[1034],{"type":48,"value":1035},"How",{"type":43,"tag":189,"props":1037,"children":1038},{},[1039,1072,1110,1144],{"type":43,"tag":169,"props":1040,"children":1041},{},[1042,1055,1060],{"type":43,"tag":196,"props":1043,"children":1044},{},[1045,1047,1053],{"type":48,"value":1046},"SDK (",{"type":43,"tag":57,"props":1048,"children":1050},{"className":1049},[],[1051],{"type":48,"value":1052},"Microsoft.NET.Sdk.*",{"type":48,"value":1054},")",{"type":43,"tag":196,"props":1056,"children":1057},{},[1058],{"type":48,"value":1059},"✅",{"type":43,"tag":196,"props":1061,"children":1062},{},[1063,1065,1070],{"type":48,"value":1064},"template content ",{"type":43,"tag":57,"props":1066,"children":1068},{"className":1067},[],[1069],{"type":48,"value":295},{"type":48,"value":1071}," uses same SDK",{"type":43,"tag":169,"props":1073,"children":1074},{},[1075,1096,1100],{"type":43,"tag":196,"props":1076,"children":1077},{},[1078,1083,1085,1090,1091],{"type":43,"tag":57,"props":1079,"children":1081},{"className":1080},[],[1082],{"type":48,"value":483},{"type":48,"value":1084}," \u002F ",{"type":43,"tag":57,"props":1086,"children":1088},{"className":1087},[],[1089],{"type":48,"value":490},{"type":48,"value":1084},{"type":43,"tag":57,"props":1092,"children":1094},{"className":1093},[],[1095],{"type":48,"value":497},{"type":43,"tag":196,"props":1097,"children":1098},{},[1099],{"type":48,"value":1059},{"type":43,"tag":196,"props":1101,"children":1102},{},[1103,1105],{"type":48,"value":1104},"preserved verbatim in template ",{"type":43,"tag":57,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":48,"value":295},{"type":43,"tag":169,"props":1111,"children":1112},{},[1113,1135,1139],{"type":43,"tag":196,"props":1114,"children":1115},{},[1116,1118,1123,1124,1129,1130],{"type":48,"value":1117},"PackageReference ",{"type":43,"tag":57,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":48,"value":448},{"type":48,"value":1084},{"type":43,"tag":57,"props":1125,"children":1127},{"className":1126},[],[1128],{"type":48,"value":455},{"type":48,"value":1084},{"type":43,"tag":57,"props":1131,"children":1133},{"className":1132},[],[1134],{"type":48,"value":462},{"type":43,"tag":196,"props":1136,"children":1137},{},[1138],{"type":48,"value":1059},{"type":43,"tag":196,"props":1140,"children":1141},{},[1142],{"type":48,"value":1143},"metadata kept on each reference",{"type":43,"tag":169,"props":1145,"children":1146},{},[1147,1159,1163],{"type":43,"tag":196,"props":1148,"children":1149},{},[1150,1152,1157],{"type":48,"value":1151},"CPM (",{"type":43,"tag":57,"props":1153,"children":1155},{"className":1154},[],[1156],{"type":48,"value":521},{"type":48,"value":1158}," present)",{"type":43,"tag":196,"props":1160,"children":1161},{},[1162],{"type":48,"value":1059},{"type":43,"tag":196,"props":1164,"children":1165},{},[1166,1168,1173],{"type":48,"value":1167},"no inline ",{"type":43,"tag":57,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":48,"value":513},{"type":48,"value":1174}," attributes emitted",{"type":43,"tag":51,"props":1176,"children":1177},{},[1178],{"type":48,"value":1179},"Mark any row you intentionally omitted as ⚠️ with a reason — never leave it implicit.",{"type":43,"tag":279,"props":1181,"children":1183},{"id":1182},"step-2-validate-templatejson",[1184],{"type":48,"value":1185},"Step 2: Validate template.json",{"type":43,"tag":51,"props":1187,"children":1188},{},[1189,1191,1196,1198,1203],{"type":48,"value":1190},"Validate the generated ",{"type":43,"tag":57,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":48,"value":70},{"type":48,"value":1197}," using the ",{"type":43,"tag":405,"props":1199,"children":1200},{},[1201],{"type":48,"value":1202},"template-validation",{"type":48,"value":1204}," skill (it owns the full rule set — required fields, identity format, reserved shortName conflicts, parameter datatypes, post-actions, constraints, and tags).",{"type":43,"tag":51,"props":1206,"children":1207},{},[1208],{"type":48,"value":1209},"Quick summary of what gets checked:",{"type":43,"tag":81,"props":1211,"children":1212},{},[1213,1241,1376],{"type":43,"tag":85,"props":1214,"children":1215},{},[1216,1221,1222,1227,1228,1233,1234,1239],{"type":43,"tag":405,"props":1217,"children":1218},{},[1219],{"type":48,"value":1220},"Required fields",{"type":48,"value":411},{"type":43,"tag":57,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":48,"value":339},{"type":48,"value":349},{"type":43,"tag":57,"props":1229,"children":1231},{"className":1230},[],[1232],{"type":48,"value":347},{"type":48,"value":372},{"type":43,"tag":57,"props":1235,"children":1237},{"className":1236},[],[1238],{"type":48,"value":355},{"type":48,"value":1240}," must be present.",{"type":43,"tag":85,"props":1242,"children":1243},{},[1244,1249,1251,1256,1258,1264,1266,1272,1274,1280,1281,1287,1288,1294,1295,1301,1302,1308,1309,1315,1316,1322,1324,1330,1332,1337,1339,1345,1346,1352,1353,1359,1360,1366,1368,1374],{"type":43,"tag":405,"props":1245,"children":1246},{},[1247],{"type":48,"value":1248},"ShortName conflicts",{"type":48,"value":1250}," — avoid names that collide with ",{"type":43,"tag":57,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":48,"value":62},{"type":48,"value":1257}," subcommands. Read the authoritative set from the ",{"type":43,"tag":57,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":48,"value":1263},"Commands:",{"type":48,"value":1265}," section of ",{"type":43,"tag":57,"props":1267,"children":1269},{"className":1268},[],[1270],{"type":48,"value":1271},"dotnet new --help",{"type":48,"value":1273}," for the installed SDK and do not hardcode it (it can change between versions); illustrative examples from current SDKs are ",{"type":43,"tag":57,"props":1275,"children":1277},{"className":1276},[],[1278],{"type":48,"value":1279},"install",{"type":48,"value":349},{"type":43,"tag":57,"props":1282,"children":1284},{"className":1283},[],[1285],{"type":48,"value":1286},"uninstall",{"type":48,"value":349},{"type":43,"tag":57,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":48,"value":1293},"update",{"type":48,"value":349},{"type":43,"tag":57,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":48,"value":1300},"list",{"type":48,"value":349},{"type":43,"tag":57,"props":1303,"children":1305},{"className":1304},[],[1306],{"type":48,"value":1307},"search",{"type":48,"value":349},{"type":43,"tag":57,"props":1310,"children":1312},{"className":1311},[],[1313],{"type":48,"value":1314},"details",{"type":48,"value":349},{"type":43,"tag":57,"props":1317,"children":1319},{"className":1318},[],[1320],{"type":48,"value":1321},"create",{"type":48,"value":1323},". A conflict happens because ",{"type":43,"tag":57,"props":1325,"children":1327},{"className":1326},[],[1328],{"type":48,"value":1329},"dotnet new \u003Cname>",{"type":48,"value":1331}," would be parsed as the subcommand of the same name. Top-level ",{"type":43,"tag":57,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":48,"value":8},{"type":48,"value":1338}," verbs like ",{"type":43,"tag":57,"props":1340,"children":1342},{"className":1341},[],[1343],{"type":48,"value":1344},"build",{"type":48,"value":349},{"type":43,"tag":57,"props":1347,"children":1349},{"className":1348},[],[1350],{"type":48,"value":1351},"run",{"type":48,"value":349},{"type":43,"tag":57,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":48,"value":1358},"test",{"type":48,"value":372},{"type":43,"tag":57,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":48,"value":1365},"publish",{"type":48,"value":1367}," do NOT conflict. Run ",{"type":43,"tag":57,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":48,"value":1373},"dotnet new list",{"type":48,"value":1375}," to confirm the name is not already taken.",{"type":43,"tag":85,"props":1377,"children":1378},{},[1379,1384],{"type":43,"tag":405,"props":1380,"children":1381},{},[1382],{"type":48,"value":1383},"Parameters, post-actions, tags",{"type":48,"value":1385}," — see template-validation for the complete rules, including the valid datatype list.",{"type":43,"tag":279,"props":1387,"children":1389},{"id":1388},"step-3-refine-the-template",[1390],{"type":48,"value":1391},"Step 3: Refine the template",{"type":43,"tag":51,"props":1393,"children":1394},{},[1395],{"type":48,"value":1396},"Based on validation results and user requirements:",{"type":43,"tag":306,"props":1398,"children":1399},{},[1400,1410,1428,1438,1448],{"type":43,"tag":85,"props":1401,"children":1402},{},[1403,1408],{"type":43,"tag":405,"props":1404,"children":1405},{},[1406],{"type":48,"value":1407},"Add parameters",{"type":48,"value":1409}," with appropriate types (string, bool, choice), defaults, and descriptions",{"type":43,"tag":85,"props":1411,"children":1412},{},[1413,1418,1420,1426],{"type":43,"tag":405,"props":1414,"children":1415},{},[1416],{"type":48,"value":1417},"Add conditional content",{"type":48,"value":1419}," using ",{"type":43,"tag":57,"props":1421,"children":1423},{"className":1422},[],[1424],{"type":48,"value":1425},"#if",{"type":48,"value":1427}," preprocessor directives for optional features",{"type":43,"tag":85,"props":1429,"children":1430},{},[1431,1436],{"type":43,"tag":405,"props":1432,"children":1433},{},[1434],{"type":48,"value":1435},"Configure post-actions",{"type":48,"value":1437}," for solution add, restore, or custom scripts",{"type":43,"tag":85,"props":1439,"children":1440},{},[1441,1446],{"type":43,"tag":405,"props":1442,"children":1443},{},[1444],{"type":48,"value":1445},"Set constraints",{"type":48,"value":1447}," to restrict which SDKs or workloads the template supports",{"type":43,"tag":85,"props":1449,"children":1450},{},[1451,1456],{"type":43,"tag":405,"props":1452,"children":1453},{},[1454],{"type":48,"value":1455},"Add classifications",{"type":48,"value":1457}," and tags for discoverability",{"type":43,"tag":279,"props":1459,"children":1461},{"id":1460},"step-4-test-the-template-locally",[1462],{"type":48,"value":1463},"Step 4: Test the template locally",{"type":43,"tag":566,"props":1465,"children":1469},{"className":1466,"code":1467,"language":1468,"meta":571,"style":571},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dotnet new install .\u002Fpath\u002Fto\u002Ftemplate\u002Froot\ndotnet new mylib --name TestProject --dry-run\ndotnet new mylib --name TestProject --output .\u002Ftest-output\ndotnet build .\u002Ftest-output\u002FTestProject\n","bash",[1470],{"type":43,"tag":57,"props":1471,"children":1472},{"__ignoreMap":571},[1473,1495,1526,1559],{"type":43,"tag":577,"props":1474,"children":1475},{"class":579,"line":580},[1476,1480,1485,1490],{"type":43,"tag":577,"props":1477,"children":1478},{"style":892},[1479],{"type":48,"value":8},{"type":43,"tag":577,"props":1481,"children":1482},{"style":619},[1483],{"type":48,"value":1484}," new",{"type":43,"tag":577,"props":1486,"children":1487},{"style":619},[1488],{"type":48,"value":1489}," install",{"type":43,"tag":577,"props":1491,"children":1492},{"style":619},[1493],{"type":48,"value":1494}," .\u002Fpath\u002Fto\u002Ftemplate\u002Froot\n",{"type":43,"tag":577,"props":1496,"children":1497},{"class":579,"line":590},[1498,1502,1506,1511,1516,1521],{"type":43,"tag":577,"props":1499,"children":1500},{"style":892},[1501],{"type":48,"value":8},{"type":43,"tag":577,"props":1503,"children":1504},{"style":619},[1505],{"type":48,"value":1484},{"type":43,"tag":577,"props":1507,"children":1508},{"style":619},[1509],{"type":48,"value":1510}," mylib",{"type":43,"tag":577,"props":1512,"children":1513},{"style":619},[1514],{"type":48,"value":1515}," --name",{"type":43,"tag":577,"props":1517,"children":1518},{"style":619},[1519],{"type":48,"value":1520}," TestProject",{"type":43,"tag":577,"props":1522,"children":1523},{"style":619},[1524],{"type":48,"value":1525}," --dry-run\n",{"type":43,"tag":577,"props":1527,"children":1528},{"class":579,"line":634},[1529,1533,1537,1541,1545,1549,1554],{"type":43,"tag":577,"props":1530,"children":1531},{"style":892},[1532],{"type":48,"value":8},{"type":43,"tag":577,"props":1534,"children":1535},{"style":619},[1536],{"type":48,"value":1484},{"type":43,"tag":577,"props":1538,"children":1539},{"style":619},[1540],{"type":48,"value":1510},{"type":43,"tag":577,"props":1542,"children":1543},{"style":619},[1544],{"type":48,"value":1515},{"type":43,"tag":577,"props":1546,"children":1547},{"style":619},[1548],{"type":48,"value":1520},{"type":43,"tag":577,"props":1550,"children":1551},{"style":619},[1552],{"type":48,"value":1553}," --output",{"type":43,"tag":577,"props":1555,"children":1556},{"style":619},[1557],{"type":48,"value":1558}," .\u002Ftest-output\n",{"type":43,"tag":577,"props":1560,"children":1561},{"class":579,"line":672},[1562,1566,1571],{"type":43,"tag":577,"props":1563,"children":1564},{"style":892},[1565],{"type":48,"value":8},{"type":43,"tag":577,"props":1567,"children":1568},{"style":619},[1569],{"type":48,"value":1570}," build",{"type":43,"tag":577,"props":1572,"children":1573},{"style":619},[1574],{"type":48,"value":1575}," .\u002Ftest-output\u002FTestProject\n",{"type":43,"tag":74,"props":1577,"children":1579},{"id":1578},"validation",[1580],{"type":48,"value":1581},"Validation",{"type":43,"tag":81,"props":1583,"children":1586},{"className":1584},[1585],"contains-task-list",[1587,1606,1615,1624,1633,1648],{"type":43,"tag":85,"props":1588,"children":1591},{"className":1589},[1590],"task-list-item",[1592,1598,1599,1604],{"type":43,"tag":1593,"props":1594,"children":1597},"input",{"disabled":1595,"type":1596},true,"checkbox",[],{"type":48,"value":983},{"type":43,"tag":57,"props":1600,"children":1602},{"className":1601},[],[1603],{"type":48,"value":70},{"type":48,"value":1605}," passes manual validation with zero errors",{"type":43,"tag":85,"props":1607,"children":1609},{"className":1608},[1590],[1610,1613],{"type":43,"tag":1593,"props":1611,"children":1612},{"disabled":1595,"type":1596},[],{"type":48,"value":1614}," Template identity and shortName are unique and meaningful",{"type":43,"tag":85,"props":1616,"children":1618},{"className":1617},[1590],[1619,1622],{"type":43,"tag":1593,"props":1620,"children":1621},{"disabled":1595,"type":1596},[],{"type":48,"value":1623}," All parameters have descriptions and appropriate defaults",{"type":43,"tag":85,"props":1625,"children":1627},{"className":1626},[1590],[1628,1631],{"type":43,"tag":1593,"props":1629,"children":1630},{"disabled":1595,"type":1596},[],{"type":48,"value":1632}," Template can be installed, dry-run, and instantiated successfully",{"type":43,"tag":85,"props":1634,"children":1636},{"className":1635},[1590],[1637,1640,1642],{"type":43,"tag":1593,"props":1638,"children":1639},{"disabled":1595,"type":1596},[],{"type":48,"value":1641}," Created projects build cleanly with ",{"type":43,"tag":57,"props":1643,"children":1645},{"className":1644},[],[1646],{"type":48,"value":1647},"dotnet build",{"type":43,"tag":85,"props":1649,"children":1651},{"className":1650},[1590],[1652,1655],{"type":43,"tag":1593,"props":1653,"children":1654},{"disabled":1595,"type":1596},[],{"type":48,"value":1656}," Conditional content produces correct output for all parameter combinations",{"type":43,"tag":74,"props":1658,"children":1660},{"id":1659},"common-pitfalls",[1661],{"type":48,"value":1662},"Common Pitfalls",{"type":43,"tag":161,"props":1664,"children":1665},{},[1666,1682],{"type":43,"tag":165,"props":1667,"children":1668},{},[1669],{"type":43,"tag":169,"props":1670,"children":1671},{},[1672,1677],{"type":43,"tag":173,"props":1673,"children":1674},{},[1675],{"type":48,"value":1676},"Pitfall",{"type":43,"tag":173,"props":1678,"children":1679},{},[1680],{"type":48,"value":1681},"Solution",{"type":43,"tag":189,"props":1683,"children":1684},{},[1685,1706,1809,1837,1858,1877],{"type":43,"tag":169,"props":1686,"children":1687},{},[1688,1693],{"type":43,"tag":196,"props":1689,"children":1690},{},[1691],{"type":48,"value":1692},"Identity format issues",{"type":43,"tag":196,"props":1694,"children":1695},{},[1696,1698,1704],{"type":48,"value":1697},"Use reverse-DNS format (e.g., ",{"type":43,"tag":57,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":48,"value":1703},"MyOrg.Templates.WebApi",{"type":48,"value":1705},"). Avoid spaces or special characters.",{"type":43,"tag":169,"props":1707,"children":1708},{},[1709,1714],{"type":43,"tag":196,"props":1710,"children":1711},{},[1712],{"type":48,"value":1713},"ShortName conflicts with CLI commands",{"type":43,"tag":196,"props":1715,"children":1716},{},[1717,1719,1724,1726,1731,1733,1738,1739,1744,1745,1750,1751,1756,1757,1762,1763,1768,1769,1774,1776,1781,1783,1788,1789,1794,1795,1800,1802,1807],{"type":48,"value":1718},"Avoid names that match a ",{"type":43,"tag":57,"props":1720,"children":1722},{"className":1721},[],[1723],{"type":48,"value":62},{"type":48,"value":1725}," subcommand; read the live set from ",{"type":43,"tag":57,"props":1727,"children":1729},{"className":1728},[],[1730],{"type":48,"value":1271},{"type":48,"value":1732}," and don't hardcode it (illustrative examples: ",{"type":43,"tag":57,"props":1734,"children":1736},{"className":1735},[],[1737],{"type":48,"value":1279},{"type":48,"value":349},{"type":43,"tag":57,"props":1740,"children":1742},{"className":1741},[],[1743],{"type":48,"value":1286},{"type":48,"value":349},{"type":43,"tag":57,"props":1746,"children":1748},{"className":1747},[],[1749],{"type":48,"value":1293},{"type":48,"value":349},{"type":43,"tag":57,"props":1752,"children":1754},{"className":1753},[],[1755],{"type":48,"value":1300},{"type":48,"value":349},{"type":43,"tag":57,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":48,"value":1307},{"type":48,"value":349},{"type":43,"tag":57,"props":1764,"children":1766},{"className":1765},[],[1767],{"type":48,"value":1314},{"type":48,"value":349},{"type":43,"tag":57,"props":1770,"children":1772},{"className":1771},[],[1773],{"type":48,"value":1321},{"type":48,"value":1775},"). Top-level verbs like ",{"type":43,"tag":57,"props":1777,"children":1779},{"className":1778},[],[1780],{"type":48,"value":1344},{"type":48,"value":1782},"\u002F",{"type":43,"tag":57,"props":1784,"children":1786},{"className":1785},[],[1787],{"type":48,"value":1351},{"type":48,"value":1782},{"type":43,"tag":57,"props":1790,"children":1792},{"className":1791},[],[1793],{"type":48,"value":1358},{"type":48,"value":1782},{"type":43,"tag":57,"props":1796,"children":1798},{"className":1797},[],[1799],{"type":48,"value":1365},{"type":48,"value":1801}," are fine. Run ",{"type":43,"tag":57,"props":1803,"children":1805},{"className":1804},[],[1806],{"type":48,"value":1373},{"type":48,"value":1808}," to see if the name is already taken.",{"type":43,"tag":169,"props":1810,"children":1811},{},[1812,1817],{"type":43,"tag":196,"props":1813,"children":1814},{},[1815],{"type":48,"value":1816},"Missing parameter descriptions",{"type":43,"tag":196,"props":1818,"children":1819},{},[1820,1822,1828,1829,1835],{"type":48,"value":1821},"Every parameter should have a ",{"type":43,"tag":57,"props":1823,"children":1825},{"className":1824},[],[1826],{"type":48,"value":1827},"description",{"type":48,"value":533},{"type":43,"tag":57,"props":1830,"children":1832},{"className":1831},[],[1833],{"type":48,"value":1834},"displayName",{"type":48,"value":1836}," for discoverability.",{"type":43,"tag":169,"props":1838,"children":1839},{},[1840,1845],{"type":43,"tag":196,"props":1841,"children":1842},{},[1843],{"type":48,"value":1844},"Not testing all parameter combinations",{"type":43,"tag":196,"props":1846,"children":1847},{},[1848,1850,1856],{"type":48,"value":1849},"Use ",{"type":43,"tag":57,"props":1851,"children":1853},{"className":1852},[],[1854],{"type":48,"value":1855},"dotnet new \u003Ctemplate> --dry-run",{"type":48,"value":1857}," with different parameter values to verify conditional content works correctly.",{"type":43,"tag":169,"props":1859,"children":1860},{},[1861,1866],{"type":43,"tag":196,"props":1862,"children":1863},{},[1864],{"type":48,"value":1865},"Hardcoded versions in template",{"type":43,"tag":196,"props":1867,"children":1868},{},[1869,1870,1875],{"type":48,"value":1849},{"type":43,"tag":57,"props":1871,"children":1873},{"className":1872},[],[1874],{"type":48,"value":362},{"type":48,"value":1876}," replacement for project names and consider parameterizing framework versions.",{"type":43,"tag":169,"props":1878,"children":1879},{},[1880,1885],{"type":43,"tag":196,"props":1881,"children":1882},{},[1883],{"type":48,"value":1884},"Not setting classifications",{"type":43,"tag":196,"props":1886,"children":1887},{},[1888,1890,1895,1897,1903],{"type":48,"value":1889},"Add appropriate ",{"type":43,"tag":57,"props":1891,"children":1893},{"className":1892},[],[1894],{"type":48,"value":370},{"type":48,"value":1896}," (e.g., ",{"type":43,"tag":57,"props":1898,"children":1900},{"className":1899},[],[1901],{"type":48,"value":1902},"[\"Web\", \"API\"]",{"type":48,"value":1904},") for template discovery.",{"type":43,"tag":74,"props":1906,"children":1908},{"id":1907},"more-info",[1909],{"type":48,"value":1910},"More Info",{"type":43,"tag":81,"props":1912,"children":1913},{},[1914,1928,1940],{"type":43,"tag":85,"props":1915,"children":1916},{},[1917,1926],{"type":43,"tag":1918,"props":1919,"children":1923},"a",{"href":1920,"rel":1921},"https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fcustom-templates",[1922],"nofollow",[1924],{"type":48,"value":1925},"Custom templates for dotnet new",{"type":48,"value":1927}," — official authoring guide",{"type":43,"tag":85,"props":1929,"children":1930},{},[1931,1938],{"type":43,"tag":1918,"props":1932,"children":1935},{"href":1933,"rel":1934},"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Ftemplating\u002Fwiki\u002FReference-for-template.json",[1922],[1936],{"type":48,"value":1937},"template.json reference",{"type":48,"value":1939}," — full schema reference",{"type":43,"tag":85,"props":1941,"children":1942},{},[1943,1950],{"type":43,"tag":1918,"props":1944,"children":1947},{"href":1945,"rel":1946},"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Ftemplating\u002Fwiki",[1922],[1948],{"type":48,"value":1949},"Template Engine Wiki",{"type":48,"value":1951}," — template engine internals",{"type":43,"tag":1953,"props":1954,"children":1955},"style",{},[1956],{"type":48,"value":1957},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1959,"total":2120},[1960,1974,1989,2004,2022,2036,2055,2065,2076,2086,2099,2110],{"slug":1961,"name":1961,"fn":1962,"description":1963,"org":1964,"tags":1965,"stars":1971,"repoUrl":1972,"updatedAt":1973},"multithreaded-task-migration","migrate MSBuild tasks to multithreaded mode","Guide for migrating MSBuild tasks to multithreaded mode support, including compatibility red-team review. Use this when converting tasks to thread-safe versions, implementing IMultiThreadableTask, adding TaskEnvironment support, or auditing migrations for behavioral compatibility.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1966,1967,1968],{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"name":1969,"slug":1970,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":1975,"name":1975,"fn":1976,"description":1977,"org":1978,"tags":1979,"stars":25,"repoUrl":26,"updatedAt":1988},"analyzing-dotnet-performance","analyze .NET code for performance anti-patterns","Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I\u002FO with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1980,1981,1984,1987],{"name":17,"slug":18,"type":15},{"name":1982,"slug":1983,"type":15},"Code Analysis","code-analysis",{"name":1985,"slug":1986,"type":15},"Debugging","debugging",{"name":1969,"slug":1970,"type":15},"2026-07-12T08:23:25.400375",{"slug":1990,"name":1990,"fn":1991,"description":1992,"org":1993,"tags":1994,"stars":25,"repoUrl":26,"updatedAt":2003},"android-tombstone-symbolication","symbolicate .NET runtime frames in Android tombstones","Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app crash from a tombstone, resolving native backtrace frames in libmonosgen-2.0.so or libcoreclr.so to .NET runtime source code, or investigating SIGABRT, SIGSEGV, or other native signals originating from the .NET runtime on Android. DO NOT USE FOR pure Java\u002FKotlin crashes, managed .NET exceptions that are already captured in logcat, or iOS crash logs. INVOKES Symbolicate-Tombstone.ps1 script, llvm-symbolizer, Microsoft symbol server.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1995,1996,1999,2000],{"name":17,"slug":18,"type":15},{"name":1997,"slug":1998,"type":15},"Android","android",{"name":1985,"slug":1986,"type":15},{"name":2001,"slug":2002,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":2005,"name":2005,"fn":2006,"description":2007,"org":2008,"tags":2009,"stars":25,"repoUrl":26,"updatedAt":2021},"apple-crash-symbolication","symbolicate .NET runtime frames in crash logs","Symbolicate .NET runtime frames in Apple platform .ips crash logs (iOS, tvOS, Mac Catalyst, macOS). Extracts UUIDs and addresses from the native backtrace, locates dSYM debug symbols, and runs atos to produce function names with source file and line numbers. Automatically downloads .dwarf symbols from the Microsoft symbol server using Mach-O UUIDs. USE FOR triaging a .NET MAUI or Mono app crash from an .ips file on any Apple platform, resolving native backtrace frames in libcoreclr or libmonosgen-2.0 to .NET runtime source code, retrieving .ips crash logs from a connected iOS device or iPhone, or investigating EXC_CRASH, EXC_BAD_ACCESS, SIGABRT, or SIGSEGV originating from the .NET runtime. DO NOT USE FOR pure Swift\u002FObjective-C crashes with no .NET components, or Android tombstone files. INVOKES Symbolicate-Crash.ps1 script, atos, dwarfdump, idevicecrashreport.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2010,2011,2012,2015,2018],{"name":17,"slug":18,"type":15},{"name":1985,"slug":1986,"type":15},{"name":2013,"slug":2014,"type":15},"iOS","ios",{"name":2016,"slug":2017,"type":15},"macOS","macos",{"name":2019,"slug":2020,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":2023,"name":2023,"fn":2024,"description":2025,"org":2026,"tags":2027,"stars":25,"repoUrl":26,"updatedAt":2035},"assertion-quality","evaluate assertion quality in test suites","Analyzes the variety and depth of assertions across test suites in any language. Use when the user asks to evaluate assertion quality, find shallow tests, identify assertion-free tests (no assertions or only trivial ones like Assert.IsNotNull \u002F toBeTruthy()), flag self-referential or tautological assertions, measure assertion diversity, or audit whether tests verify different facets of behavior. Polyglot: .NET, Python, TS\u002FJS, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, C++. DO NOT USE FOR: writing new tests (use code-testing-agent \u002F writing-mstest-tests), mutation reasoning about whether tests would catch a bug (use test-gap-analysis), or a general severity-ranked anti-pattern audit (use test-anti-patterns), fixing or rewriting assertions, or writing, fixing, or modernizing MSTest tests, assertions, or attributes (use writing-mstest-tests).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2028,2029,2032],{"name":1982,"slug":1983,"type":15},{"name":2030,"slug":2031,"type":15},"QA","qa",{"name":2033,"slug":2034,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":2037,"name":2037,"fn":2038,"description":2039,"org":2040,"tags":2041,"stars":25,"repoUrl":26,"updatedAt":2054},"author-component","create and review Blazor components","Create or review Blazor components (.razor files) with correct architecture. USE FOR: writing new Blazor components that do NOT involve JavaScript interop, implementing parameters and EventCallback, RenderFragment slots, component lifecycle (OnInitializedAsync, OnParametersSet), async patterns, IAsyncDisposable, CancellationToken, CSS isolation, code-behind. DO NOT USE FOR: creating new projects (use create-blazor-project), JavaScript interop or calling browser APIs from Blazor (use use-js-interop), forms and validation (use collect-user-input), prerendering issues (use support-prerendering), HTTP data fetching patterns (use fetch-and-send-data), coordinating state between unrelated components (use coordinate-components).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2042,2043,2046,2048,2051],{"name":17,"slug":18,"type":15},{"name":2044,"slug":2045,"type":15},"Blazor","blazor",{"name":912,"slug":2047,"type":15},"csharp",{"name":2049,"slug":2050,"type":15},"UI Components","ui-components",{"name":2052,"slug":2053,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":2056,"name":2056,"fn":2057,"description":2058,"org":2059,"tags":2060,"stars":25,"repoUrl":26,"updatedAt":2064},"binlog-failure-analysis","analyze MSBuild binary logs","Analyze MSBuild binary logs to diagnose build failures. USE FOR: build errors that are unclear from console output, diagnosing cascading failures across multi-project builds, tracing MSBuild target execution order, and generally any MSBuild build issues. Requires an existing .binlog file. DO NOT USE FOR: generating binlogs (use binlog-generation), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2061,2062,2063],{"name":1982,"slug":1983,"type":15},{"name":1985,"slug":1986,"type":15},{"name":2001,"slug":2002,"type":15},"2026-07-12T08:21:34.637923",{"slug":2066,"name":2066,"fn":2067,"description":2068,"org":2069,"tags":2070,"stars":25,"repoUrl":26,"updatedAt":2075},"binlog-generation","generate MSBuild binary logs for diagnostics","Generate MSBuild binary logs (binlogs) for build diagnostics and analysis. USE FOR: adding \u002Fbl:{} to any dotnet build, test, pack, publish, or restore command to capture a full build execution trace, prerequisite for binlog-failure-analysis and build-perf-diagnostics skills, enabling post-build investigation of errors or performance. Requires MSBuild 17.8+ \u002F .NET 8 SDK+ for {} placeholder; PowerShell needs -bl:{{}}. DO NOT USE FOR: non-MSBuild build systems (npm, Maven, CMake), analyzing an existing binlog (use binlog-failure-analysis instead).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2071,2073,2074],{"name":2072,"slug":1344,"type":15},"Build",{"name":1985,"slug":1986,"type":15},{"name":23,"slug":24,"type":15},"2026-07-19T05:38:19.340791",{"slug":2077,"name":2077,"fn":2078,"description":2079,"org":2080,"tags":2081,"stars":25,"repoUrl":26,"updatedAt":2085},"build-parallelism","optimize MSBuild build parallelism","Diagnose and fix under-parallelized MSBuild builds. USE WHEN a multi-project solution build is slower than expected, doesn't speed up when you add cores, pegs a single core while others idle, or you want to know why `-m` isn't helping. Note: `\u002Fmaxcpucount` default is 1 (sequential) — always pass `-m` for parallel builds. Covers finding the critical path (longest serial ProjectReference chain), graph build (`\u002Fgraph`), BuildInParallel, and solution filters (`.slnf`). DO NOT USE FOR: single-project builds, incremental issues (use incremental-build), compilation slowness inside one project (use build-perf-diagnostics), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2082,2083,2084],{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"name":1969,"slug":1970,"type":15},"2026-07-19T05:38:18.364937",{"slug":2087,"name":2087,"fn":2088,"description":2089,"org":2090,"tags":2091,"stars":25,"repoUrl":26,"updatedAt":2098},"build-perf-baseline","establish and optimize build performance baselines","Establish build performance baselines and apply systematic optimization techniques. USE FOR: diagnosing slow builds, establishing before\u002Fafter measurements (cold, warm, no-op scenarios), applying optimization strategies like MSBuild Server, static graph builds, artifacts output, and dependency graph trimming. Start here before diving into build-perf-diagnostics, incremental-build, or build-parallelism. DO NOT USE FOR: non-MSBuild build systems, detailed bottleneck analysis (use build-perf-diagnostics after baselining).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2092,2093,2096,2097],{"name":23,"slug":24,"type":15},{"name":2094,"slug":2095,"type":15},"Monitoring","monitoring",{"name":1969,"slug":1970,"type":15},{"name":2033,"slug":2034,"type":15},"2026-07-12T08:21:35.865649",{"slug":2100,"name":2100,"fn":2101,"description":2102,"org":2103,"tags":2104,"stars":25,"repoUrl":26,"updatedAt":2109},"build-perf-diagnostics","diagnose MSBuild build performance bottlenecks","Diagnose MSBuild build performance bottlenecks using binary log analysis. USE FOR: identifying why builds are slow by analyzing binlog performance summaries, detecting ResolveAssemblyReference (RAR) taking >5s, Roslyn analyzers consuming >30% of Csc time, single targets dominating >50% of build time, node utilization below 80%, excessive Copy tasks, NuGet restore running every build. Covers timeline analysis, Target\u002FTask Performance Summary interpretation, and 7 common bottleneck categories. Use after build-perf-baseline has established measurements. DO NOT USE FOR: establishing initial baselines (use build-perf-baseline first), fixing incremental build issues (use incremental-build), parallelism tuning (use build-parallelism), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2105,2106,2107,2108],{"name":17,"slug":18,"type":15},{"name":1985,"slug":1986,"type":15},{"name":23,"slug":24,"type":15},{"name":1969,"slug":1970,"type":15},"2026-07-12T08:21:40.961722",{"slug":2111,"name":2111,"fn":2112,"description":2113,"org":2114,"tags":2115,"stars":25,"repoUrl":26,"updatedAt":2119},"check-bin-obj-clash","detect MSBuild output path conflicts","Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. USE FOR: builds failing with 'Cannot create a file when that file already exists', 'The process cannot access the file because it is being used by another process', intermittent build failures that succeed on retry, or missing\u002Foverwritten outputs in multi-project or multi-targeting builds where bin\u002Fobj (or project.assets.json) collide. Common causes: shared OutputPath, missing AppendTargetFrameworkToOutputPath, extra global properties (e.g. PublishReadyToRun), or SetTargetFramework on a ProjectReference to a single-targeting project. DO NOT USE FOR: file access errors unrelated to MSBuild (OS-level locking), single-project single-TFM builds, non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2116,2117,2118],{"name":1985,"slug":1986,"type":15},{"name":23,"slug":24,"type":15},{"name":2030,"slug":2031,"type":15},"2026-07-19T05:38:14.336279",144,{"items":2122,"total":2171},[2123,2130,2137,2145,2151,2159,2165],{"slug":1975,"name":1975,"fn":1976,"description":1977,"org":2124,"tags":2125,"stars":25,"repoUrl":26,"updatedAt":1988},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2126,2127,2128,2129],{"name":17,"slug":18,"type":15},{"name":1982,"slug":1983,"type":15},{"name":1985,"slug":1986,"type":15},{"name":1969,"slug":1970,"type":15},{"slug":1990,"name":1990,"fn":1991,"description":1992,"org":2131,"tags":2132,"stars":25,"repoUrl":26,"updatedAt":2003},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2133,2134,2135,2136],{"name":17,"slug":18,"type":15},{"name":1997,"slug":1998,"type":15},{"name":1985,"slug":1986,"type":15},{"name":2001,"slug":2002,"type":15},{"slug":2005,"name":2005,"fn":2006,"description":2007,"org":2138,"tags":2139,"stars":25,"repoUrl":26,"updatedAt":2021},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2140,2141,2142,2143,2144],{"name":17,"slug":18,"type":15},{"name":1985,"slug":1986,"type":15},{"name":2013,"slug":2014,"type":15},{"name":2016,"slug":2017,"type":15},{"name":2019,"slug":2020,"type":15},{"slug":2023,"name":2023,"fn":2024,"description":2025,"org":2146,"tags":2147,"stars":25,"repoUrl":26,"updatedAt":2035},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2148,2149,2150],{"name":1982,"slug":1983,"type":15},{"name":2030,"slug":2031,"type":15},{"name":2033,"slug":2034,"type":15},{"slug":2037,"name":2037,"fn":2038,"description":2039,"org":2152,"tags":2153,"stars":25,"repoUrl":26,"updatedAt":2054},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2154,2155,2156,2157,2158],{"name":17,"slug":18,"type":15},{"name":2044,"slug":2045,"type":15},{"name":912,"slug":2047,"type":15},{"name":2049,"slug":2050,"type":15},{"name":2052,"slug":2053,"type":15},{"slug":2056,"name":2056,"fn":2057,"description":2058,"org":2160,"tags":2161,"stars":25,"repoUrl":26,"updatedAt":2064},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2162,2163,2164],{"name":1982,"slug":1983,"type":15},{"name":1985,"slug":1986,"type":15},{"name":2001,"slug":2002,"type":15},{"slug":2066,"name":2066,"fn":2067,"description":2068,"org":2166,"tags":2167,"stars":25,"repoUrl":26,"updatedAt":2075},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2168,2169,2170],{"name":2072,"slug":1344,"type":15},{"name":1985,"slug":1986,"type":15},{"name":23,"slug":24,"type":15},96]