[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-template-discovery":3,"mdc-jfg5p7-key":34,"related-repo-dotnet-template-discovery":2023,"related-org-dotnet-template-discovery":2131},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":29,"sourceUrl":32,"mdContent":33},"template-discovery","find and inspect .NET project templates","Helps find, inspect, and compare (at a high level) .NET project templates. Resolves natural-language project descriptions to ranked template matches with pre-filled parameters. USE FOR: finding the right dotnet new template for a task, inspecting a template's parameters and constraints, understanding what a template produces before creating a project, resolving intent like \"web API with auth\" to concrete template + parameters. DO NOT USE FOR: actually creating projects (use template-instantiation), authoring custom templates (use template-authoring), producing a detailed side-by-side comparison (use template-comparison), choosing cross-parameter defaults during creation (use template-smart-defaults), MSBuild or build issues (use dotnet-msbuild plugin), NuGet package management unrelated to template packages.\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],{"name":13,"slug":14,"type":15},".NET","net","tag",{"name":17,"slug":18,"type":15},"Templates","templates",{"name":20,"slug":21,"type":15},"Engineering","engineering",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-22T05:35:41.67705","MIT",332,[28],"agent-skills",{"repoUrl":23,"stars":22,"forks":26,"topics":30,"description":31},[28],"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-discovery","---\nname: template-discovery\ndescription: >\n  Helps find, inspect, and compare (at a high level) .NET project templates.\n  Resolves natural-language project descriptions to ranked template matches\n  with pre-filled parameters.\n  USE FOR: finding the right dotnet new template for a task, inspecting a template's\n  parameters and constraints, understanding what a template\n  produces before creating a project, resolving intent like \"web API with auth\" to\n  concrete template + parameters.\n  DO NOT USE FOR: actually creating projects (use template-instantiation), authoring\n  custom templates (use template-authoring), producing a detailed side-by-side comparison\n  (use template-comparison), choosing cross-parameter defaults during creation\n  (use template-smart-defaults), MSBuild or build issues (use dotnet-msbuild plugin),\n  NuGet package management unrelated to template packages.\nlicense: MIT\n---\n\n# Template Discovery\n\nThis skill helps an agent find, inspect, and select the right `dotnet new` template for a given task using `dotnet new` CLI commands for search, listing, and parameter inspection.\n\n## When to Use\n\n- User asks \"What templates are available for X?\"\n- User describes a project in natural language (\"I need a web API with authentication\")\n- User wants to compare templates or understand parameters before creating a project\n- User needs to know what a template produces (files, structure) before committing\n\n## When Not to Use\n\n- User wants to create a project — route to `template-instantiation` skill\n- User wants to author or validate a custom template — route to `template-authoring` skill\n- User wants a detailed side-by-side comparison of templates — route to `template-comparison` skill\n- User wants smart cross-parameter defaults during creation — route to `template-smart-defaults` skill\n- User is troubleshooting build issues — route to `dotnet-msbuild` plugin\n\n> **Answer first, confirm second — required, in this order.** The Step 1 intent → template\n> and keyword → parameter mappings are a complete answer on their own. **Your first action is\n> to write** a concrete template + parameter recommendation (with a ready-to-run `dotnet new`\n> command) from the mapping, **before you run any `dotnet new` command**. Only then use the CLI\n> to *confirm* exact names\u002Fchoices and update the answer. **Never make a `dotnet new` call your\n> final action** — the engine's global mutex can make it fail with an empty \"persistence\"\u002F\"mutex\"\n> result under load, leaving the user nothing. Always close with the written recommendation, and\n> never end a turn on a \"let me confirm from the CLI…\" teaser.\n\n## Inputs\n\n| Input | Required | Description |\n|-------|----------|-------------|\n| User intent or keywords | Yes | Natural-language description or keywords (e.g., \"web API\", \"console app\", \"MAUI\") |\n| Language preference | No | C#, F#, or VB — defaults to C# |\n| Framework preference | No | Target framework (e.g., net10.0, net9.0) |\n\n## Workflow\n\n> **Do Step 1 and write the recommendation to the user before running Step 2–4 commands.**\n> Steps 2–4 only *confirm* the answer; a `dotnet new` failure must never leave the turn empty.\n\n### Step 1: Resolve intent to template candidates\n\nMap the user's natural-language description to template short names and parameters using these mappings.\n\n**Intent → template short name(s):**\n\n| Intent \u002F phrase | Template short name(s) |\n|---|---|\n| web api, web service, rest api, restful, api, minimal api | `webapi` |\n| web app, web application | `webapp`, `blazorserver` |\n| mvc | `mvc` |\n| razor, razor pages | `webapp` |\n| blazor, blazor web app | `blazor` |\n| blazor server | `blazorserver` |\n| blazor wasm, blazor webassembly | `blazorwasm` |\n| grpc | `grpc` |\n| signalr | `webapi`, `webapp` |\n| console, console app, command line, cli | `console` |\n| worker, background service, daemon, windows service | `worker` |\n| class library, library, lib, nuget package | `classlib` |\n| maui, mobile, cross-platform app, ios, android | `maui` |\n| desktop | `maui`, `wpf`, `winforms` |\n| wpf | `wpf` |\n| winforms, windows forms | `winforms` |\n| winui, winui3 | `winui3` |\n| test, unit test | `xunit`, `nunit`, `mstest` |\n| xunit \u002F nunit \u002F mstest | `xunit` \u002F `nunit` \u002F `mstest` |\n| solution | `sln` |\n| aspire, .net aspire | `aspire-starter`, `aspire` |\n| azure functions, function app, serverless | `func` |\n| orleans | `orleans` |\n| razor component, web component | `razorcomponent` |\n| razor class library | `razorclasslib` |\n| gitignore \u002F editorconfig \u002F nuget config \u002F global json | `gitignore` \u002F `editorconfig` \u002F `nugetconfig` \u002F `globaljson` |\n\n**Keyword → parameter:**\n\n| Keyword \u002F phrase | Parameter | Value |\n|---|---|---|\n| authentication, auth, individual auth, individual accounts | `--auth` | `Individual` |\n| windows auth | `--auth` | `Windows` |\n| azure ad, entra id | `--auth` | `SingleOrg` |\n| no auth, no authentication | `--auth` | `None` |\n| controllers, with controllers | `--use-controllers` | (flag) |\n| minimal api | (default) | — |\n| aot, native aot | `--aot` | (flag) |\n| docker, container | the template's Docker\u002Fcontainer option | varies by template — confirm with `--help` (not all templates expose one) |\n| net8 \u002F .net 8 \u002F dotnet 8 | `--framework` | `net8.0` |\n| net9 \u002F .net 9 \u002F dotnet 9 | `--framework` | `net9.0` |\n| net10 \u002F .net 10 \u002F dotnet 10 | `--framework` | `net10.0` |\n\nThese are starting guesses. Always confirm the real parameter names\u002Fchoices with `dotnet new \u003Ctemplate> --help`, because parameter names vary by template (e.g., `--auth` vs `--Authentication`).\n\nSome mapped short names are not present in a default SDK install — templates like `maui`, `winui3`, `aspire-starter`\u002F`aspire`, `func`, and `orleans` typically require a workload (`dotnet workload install \u003Cid>`) and\u002For an additional template package (`dotnet new install \u003Cpackage>`). If a mapped short name does not appear in `dotnet new list`, fall back to `dotnet new list`\u002F`dotnet new search` to find the right template and the package\u002Fworkload that provides it before recommending it.\n\n> **Resilience — always answer, even if the CLI fails.** The intent mapping above is a usable answer on its own. Run `dotnet new` commands **sequentially, one at a time** — the template engine uses a global mutex, so firing several `dotnet new \u003Ctemplate> --help`\u002F`--dry-run` calls concurrently can produce a transient \"mutex\"\u002F\"persistence\" error and empty output. If a command fails, retry it once; if it still fails, **fall back to this intent\u002Fparameter mapping and give the user a concrete recommendation**, noting that the exact parameter names\u002Fchoices could not be CLI-confirmed. Never end the turn with no answer because a CLI call errored.\n\n### Step 2: Search for templates\n\nUse `dotnet new search` to find templates by keyword across both locally installed templates and NuGet.org:\n\n```bash\ndotnet new search blazor\n```\n\nUse `dotnet new list` to show only installed templates, with optional filters:\n\n```bash\ndotnet new list --language C# --type project\ndotnet new list web\n```\n\n### Step 3: Inspect template details\n\nUse `dotnet new \u003Ctemplate> --help` to get full parameter details for a specific template — parameter names, types, defaults, and allowed values:\n\n```bash\ndotnet new webapi --help\n```\n\n### Step 4: Preview output\n\nUse `dotnet new \u003Ctemplate> --dry-run` to show what files and directories a template would create without writing anything to disk:\n\n```bash\ndotnet new webapi --name MyApi --auth Individual --dry-run\n```\n\nIf the dry-run fails (transient \"mutex\"\u002F\"persistence\" error), retry once; if it still fails, give a **representative** structure (template *family* and typical file kinds) and note it isn't CLI-confirmed. Do not invent specific values, choices, or file paths. When the dry-run **succeeds**, present the actual file list from its output faithfully — don't summarize, regroup, or invent files — and add a one-line purpose for the key entry points (e.g. `Program.cs`, `App.razor`).\n\n### Step 5: Present findings\n\n**Lead with the answer as a ready-to-run command**, then justify it. Required shape:\n\n> **Use `\u003Ctemplate>`** — one-line why.\n> ```bash\n> dotnet new \u003Ctemplate> --name \u003CName> [--key params]\n> ```\n\nThen add supporting detail:\n- Key parameters and recommended values (with the choices, e.g. `--auth`: None | Individual | SingleOrg | Windows)\n- What to expect (files created, project structure)\n- Any prerequisites — name the **exact package to install** (`dotnet new install \u003Cid>`), or say **\"no install needed — ships with the SDK\"** for a built-in template\n\nAn answer without a concrete, copy-pasteable command is what makes this skill tie with a plain reply — always give the command to run next.\n\n## Validation\n\n- [ ] At least one template match was found for the user's intent\n- [ ] Template parameters are explained with types and defaults\n- [ ] User understands what the template produces before proceeding to creation\n\n## Common Pitfalls\n\n| Pitfall | Solution |\n|---------|----------|\n| Not searching NuGet for templates | If `dotnet new list` shows no matches, use `dotnet new search \u003Ckeyword>` to find installable templates on NuGet.org. |\n| Not checking template constraints | Some templates require specific SDKs or workloads. Use `dotnet new \u003Ctemplate> --help` to surface constraints before recommending. |\n| Recommending a template without previewing output | Always use `dotnet new \u003Ctemplate> --dry-run` to confirm the template produces what the user expects. |\n| A `dotnet new` call fails with a \"mutex\"\u002F\"persistence\" error and you return nothing | These are transient (often from concurrent invocations). Run `dotnet new` calls sequentially, retry once, then fall back to the Step 1 intent mapping and still give the user a concrete answer. |\n\n## More Info\n\n- [dotnet new templates](https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fdotnet-new-sdk-templates) — built-in template reference\n- [Template Engine Wiki](https:\u002F\u002Fgithub.com\u002Fdotnet\u002Ftemplating\u002Fwiki) — template engine internals\n",{"data":35,"body":36},{"name":4,"description":6,"license":25},{"type":37,"children":38},"root",[39,47,69,76,101,107,172,237,243,329,335,361,368,373,381,917,925,1216,1244,1326,1374,1380,1392,1430,1441,1505,1511,1522,1550,1556,1568,1615,1655,1661,1671,1760,1765,1812,1817,1823,1859,1865,1982,1988,2017],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":46},"text","Template Discovery",{"type":40,"tag":48,"props":49,"children":50},"p",{},[51,53,60,62,67],{"type":45,"value":52},"This skill helps an agent find, inspect, and select the right ",{"type":40,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":45,"value":59},"dotnet new",{"type":45,"value":61}," template for a given task using ",{"type":40,"tag":54,"props":63,"children":65},{"className":64},[],[66],{"type":45,"value":59},{"type":45,"value":68}," CLI commands for search, listing, and parameter inspection.",{"type":40,"tag":70,"props":71,"children":73},"h2",{"id":72},"when-to-use",[74],{"type":45,"value":75},"When to Use",{"type":40,"tag":77,"props":78,"children":79},"ul",{},[80,86,91,96],{"type":40,"tag":81,"props":82,"children":83},"li",{},[84],{"type":45,"value":85},"User asks \"What templates are available for X?\"",{"type":40,"tag":81,"props":87,"children":88},{},[89],{"type":45,"value":90},"User describes a project in natural language (\"I need a web API with authentication\")",{"type":40,"tag":81,"props":92,"children":93},{},[94],{"type":45,"value":95},"User wants to compare templates or understand parameters before creating a project",{"type":40,"tag":81,"props":97,"children":98},{},[99],{"type":45,"value":100},"User needs to know what a template produces (files, structure) before committing",{"type":40,"tag":70,"props":102,"children":104},{"id":103},"when-not-to-use",[105],{"type":45,"value":106},"When Not to Use",{"type":40,"tag":77,"props":108,"children":109},{},[110,123,135,147,159],{"type":40,"tag":81,"props":111,"children":112},{},[113,115,121],{"type":45,"value":114},"User wants to create a project — route to ",{"type":40,"tag":54,"props":116,"children":118},{"className":117},[],[119],{"type":45,"value":120},"template-instantiation",{"type":45,"value":122}," skill",{"type":40,"tag":81,"props":124,"children":125},{},[126,128,134],{"type":45,"value":127},"User wants to author or validate a custom template — route to ",{"type":40,"tag":54,"props":129,"children":131},{"className":130},[],[132],{"type":45,"value":133},"template-authoring",{"type":45,"value":122},{"type":40,"tag":81,"props":136,"children":137},{},[138,140,146],{"type":45,"value":139},"User wants a detailed side-by-side comparison of templates — route to ",{"type":40,"tag":54,"props":141,"children":143},{"className":142},[],[144],{"type":45,"value":145},"template-comparison",{"type":45,"value":122},{"type":40,"tag":81,"props":148,"children":149},{},[150,152,158],{"type":45,"value":151},"User wants smart cross-parameter defaults during creation — route to ",{"type":40,"tag":54,"props":153,"children":155},{"className":154},[],[156],{"type":45,"value":157},"template-smart-defaults",{"type":45,"value":122},{"type":40,"tag":81,"props":160,"children":161},{},[162,164,170],{"type":45,"value":163},"User is troubleshooting build issues — route to ",{"type":40,"tag":54,"props":165,"children":167},{"className":166},[],[168],{"type":45,"value":169},"dotnet-msbuild",{"type":45,"value":171}," plugin",{"type":40,"tag":173,"props":174,"children":175},"blockquote",{},[176],{"type":40,"tag":48,"props":177,"children":178},{},[179,185,187,192,194,199,201,213,215,221,223,235],{"type":40,"tag":180,"props":181,"children":182},"strong",{},[183],{"type":45,"value":184},"Answer first, confirm second — required, in this order.",{"type":45,"value":186}," The Step 1 intent → template\nand keyword → parameter mappings are a complete answer on their own. ",{"type":40,"tag":180,"props":188,"children":189},{},[190],{"type":45,"value":191},"Your first action is\nto write",{"type":45,"value":193}," a concrete template + parameter recommendation (with a ready-to-run ",{"type":40,"tag":54,"props":195,"children":197},{"className":196},[],[198],{"type":45,"value":59},{"type":45,"value":200},"\ncommand) from the mapping, ",{"type":40,"tag":180,"props":202,"children":203},{},[204,206,211],{"type":45,"value":205},"before you run any ",{"type":40,"tag":54,"props":207,"children":209},{"className":208},[],[210],{"type":45,"value":59},{"type":45,"value":212}," command",{"type":45,"value":214},". Only then use the CLI\nto ",{"type":40,"tag":216,"props":217,"children":218},"em",{},[219],{"type":45,"value":220},"confirm",{"type":45,"value":222}," exact names\u002Fchoices and update the answer. ",{"type":40,"tag":180,"props":224,"children":225},{},[226,228,233],{"type":45,"value":227},"Never make a ",{"type":40,"tag":54,"props":229,"children":231},{"className":230},[],[232],{"type":45,"value":59},{"type":45,"value":234}," call your\nfinal action",{"type":45,"value":236}," — the engine's global mutex can make it fail with an empty \"persistence\"\u002F\"mutex\"\nresult under load, leaving the user nothing. Always close with the written recommendation, and\nnever end a turn on a \"let me confirm from the CLI…\" teaser.",{"type":40,"tag":70,"props":238,"children":240},{"id":239},"inputs",[241],{"type":45,"value":242},"Inputs",{"type":40,"tag":244,"props":245,"children":246},"table",{},[247,271],{"type":40,"tag":248,"props":249,"children":250},"thead",{},[251],{"type":40,"tag":252,"props":253,"children":254},"tr",{},[255,261,266],{"type":40,"tag":256,"props":257,"children":258},"th",{},[259],{"type":45,"value":260},"Input",{"type":40,"tag":256,"props":262,"children":263},{},[264],{"type":45,"value":265},"Required",{"type":40,"tag":256,"props":267,"children":268},{},[269],{"type":45,"value":270},"Description",{"type":40,"tag":272,"props":273,"children":274},"tbody",{},[275,294,312],{"type":40,"tag":252,"props":276,"children":277},{},[278,284,289],{"type":40,"tag":279,"props":280,"children":281},"td",{},[282],{"type":45,"value":283},"User intent or keywords",{"type":40,"tag":279,"props":285,"children":286},{},[287],{"type":45,"value":288},"Yes",{"type":40,"tag":279,"props":290,"children":291},{},[292],{"type":45,"value":293},"Natural-language description or keywords (e.g., \"web API\", \"console app\", \"MAUI\")",{"type":40,"tag":252,"props":295,"children":296},{},[297,302,307],{"type":40,"tag":279,"props":298,"children":299},{},[300],{"type":45,"value":301},"Language preference",{"type":40,"tag":279,"props":303,"children":304},{},[305],{"type":45,"value":306},"No",{"type":40,"tag":279,"props":308,"children":309},{},[310],{"type":45,"value":311},"C#, F#, or VB — defaults to C#",{"type":40,"tag":252,"props":313,"children":314},{},[315,320,324],{"type":40,"tag":279,"props":316,"children":317},{},[318],{"type":45,"value":319},"Framework preference",{"type":40,"tag":279,"props":321,"children":322},{},[323],{"type":45,"value":306},{"type":40,"tag":279,"props":325,"children":326},{},[327],{"type":45,"value":328},"Target framework (e.g., net10.0, net9.0)",{"type":40,"tag":70,"props":330,"children":332},{"id":331},"workflow",[333],{"type":45,"value":334},"Workflow",{"type":40,"tag":173,"props":336,"children":337},{},[338],{"type":40,"tag":48,"props":339,"children":340},{},[341,346,348,352,354,359],{"type":40,"tag":180,"props":342,"children":343},{},[344],{"type":45,"value":345},"Do Step 1 and write the recommendation to the user before running Step 2–4 commands.",{"type":45,"value":347},"\nSteps 2–4 only ",{"type":40,"tag":216,"props":349,"children":350},{},[351],{"type":45,"value":220},{"type":45,"value":353}," the answer; a ",{"type":40,"tag":54,"props":355,"children":357},{"className":356},[],[358],{"type":45,"value":59},{"type":45,"value":360}," failure must never leave the turn empty.",{"type":40,"tag":362,"props":363,"children":365},"h3",{"id":364},"step-1-resolve-intent-to-template-candidates",[366],{"type":45,"value":367},"Step 1: Resolve intent to template candidates",{"type":40,"tag":48,"props":369,"children":370},{},[371],{"type":45,"value":372},"Map the user's natural-language description to template short names and parameters using these mappings.",{"type":40,"tag":48,"props":374,"children":375},{},[376],{"type":40,"tag":180,"props":377,"children":378},{},[379],{"type":45,"value":380},"Intent → template short name(s):",{"type":40,"tag":244,"props":382,"children":383},{},[384,400],{"type":40,"tag":248,"props":385,"children":386},{},[387],{"type":40,"tag":252,"props":388,"children":389},{},[390,395],{"type":40,"tag":256,"props":391,"children":392},{},[393],{"type":45,"value":394},"Intent \u002F phrase",{"type":40,"tag":256,"props":396,"children":397},{},[398],{"type":45,"value":399},"Template short name(s)",{"type":40,"tag":272,"props":401,"children":402},{},[403,420,445,461,477,494,510,527,543,565,582,599,616,633,663,678,694,711,742,771,788,812,829,845,862,879],{"type":40,"tag":252,"props":404,"children":405},{},[406,411],{"type":40,"tag":279,"props":407,"children":408},{},[409],{"type":45,"value":410},"web api, web service, rest api, restful, api, minimal api",{"type":40,"tag":279,"props":412,"children":413},{},[414],{"type":40,"tag":54,"props":415,"children":417},{"className":416},[],[418],{"type":45,"value":419},"webapi",{"type":40,"tag":252,"props":421,"children":422},{},[423,428],{"type":40,"tag":279,"props":424,"children":425},{},[426],{"type":45,"value":427},"web app, web application",{"type":40,"tag":279,"props":429,"children":430},{},[431,437,439],{"type":40,"tag":54,"props":432,"children":434},{"className":433},[],[435],{"type":45,"value":436},"webapp",{"type":45,"value":438},", ",{"type":40,"tag":54,"props":440,"children":442},{"className":441},[],[443],{"type":45,"value":444},"blazorserver",{"type":40,"tag":252,"props":446,"children":447},{},[448,453],{"type":40,"tag":279,"props":449,"children":450},{},[451],{"type":45,"value":452},"mvc",{"type":40,"tag":279,"props":454,"children":455},{},[456],{"type":40,"tag":54,"props":457,"children":459},{"className":458},[],[460],{"type":45,"value":452},{"type":40,"tag":252,"props":462,"children":463},{},[464,469],{"type":40,"tag":279,"props":465,"children":466},{},[467],{"type":45,"value":468},"razor, razor pages",{"type":40,"tag":279,"props":470,"children":471},{},[472],{"type":40,"tag":54,"props":473,"children":475},{"className":474},[],[476],{"type":45,"value":436},{"type":40,"tag":252,"props":478,"children":479},{},[480,485],{"type":40,"tag":279,"props":481,"children":482},{},[483],{"type":45,"value":484},"blazor, blazor web app",{"type":40,"tag":279,"props":486,"children":487},{},[488],{"type":40,"tag":54,"props":489,"children":491},{"className":490},[],[492],{"type":45,"value":493},"blazor",{"type":40,"tag":252,"props":495,"children":496},{},[497,502],{"type":40,"tag":279,"props":498,"children":499},{},[500],{"type":45,"value":501},"blazor server",{"type":40,"tag":279,"props":503,"children":504},{},[505],{"type":40,"tag":54,"props":506,"children":508},{"className":507},[],[509],{"type":45,"value":444},{"type":40,"tag":252,"props":511,"children":512},{},[513,518],{"type":40,"tag":279,"props":514,"children":515},{},[516],{"type":45,"value":517},"blazor wasm, blazor webassembly",{"type":40,"tag":279,"props":519,"children":520},{},[521],{"type":40,"tag":54,"props":522,"children":524},{"className":523},[],[525],{"type":45,"value":526},"blazorwasm",{"type":40,"tag":252,"props":528,"children":529},{},[530,535],{"type":40,"tag":279,"props":531,"children":532},{},[533],{"type":45,"value":534},"grpc",{"type":40,"tag":279,"props":536,"children":537},{},[538],{"type":40,"tag":54,"props":539,"children":541},{"className":540},[],[542],{"type":45,"value":534},{"type":40,"tag":252,"props":544,"children":545},{},[546,551],{"type":40,"tag":279,"props":547,"children":548},{},[549],{"type":45,"value":550},"signalr",{"type":40,"tag":279,"props":552,"children":553},{},[554,559,560],{"type":40,"tag":54,"props":555,"children":557},{"className":556},[],[558],{"type":45,"value":419},{"type":45,"value":438},{"type":40,"tag":54,"props":561,"children":563},{"className":562},[],[564],{"type":45,"value":436},{"type":40,"tag":252,"props":566,"children":567},{},[568,573],{"type":40,"tag":279,"props":569,"children":570},{},[571],{"type":45,"value":572},"console, console app, command line, cli",{"type":40,"tag":279,"props":574,"children":575},{},[576],{"type":40,"tag":54,"props":577,"children":579},{"className":578},[],[580],{"type":45,"value":581},"console",{"type":40,"tag":252,"props":583,"children":584},{},[585,590],{"type":40,"tag":279,"props":586,"children":587},{},[588],{"type":45,"value":589},"worker, background service, daemon, windows service",{"type":40,"tag":279,"props":591,"children":592},{},[593],{"type":40,"tag":54,"props":594,"children":596},{"className":595},[],[597],{"type":45,"value":598},"worker",{"type":40,"tag":252,"props":600,"children":601},{},[602,607],{"type":40,"tag":279,"props":603,"children":604},{},[605],{"type":45,"value":606},"class library, library, lib, nuget package",{"type":40,"tag":279,"props":608,"children":609},{},[610],{"type":40,"tag":54,"props":611,"children":613},{"className":612},[],[614],{"type":45,"value":615},"classlib",{"type":40,"tag":252,"props":617,"children":618},{},[619,624],{"type":40,"tag":279,"props":620,"children":621},{},[622],{"type":45,"value":623},"maui, mobile, cross-platform app, ios, android",{"type":40,"tag":279,"props":625,"children":626},{},[627],{"type":40,"tag":54,"props":628,"children":630},{"className":629},[],[631],{"type":45,"value":632},"maui",{"type":40,"tag":252,"props":634,"children":635},{},[636,641],{"type":40,"tag":279,"props":637,"children":638},{},[639],{"type":45,"value":640},"desktop",{"type":40,"tag":279,"props":642,"children":643},{},[644,649,650,656,657],{"type":40,"tag":54,"props":645,"children":647},{"className":646},[],[648],{"type":45,"value":632},{"type":45,"value":438},{"type":40,"tag":54,"props":651,"children":653},{"className":652},[],[654],{"type":45,"value":655},"wpf",{"type":45,"value":438},{"type":40,"tag":54,"props":658,"children":660},{"className":659},[],[661],{"type":45,"value":662},"winforms",{"type":40,"tag":252,"props":664,"children":665},{},[666,670],{"type":40,"tag":279,"props":667,"children":668},{},[669],{"type":45,"value":655},{"type":40,"tag":279,"props":671,"children":672},{},[673],{"type":40,"tag":54,"props":674,"children":676},{"className":675},[],[677],{"type":45,"value":655},{"type":40,"tag":252,"props":679,"children":680},{},[681,686],{"type":40,"tag":279,"props":682,"children":683},{},[684],{"type":45,"value":685},"winforms, windows forms",{"type":40,"tag":279,"props":687,"children":688},{},[689],{"type":40,"tag":54,"props":690,"children":692},{"className":691},[],[693],{"type":45,"value":662},{"type":40,"tag":252,"props":695,"children":696},{},[697,702],{"type":40,"tag":279,"props":698,"children":699},{},[700],{"type":45,"value":701},"winui, winui3",{"type":40,"tag":279,"props":703,"children":704},{},[705],{"type":40,"tag":54,"props":706,"children":708},{"className":707},[],[709],{"type":45,"value":710},"winui3",{"type":40,"tag":252,"props":712,"children":713},{},[714,719],{"type":40,"tag":279,"props":715,"children":716},{},[717],{"type":45,"value":718},"test, unit test",{"type":40,"tag":279,"props":720,"children":721},{},[722,728,729,735,736],{"type":40,"tag":54,"props":723,"children":725},{"className":724},[],[726],{"type":45,"value":727},"xunit",{"type":45,"value":438},{"type":40,"tag":54,"props":730,"children":732},{"className":731},[],[733],{"type":45,"value":734},"nunit",{"type":45,"value":438},{"type":40,"tag":54,"props":737,"children":739},{"className":738},[],[740],{"type":45,"value":741},"mstest",{"type":40,"tag":252,"props":743,"children":744},{},[745,750],{"type":40,"tag":279,"props":746,"children":747},{},[748],{"type":45,"value":749},"xunit \u002F nunit \u002F mstest",{"type":40,"tag":279,"props":751,"children":752},{},[753,758,760,765,766],{"type":40,"tag":54,"props":754,"children":756},{"className":755},[],[757],{"type":45,"value":727},{"type":45,"value":759}," \u002F ",{"type":40,"tag":54,"props":761,"children":763},{"className":762},[],[764],{"type":45,"value":734},{"type":45,"value":759},{"type":40,"tag":54,"props":767,"children":769},{"className":768},[],[770],{"type":45,"value":741},{"type":40,"tag":252,"props":772,"children":773},{},[774,779],{"type":40,"tag":279,"props":775,"children":776},{},[777],{"type":45,"value":778},"solution",{"type":40,"tag":279,"props":780,"children":781},{},[782],{"type":40,"tag":54,"props":783,"children":785},{"className":784},[],[786],{"type":45,"value":787},"sln",{"type":40,"tag":252,"props":789,"children":790},{},[791,796],{"type":40,"tag":279,"props":792,"children":793},{},[794],{"type":45,"value":795},"aspire, .net aspire",{"type":40,"tag":279,"props":797,"children":798},{},[799,805,806],{"type":40,"tag":54,"props":800,"children":802},{"className":801},[],[803],{"type":45,"value":804},"aspire-starter",{"type":45,"value":438},{"type":40,"tag":54,"props":807,"children":809},{"className":808},[],[810],{"type":45,"value":811},"aspire",{"type":40,"tag":252,"props":813,"children":814},{},[815,820],{"type":40,"tag":279,"props":816,"children":817},{},[818],{"type":45,"value":819},"azure functions, function app, serverless",{"type":40,"tag":279,"props":821,"children":822},{},[823],{"type":40,"tag":54,"props":824,"children":826},{"className":825},[],[827],{"type":45,"value":828},"func",{"type":40,"tag":252,"props":830,"children":831},{},[832,837],{"type":40,"tag":279,"props":833,"children":834},{},[835],{"type":45,"value":836},"orleans",{"type":40,"tag":279,"props":838,"children":839},{},[840],{"type":40,"tag":54,"props":841,"children":843},{"className":842},[],[844],{"type":45,"value":836},{"type":40,"tag":252,"props":846,"children":847},{},[848,853],{"type":40,"tag":279,"props":849,"children":850},{},[851],{"type":45,"value":852},"razor component, web component",{"type":40,"tag":279,"props":854,"children":855},{},[856],{"type":40,"tag":54,"props":857,"children":859},{"className":858},[],[860],{"type":45,"value":861},"razorcomponent",{"type":40,"tag":252,"props":863,"children":864},{},[865,870],{"type":40,"tag":279,"props":866,"children":867},{},[868],{"type":45,"value":869},"razor class library",{"type":40,"tag":279,"props":871,"children":872},{},[873],{"type":40,"tag":54,"props":874,"children":876},{"className":875},[],[877],{"type":45,"value":878},"razorclasslib",{"type":40,"tag":252,"props":880,"children":881},{},[882,887],{"type":40,"tag":279,"props":883,"children":884},{},[885],{"type":45,"value":886},"gitignore \u002F editorconfig \u002F nuget config \u002F global json",{"type":40,"tag":279,"props":888,"children":889},{},[890,896,897,903,904,910,911],{"type":40,"tag":54,"props":891,"children":893},{"className":892},[],[894],{"type":45,"value":895},"gitignore",{"type":45,"value":759},{"type":40,"tag":54,"props":898,"children":900},{"className":899},[],[901],{"type":45,"value":902},"editorconfig",{"type":45,"value":759},{"type":40,"tag":54,"props":905,"children":907},{"className":906},[],[908],{"type":45,"value":909},"nugetconfig",{"type":45,"value":759},{"type":40,"tag":54,"props":912,"children":914},{"className":913},[],[915],{"type":45,"value":916},"globaljson",{"type":40,"tag":48,"props":918,"children":919},{},[920],{"type":40,"tag":180,"props":921,"children":922},{},[923],{"type":45,"value":924},"Keyword → parameter:",{"type":40,"tag":244,"props":926,"children":927},{},[928,949],{"type":40,"tag":248,"props":929,"children":930},{},[931],{"type":40,"tag":252,"props":932,"children":933},{},[934,939,944],{"type":40,"tag":256,"props":935,"children":936},{},[937],{"type":45,"value":938},"Keyword \u002F phrase",{"type":40,"tag":256,"props":940,"children":941},{},[942],{"type":45,"value":943},"Parameter",{"type":40,"tag":256,"props":945,"children":946},{},[947],{"type":45,"value":948},"Value",{"type":40,"tag":272,"props":950,"children":951},{},[952,978,1003,1028,1053,1075,1093,1114,1140,1166,1191],{"type":40,"tag":252,"props":953,"children":954},{},[955,960,969],{"type":40,"tag":279,"props":956,"children":957},{},[958],{"type":45,"value":959},"authentication, auth, individual auth, individual accounts",{"type":40,"tag":279,"props":961,"children":962},{},[963],{"type":40,"tag":54,"props":964,"children":966},{"className":965},[],[967],{"type":45,"value":968},"--auth",{"type":40,"tag":279,"props":970,"children":971},{},[972],{"type":40,"tag":54,"props":973,"children":975},{"className":974},[],[976],{"type":45,"value":977},"Individual",{"type":40,"tag":252,"props":979,"children":980},{},[981,986,994],{"type":40,"tag":279,"props":982,"children":983},{},[984],{"type":45,"value":985},"windows auth",{"type":40,"tag":279,"props":987,"children":988},{},[989],{"type":40,"tag":54,"props":990,"children":992},{"className":991},[],[993],{"type":45,"value":968},{"type":40,"tag":279,"props":995,"children":996},{},[997],{"type":40,"tag":54,"props":998,"children":1000},{"className":999},[],[1001],{"type":45,"value":1002},"Windows",{"type":40,"tag":252,"props":1004,"children":1005},{},[1006,1011,1019],{"type":40,"tag":279,"props":1007,"children":1008},{},[1009],{"type":45,"value":1010},"azure ad, entra id",{"type":40,"tag":279,"props":1012,"children":1013},{},[1014],{"type":40,"tag":54,"props":1015,"children":1017},{"className":1016},[],[1018],{"type":45,"value":968},{"type":40,"tag":279,"props":1020,"children":1021},{},[1022],{"type":40,"tag":54,"props":1023,"children":1025},{"className":1024},[],[1026],{"type":45,"value":1027},"SingleOrg",{"type":40,"tag":252,"props":1029,"children":1030},{},[1031,1036,1044],{"type":40,"tag":279,"props":1032,"children":1033},{},[1034],{"type":45,"value":1035},"no auth, no authentication",{"type":40,"tag":279,"props":1037,"children":1038},{},[1039],{"type":40,"tag":54,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":45,"value":968},{"type":40,"tag":279,"props":1045,"children":1046},{},[1047],{"type":40,"tag":54,"props":1048,"children":1050},{"className":1049},[],[1051],{"type":45,"value":1052},"None",{"type":40,"tag":252,"props":1054,"children":1055},{},[1056,1061,1070],{"type":40,"tag":279,"props":1057,"children":1058},{},[1059],{"type":45,"value":1060},"controllers, with controllers",{"type":40,"tag":279,"props":1062,"children":1063},{},[1064],{"type":40,"tag":54,"props":1065,"children":1067},{"className":1066},[],[1068],{"type":45,"value":1069},"--use-controllers",{"type":40,"tag":279,"props":1071,"children":1072},{},[1073],{"type":45,"value":1074},"(flag)",{"type":40,"tag":252,"props":1076,"children":1077},{},[1078,1083,1088],{"type":40,"tag":279,"props":1079,"children":1080},{},[1081],{"type":45,"value":1082},"minimal api",{"type":40,"tag":279,"props":1084,"children":1085},{},[1086],{"type":45,"value":1087},"(default)",{"type":40,"tag":279,"props":1089,"children":1090},{},[1091],{"type":45,"value":1092},"—",{"type":40,"tag":252,"props":1094,"children":1095},{},[1096,1101,1110],{"type":40,"tag":279,"props":1097,"children":1098},{},[1099],{"type":45,"value":1100},"aot, native aot",{"type":40,"tag":279,"props":1102,"children":1103},{},[1104],{"type":40,"tag":54,"props":1105,"children":1107},{"className":1106},[],[1108],{"type":45,"value":1109},"--aot",{"type":40,"tag":279,"props":1111,"children":1112},{},[1113],{"type":45,"value":1074},{"type":40,"tag":252,"props":1115,"children":1116},{},[1117,1122,1127],{"type":40,"tag":279,"props":1118,"children":1119},{},[1120],{"type":45,"value":1121},"docker, container",{"type":40,"tag":279,"props":1123,"children":1124},{},[1125],{"type":45,"value":1126},"the template's Docker\u002Fcontainer option",{"type":40,"tag":279,"props":1128,"children":1129},{},[1130,1132,1138],{"type":45,"value":1131},"varies by template — confirm with ",{"type":40,"tag":54,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":45,"value":1137},"--help",{"type":45,"value":1139}," (not all templates expose one)",{"type":40,"tag":252,"props":1141,"children":1142},{},[1143,1148,1157],{"type":40,"tag":279,"props":1144,"children":1145},{},[1146],{"type":45,"value":1147},"net8 \u002F .net 8 \u002F dotnet 8",{"type":40,"tag":279,"props":1149,"children":1150},{},[1151],{"type":40,"tag":54,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":45,"value":1156},"--framework",{"type":40,"tag":279,"props":1158,"children":1159},{},[1160],{"type":40,"tag":54,"props":1161,"children":1163},{"className":1162},[],[1164],{"type":45,"value":1165},"net8.0",{"type":40,"tag":252,"props":1167,"children":1168},{},[1169,1174,1182],{"type":40,"tag":279,"props":1170,"children":1171},{},[1172],{"type":45,"value":1173},"net9 \u002F .net 9 \u002F dotnet 9",{"type":40,"tag":279,"props":1175,"children":1176},{},[1177],{"type":40,"tag":54,"props":1178,"children":1180},{"className":1179},[],[1181],{"type":45,"value":1156},{"type":40,"tag":279,"props":1183,"children":1184},{},[1185],{"type":40,"tag":54,"props":1186,"children":1188},{"className":1187},[],[1189],{"type":45,"value":1190},"net9.0",{"type":40,"tag":252,"props":1192,"children":1193},{},[1194,1199,1207],{"type":40,"tag":279,"props":1195,"children":1196},{},[1197],{"type":45,"value":1198},"net10 \u002F .net 10 \u002F dotnet 10",{"type":40,"tag":279,"props":1200,"children":1201},{},[1202],{"type":40,"tag":54,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":45,"value":1156},{"type":40,"tag":279,"props":1208,"children":1209},{},[1210],{"type":40,"tag":54,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":45,"value":1215},"net10.0",{"type":40,"tag":48,"props":1217,"children":1218},{},[1219,1221,1227,1229,1234,1236,1242],{"type":45,"value":1220},"These are starting guesses. Always confirm the real parameter names\u002Fchoices with ",{"type":40,"tag":54,"props":1222,"children":1224},{"className":1223},[],[1225],{"type":45,"value":1226},"dotnet new \u003Ctemplate> --help",{"type":45,"value":1228},", because parameter names vary by template (e.g., ",{"type":40,"tag":54,"props":1230,"children":1232},{"className":1231},[],[1233],{"type":45,"value":968},{"type":45,"value":1235}," vs ",{"type":40,"tag":54,"props":1237,"children":1239},{"className":1238},[],[1240],{"type":45,"value":1241},"--Authentication",{"type":45,"value":1243},").",{"type":40,"tag":48,"props":1245,"children":1246},{},[1247,1249,1254,1255,1260,1261,1266,1268,1273,1274,1279,1281,1286,1288,1294,1296,1302,1304,1310,1312,1317,1318,1324],{"type":45,"value":1248},"Some mapped short names are not present in a default SDK install — templates like ",{"type":40,"tag":54,"props":1250,"children":1252},{"className":1251},[],[1253],{"type":45,"value":632},{"type":45,"value":438},{"type":40,"tag":54,"props":1256,"children":1258},{"className":1257},[],[1259],{"type":45,"value":710},{"type":45,"value":438},{"type":40,"tag":54,"props":1262,"children":1264},{"className":1263},[],[1265],{"type":45,"value":804},{"type":45,"value":1267},"\u002F",{"type":40,"tag":54,"props":1269,"children":1271},{"className":1270},[],[1272],{"type":45,"value":811},{"type":45,"value":438},{"type":40,"tag":54,"props":1275,"children":1277},{"className":1276},[],[1278],{"type":45,"value":828},{"type":45,"value":1280},", and ",{"type":40,"tag":54,"props":1282,"children":1284},{"className":1283},[],[1285],{"type":45,"value":836},{"type":45,"value":1287}," typically require a workload (",{"type":40,"tag":54,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":45,"value":1293},"dotnet workload install \u003Cid>",{"type":45,"value":1295},") and\u002For an additional template package (",{"type":40,"tag":54,"props":1297,"children":1299},{"className":1298},[],[1300],{"type":45,"value":1301},"dotnet new install \u003Cpackage>",{"type":45,"value":1303},"). If a mapped short name does not appear in ",{"type":40,"tag":54,"props":1305,"children":1307},{"className":1306},[],[1308],{"type":45,"value":1309},"dotnet new list",{"type":45,"value":1311},", fall back to ",{"type":40,"tag":54,"props":1313,"children":1315},{"className":1314},[],[1316],{"type":45,"value":1309},{"type":45,"value":1267},{"type":40,"tag":54,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":45,"value":1323},"dotnet new search",{"type":45,"value":1325}," to find the right template and the package\u002Fworkload that provides it before recommending it.",{"type":40,"tag":173,"props":1327,"children":1328},{},[1329],{"type":40,"tag":48,"props":1330,"children":1331},{},[1332,1337,1339,1344,1346,1351,1353,1358,1359,1365,1367,1372],{"type":40,"tag":180,"props":1333,"children":1334},{},[1335],{"type":45,"value":1336},"Resilience — always answer, even if the CLI fails.",{"type":45,"value":1338}," The intent mapping above is a usable answer on its own. Run ",{"type":40,"tag":54,"props":1340,"children":1342},{"className":1341},[],[1343],{"type":45,"value":59},{"type":45,"value":1345}," commands ",{"type":40,"tag":180,"props":1347,"children":1348},{},[1349],{"type":45,"value":1350},"sequentially, one at a time",{"type":45,"value":1352}," — the template engine uses a global mutex, so firing several ",{"type":40,"tag":54,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":45,"value":1226},{"type":45,"value":1267},{"type":40,"tag":54,"props":1360,"children":1362},{"className":1361},[],[1363],{"type":45,"value":1364},"--dry-run",{"type":45,"value":1366}," calls concurrently can produce a transient \"mutex\"\u002F\"persistence\" error and empty output. If a command fails, retry it once; if it still fails, ",{"type":40,"tag":180,"props":1368,"children":1369},{},[1370],{"type":45,"value":1371},"fall back to this intent\u002Fparameter mapping and give the user a concrete recommendation",{"type":45,"value":1373},", noting that the exact parameter names\u002Fchoices could not be CLI-confirmed. Never end the turn with no answer because a CLI call errored.",{"type":40,"tag":362,"props":1375,"children":1377},{"id":1376},"step-2-search-for-templates",[1378],{"type":45,"value":1379},"Step 2: Search for templates",{"type":40,"tag":48,"props":1381,"children":1382},{},[1383,1385,1390],{"type":45,"value":1384},"Use ",{"type":40,"tag":54,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":45,"value":1323},{"type":45,"value":1391}," to find templates by keyword across both locally installed templates and NuGet.org:",{"type":40,"tag":1393,"props":1394,"children":1399},"pre",{"className":1395,"code":1396,"language":1397,"meta":1398,"style":1398},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dotnet new search blazor\n","bash","",[1400],{"type":40,"tag":54,"props":1401,"children":1402},{"__ignoreMap":1398},[1403],{"type":40,"tag":1404,"props":1405,"children":1408},"span",{"class":1406,"line":1407},"line",1,[1409,1414,1420,1425],{"type":40,"tag":1404,"props":1410,"children":1412},{"style":1411},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1413],{"type":45,"value":8},{"type":40,"tag":1404,"props":1415,"children":1417},{"style":1416},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1418],{"type":45,"value":1419}," new",{"type":40,"tag":1404,"props":1421,"children":1422},{"style":1416},[1423],{"type":45,"value":1424}," search",{"type":40,"tag":1404,"props":1426,"children":1427},{"style":1416},[1428],{"type":45,"value":1429}," blazor\n",{"type":40,"tag":48,"props":1431,"children":1432},{},[1433,1434,1439],{"type":45,"value":1384},{"type":40,"tag":54,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":45,"value":1309},{"type":45,"value":1440}," to show only installed templates, with optional filters:",{"type":40,"tag":1393,"props":1442,"children":1444},{"className":1395,"code":1443,"language":1397,"meta":1398,"style":1398},"dotnet new list --language C# --type project\ndotnet new list web\n",[1445],{"type":40,"tag":54,"props":1446,"children":1447},{"__ignoreMap":1398},[1448,1484],{"type":40,"tag":1404,"props":1449,"children":1450},{"class":1406,"line":1407},[1451,1455,1459,1464,1469,1474,1479],{"type":40,"tag":1404,"props":1452,"children":1453},{"style":1411},[1454],{"type":45,"value":8},{"type":40,"tag":1404,"props":1456,"children":1457},{"style":1416},[1458],{"type":45,"value":1419},{"type":40,"tag":1404,"props":1460,"children":1461},{"style":1416},[1462],{"type":45,"value":1463}," list",{"type":40,"tag":1404,"props":1465,"children":1466},{"style":1416},[1467],{"type":45,"value":1468}," --language",{"type":40,"tag":1404,"props":1470,"children":1471},{"style":1416},[1472],{"type":45,"value":1473}," C#",{"type":40,"tag":1404,"props":1475,"children":1476},{"style":1416},[1477],{"type":45,"value":1478}," --type",{"type":40,"tag":1404,"props":1480,"children":1481},{"style":1416},[1482],{"type":45,"value":1483}," project\n",{"type":40,"tag":1404,"props":1485,"children":1487},{"class":1406,"line":1486},2,[1488,1492,1496,1500],{"type":40,"tag":1404,"props":1489,"children":1490},{"style":1411},[1491],{"type":45,"value":8},{"type":40,"tag":1404,"props":1493,"children":1494},{"style":1416},[1495],{"type":45,"value":1419},{"type":40,"tag":1404,"props":1497,"children":1498},{"style":1416},[1499],{"type":45,"value":1463},{"type":40,"tag":1404,"props":1501,"children":1502},{"style":1416},[1503],{"type":45,"value":1504}," web\n",{"type":40,"tag":362,"props":1506,"children":1508},{"id":1507},"step-3-inspect-template-details",[1509],{"type":45,"value":1510},"Step 3: Inspect template details",{"type":40,"tag":48,"props":1512,"children":1513},{},[1514,1515,1520],{"type":45,"value":1384},{"type":40,"tag":54,"props":1516,"children":1518},{"className":1517},[],[1519],{"type":45,"value":1226},{"type":45,"value":1521}," to get full parameter details for a specific template — parameter names, types, defaults, and allowed values:",{"type":40,"tag":1393,"props":1523,"children":1525},{"className":1395,"code":1524,"language":1397,"meta":1398,"style":1398},"dotnet new webapi --help\n",[1526],{"type":40,"tag":54,"props":1527,"children":1528},{"__ignoreMap":1398},[1529],{"type":40,"tag":1404,"props":1530,"children":1531},{"class":1406,"line":1407},[1532,1536,1540,1545],{"type":40,"tag":1404,"props":1533,"children":1534},{"style":1411},[1535],{"type":45,"value":8},{"type":40,"tag":1404,"props":1537,"children":1538},{"style":1416},[1539],{"type":45,"value":1419},{"type":40,"tag":1404,"props":1541,"children":1542},{"style":1416},[1543],{"type":45,"value":1544}," webapi",{"type":40,"tag":1404,"props":1546,"children":1547},{"style":1416},[1548],{"type":45,"value":1549}," --help\n",{"type":40,"tag":362,"props":1551,"children":1553},{"id":1552},"step-4-preview-output",[1554],{"type":45,"value":1555},"Step 4: Preview output",{"type":40,"tag":48,"props":1557,"children":1558},{},[1559,1560,1566],{"type":45,"value":1384},{"type":40,"tag":54,"props":1561,"children":1563},{"className":1562},[],[1564],{"type":45,"value":1565},"dotnet new \u003Ctemplate> --dry-run",{"type":45,"value":1567}," to show what files and directories a template would create without writing anything to disk:",{"type":40,"tag":1393,"props":1569,"children":1571},{"className":1395,"code":1570,"language":1397,"meta":1398,"style":1398},"dotnet new webapi --name MyApi --auth Individual --dry-run\n",[1572],{"type":40,"tag":54,"props":1573,"children":1574},{"__ignoreMap":1398},[1575],{"type":40,"tag":1404,"props":1576,"children":1577},{"class":1406,"line":1407},[1578,1582,1586,1590,1595,1600,1605,1610],{"type":40,"tag":1404,"props":1579,"children":1580},{"style":1411},[1581],{"type":45,"value":8},{"type":40,"tag":1404,"props":1583,"children":1584},{"style":1416},[1585],{"type":45,"value":1419},{"type":40,"tag":1404,"props":1587,"children":1588},{"style":1416},[1589],{"type":45,"value":1544},{"type":40,"tag":1404,"props":1591,"children":1592},{"style":1416},[1593],{"type":45,"value":1594}," --name",{"type":40,"tag":1404,"props":1596,"children":1597},{"style":1416},[1598],{"type":45,"value":1599}," MyApi",{"type":40,"tag":1404,"props":1601,"children":1602},{"style":1416},[1603],{"type":45,"value":1604}," --auth",{"type":40,"tag":1404,"props":1606,"children":1607},{"style":1416},[1608],{"type":45,"value":1609}," Individual",{"type":40,"tag":1404,"props":1611,"children":1612},{"style":1416},[1613],{"type":45,"value":1614}," --dry-run\n",{"type":40,"tag":48,"props":1616,"children":1617},{},[1618,1620,1625,1627,1632,1634,1639,1641,1647,1648,1654],{"type":45,"value":1619},"If the dry-run fails (transient \"mutex\"\u002F\"persistence\" error), retry once; if it still fails, give a ",{"type":40,"tag":180,"props":1621,"children":1622},{},[1623],{"type":45,"value":1624},"representative",{"type":45,"value":1626}," structure (template ",{"type":40,"tag":216,"props":1628,"children":1629},{},[1630],{"type":45,"value":1631},"family",{"type":45,"value":1633}," and typical file kinds) and note it isn't CLI-confirmed. Do not invent specific values, choices, or file paths. When the dry-run ",{"type":40,"tag":180,"props":1635,"children":1636},{},[1637],{"type":45,"value":1638},"succeeds",{"type":45,"value":1640},", present the actual file list from its output faithfully — don't summarize, regroup, or invent files — and add a one-line purpose for the key entry points (e.g. ",{"type":40,"tag":54,"props":1642,"children":1644},{"className":1643},[],[1645],{"type":45,"value":1646},"Program.cs",{"type":45,"value":438},{"type":40,"tag":54,"props":1649,"children":1651},{"className":1650},[],[1652],{"type":45,"value":1653},"App.razor",{"type":45,"value":1243},{"type":40,"tag":362,"props":1656,"children":1658},{"id":1657},"step-5-present-findings",[1659],{"type":45,"value":1660},"Step 5: Present findings",{"type":40,"tag":48,"props":1662,"children":1663},{},[1664,1669],{"type":40,"tag":180,"props":1665,"children":1666},{},[1667],{"type":45,"value":1668},"Lead with the answer as a ready-to-run command",{"type":45,"value":1670},", then justify it. Required shape:",{"type":40,"tag":173,"props":1672,"children":1673},{},[1674,1689],{"type":40,"tag":48,"props":1675,"children":1676},{},[1677,1687],{"type":40,"tag":180,"props":1678,"children":1679},{},[1680,1681],{"type":45,"value":1384},{"type":40,"tag":54,"props":1682,"children":1684},{"className":1683},[],[1685],{"type":45,"value":1686},"\u003Ctemplate>",{"type":45,"value":1688}," — one-line why.",{"type":40,"tag":1393,"props":1690,"children":1692},{"className":1395,"code":1691,"language":1397,"meta":1398,"style":1398},"dotnet new \u003Ctemplate> --name \u003CName> [--key params]\n",[1693],{"type":40,"tag":54,"props":1694,"children":1695},{"__ignoreMap":1398},[1696],{"type":40,"tag":1404,"props":1697,"children":1698},{"class":1406,"line":1407},[1699,1703,1707,1713,1718,1724,1729,1733,1737,1742,1746,1750,1755],{"type":40,"tag":1404,"props":1700,"children":1701},{"style":1411},[1702],{"type":45,"value":8},{"type":40,"tag":1404,"props":1704,"children":1705},{"style":1416},[1706],{"type":45,"value":1419},{"type":40,"tag":1404,"props":1708,"children":1710},{"style":1709},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1711],{"type":45,"value":1712}," \u003C",{"type":40,"tag":1404,"props":1714,"children":1715},{"style":1416},[1716],{"type":45,"value":1717},"templat",{"type":40,"tag":1404,"props":1719,"children":1721},{"style":1720},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1722],{"type":45,"value":1723},"e",{"type":40,"tag":1404,"props":1725,"children":1726},{"style":1709},[1727],{"type":45,"value":1728},">",{"type":40,"tag":1404,"props":1730,"children":1731},{"style":1416},[1732],{"type":45,"value":1594},{"type":40,"tag":1404,"props":1734,"children":1735},{"style":1709},[1736],{"type":45,"value":1712},{"type":40,"tag":1404,"props":1738,"children":1739},{"style":1416},[1740],{"type":45,"value":1741},"Nam",{"type":40,"tag":1404,"props":1743,"children":1744},{"style":1720},[1745],{"type":45,"value":1723},{"type":40,"tag":1404,"props":1747,"children":1748},{"style":1709},[1749],{"type":45,"value":1728},{"type":40,"tag":1404,"props":1751,"children":1752},{"style":1720},[1753],{"type":45,"value":1754}," [--key ",{"type":40,"tag":1404,"props":1756,"children":1757},{"style":1416},[1758],{"type":45,"value":1759},"params]\n",{"type":40,"tag":48,"props":1761,"children":1762},{},[1763],{"type":45,"value":1764},"Then add supporting detail:",{"type":40,"tag":77,"props":1766,"children":1767},{},[1768,1780,1785],{"type":40,"tag":81,"props":1769,"children":1770},{},[1771,1773,1778],{"type":45,"value":1772},"Key parameters and recommended values (with the choices, e.g. ",{"type":40,"tag":54,"props":1774,"children":1776},{"className":1775},[],[1777],{"type":45,"value":968},{"type":45,"value":1779},": None | Individual | SingleOrg | Windows)",{"type":40,"tag":81,"props":1781,"children":1782},{},[1783],{"type":45,"value":1784},"What to expect (files created, project structure)",{"type":40,"tag":81,"props":1786,"children":1787},{},[1788,1790,1795,1797,1803,1805,1810],{"type":45,"value":1789},"Any prerequisites — name the ",{"type":40,"tag":180,"props":1791,"children":1792},{},[1793],{"type":45,"value":1794},"exact package to install",{"type":45,"value":1796}," (",{"type":40,"tag":54,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":45,"value":1802},"dotnet new install \u003Cid>",{"type":45,"value":1804},"), or say ",{"type":40,"tag":180,"props":1806,"children":1807},{},[1808],{"type":45,"value":1809},"\"no install needed — ships with the SDK\"",{"type":45,"value":1811}," for a built-in template",{"type":40,"tag":48,"props":1813,"children":1814},{},[1815],{"type":45,"value":1816},"An answer without a concrete, copy-pasteable command is what makes this skill tie with a plain reply — always give the command to run next.",{"type":40,"tag":70,"props":1818,"children":1820},{"id":1819},"validation",[1821],{"type":45,"value":1822},"Validation",{"type":40,"tag":77,"props":1824,"children":1827},{"className":1825},[1826],"contains-task-list",[1828,1841,1850],{"type":40,"tag":81,"props":1829,"children":1832},{"className":1830},[1831],"task-list-item",[1833,1839],{"type":40,"tag":1834,"props":1835,"children":1838},"input",{"disabled":1836,"type":1837},true,"checkbox",[],{"type":45,"value":1840}," At least one template match was found for the user's intent",{"type":40,"tag":81,"props":1842,"children":1844},{"className":1843},[1831],[1845,1848],{"type":40,"tag":1834,"props":1846,"children":1847},{"disabled":1836,"type":1837},[],{"type":45,"value":1849}," Template parameters are explained with types and defaults",{"type":40,"tag":81,"props":1851,"children":1853},{"className":1852},[1831],[1854,1857],{"type":40,"tag":1834,"props":1855,"children":1856},{"disabled":1836,"type":1837},[],{"type":45,"value":1858}," User understands what the template produces before proceeding to creation",{"type":40,"tag":70,"props":1860,"children":1862},{"id":1861},"common-pitfalls",[1863],{"type":45,"value":1864},"Common Pitfalls",{"type":40,"tag":244,"props":1866,"children":1867},{},[1868,1884],{"type":40,"tag":248,"props":1869,"children":1870},{},[1871],{"type":40,"tag":252,"props":1872,"children":1873},{},[1874,1879],{"type":40,"tag":256,"props":1875,"children":1876},{},[1877],{"type":45,"value":1878},"Pitfall",{"type":40,"tag":256,"props":1880,"children":1881},{},[1882],{"type":45,"value":1883},"Solution",{"type":40,"tag":272,"props":1885,"children":1886},{},[1887,1915,1935,1955],{"type":40,"tag":252,"props":1888,"children":1889},{},[1890,1895],{"type":40,"tag":279,"props":1891,"children":1892},{},[1893],{"type":45,"value":1894},"Not searching NuGet for templates",{"type":40,"tag":279,"props":1896,"children":1897},{},[1898,1900,1905,1907,1913],{"type":45,"value":1899},"If ",{"type":40,"tag":54,"props":1901,"children":1903},{"className":1902},[],[1904],{"type":45,"value":1309},{"type":45,"value":1906}," shows no matches, use ",{"type":40,"tag":54,"props":1908,"children":1910},{"className":1909},[],[1911],{"type":45,"value":1912},"dotnet new search \u003Ckeyword>",{"type":45,"value":1914}," to find installable templates on NuGet.org.",{"type":40,"tag":252,"props":1916,"children":1917},{},[1918,1923],{"type":40,"tag":279,"props":1919,"children":1920},{},[1921],{"type":45,"value":1922},"Not checking template constraints",{"type":40,"tag":279,"props":1924,"children":1925},{},[1926,1928,1933],{"type":45,"value":1927},"Some templates require specific SDKs or workloads. Use ",{"type":40,"tag":54,"props":1929,"children":1931},{"className":1930},[],[1932],{"type":45,"value":1226},{"type":45,"value":1934}," to surface constraints before recommending.",{"type":40,"tag":252,"props":1936,"children":1937},{},[1938,1943],{"type":40,"tag":279,"props":1939,"children":1940},{},[1941],{"type":45,"value":1942},"Recommending a template without previewing output",{"type":40,"tag":279,"props":1944,"children":1945},{},[1946,1948,1953],{"type":45,"value":1947},"Always use ",{"type":40,"tag":54,"props":1949,"children":1951},{"className":1950},[],[1952],{"type":45,"value":1565},{"type":45,"value":1954}," to confirm the template produces what the user expects.",{"type":40,"tag":252,"props":1956,"children":1957},{},[1958,1970],{"type":40,"tag":279,"props":1959,"children":1960},{},[1961,1963,1968],{"type":45,"value":1962},"A ",{"type":40,"tag":54,"props":1964,"children":1966},{"className":1965},[],[1967],{"type":45,"value":59},{"type":45,"value":1969}," call fails with a \"mutex\"\u002F\"persistence\" error and you return nothing",{"type":40,"tag":279,"props":1971,"children":1972},{},[1973,1975,1980],{"type":45,"value":1974},"These are transient (often from concurrent invocations). Run ",{"type":40,"tag":54,"props":1976,"children":1978},{"className":1977},[],[1979],{"type":45,"value":59},{"type":45,"value":1981}," calls sequentially, retry once, then fall back to the Step 1 intent mapping and still give the user a concrete answer.",{"type":40,"tag":70,"props":1983,"children":1985},{"id":1984},"more-info",[1986],{"type":45,"value":1987},"More Info",{"type":40,"tag":77,"props":1989,"children":1990},{},[1991,2005],{"type":40,"tag":81,"props":1992,"children":1993},{},[1994,2003],{"type":40,"tag":1995,"props":1996,"children":2000},"a",{"href":1997,"rel":1998},"https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fdotnet-new-sdk-templates",[1999],"nofollow",[2001],{"type":45,"value":2002},"dotnet new templates",{"type":45,"value":2004}," — built-in template reference",{"type":40,"tag":81,"props":2006,"children":2007},{},[2008,2015],{"type":40,"tag":1995,"props":2009,"children":2012},{"href":2010,"rel":2011},"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Ftemplating\u002Fwiki",[1999],[2013],{"type":45,"value":2014},"Template Engine Wiki",{"type":45,"value":2016}," — template engine internals",{"type":40,"tag":2018,"props":2019,"children":2020},"style",{},[2021],{"type":45,"value":2022},"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":2024,"total":2130},[2025,2042,2057,2075,2089,2108,2118],{"slug":2026,"name":2026,"fn":2027,"description":2028,"org":2029,"tags":2030,"stars":22,"repoUrl":23,"updatedAt":2041},"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},[2031,2032,2035,2038],{"name":13,"slug":14,"type":15},{"name":2033,"slug":2034,"type":15},"Code Analysis","code-analysis",{"name":2036,"slug":2037,"type":15},"Debugging","debugging",{"name":2039,"slug":2040,"type":15},"Performance","performance","2026-07-12T08:23:25.400375",{"slug":2043,"name":2043,"fn":2044,"description":2045,"org":2046,"tags":2047,"stars":22,"repoUrl":23,"updatedAt":2056},"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},[2048,2049,2052,2053],{"name":13,"slug":14,"type":15},{"name":2050,"slug":2051,"type":15},"Android","android",{"name":2036,"slug":2037,"type":15},{"name":2054,"slug":2055,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":2058,"name":2058,"fn":2059,"description":2060,"org":2061,"tags":2062,"stars":22,"repoUrl":23,"updatedAt":2074},"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},[2063,2064,2065,2068,2071],{"name":13,"slug":14,"type":15},{"name":2036,"slug":2037,"type":15},{"name":2066,"slug":2067,"type":15},"iOS","ios",{"name":2069,"slug":2070,"type":15},"macOS","macos",{"name":2072,"slug":2073,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":2076,"name":2076,"fn":2077,"description":2078,"org":2079,"tags":2080,"stars":22,"repoUrl":23,"updatedAt":2088},"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},[2081,2082,2085],{"name":2033,"slug":2034,"type":15},{"name":2083,"slug":2084,"type":15},"QA","qa",{"name":2086,"slug":2087,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":2090,"name":2090,"fn":2091,"description":2092,"org":2093,"tags":2094,"stars":22,"repoUrl":23,"updatedAt":2107},"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},[2095,2096,2098,2101,2104],{"name":13,"slug":14,"type":15},{"name":2097,"slug":493,"type":15},"Blazor",{"name":2099,"slug":2100,"type":15},"C#","csharp",{"name":2102,"slug":2103,"type":15},"UI Components","ui-components",{"name":2105,"slug":2106,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":2109,"name":2109,"fn":2110,"description":2111,"org":2112,"tags":2113,"stars":22,"repoUrl":23,"updatedAt":2117},"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},[2114,2115,2116],{"name":2033,"slug":2034,"type":15},{"name":2036,"slug":2037,"type":15},{"name":2054,"slug":2055,"type":15},"2026-07-12T08:21:34.637923",{"slug":2119,"name":2119,"fn":2120,"description":2121,"org":2122,"tags":2123,"stars":22,"repoUrl":23,"updatedAt":2129},"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},[2124,2127,2128],{"name":2125,"slug":2126,"type":15},"Build","build",{"name":2036,"slug":2037,"type":15},{"name":20,"slug":21,"type":15},"2026-07-19T05:38:19.340791",96,{"items":2132,"total":2237},[2133,2145,2152,2159,2167,2173,2181,2187,2193,2203,2216,2227],{"slug":2134,"name":2134,"fn":2135,"description":2136,"org":2137,"tags":2138,"stars":2142,"repoUrl":2143,"updatedAt":2144},"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},[2139,2140,2141],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":2039,"slug":2040,"type":15},5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":2026,"name":2026,"fn":2027,"description":2028,"org":2146,"tags":2147,"stars":22,"repoUrl":23,"updatedAt":2041},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2148,2149,2150,2151],{"name":13,"slug":14,"type":15},{"name":2033,"slug":2034,"type":15},{"name":2036,"slug":2037,"type":15},{"name":2039,"slug":2040,"type":15},{"slug":2043,"name":2043,"fn":2044,"description":2045,"org":2153,"tags":2154,"stars":22,"repoUrl":23,"updatedAt":2056},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2155,2156,2157,2158],{"name":13,"slug":14,"type":15},{"name":2050,"slug":2051,"type":15},{"name":2036,"slug":2037,"type":15},{"name":2054,"slug":2055,"type":15},{"slug":2058,"name":2058,"fn":2059,"description":2060,"org":2160,"tags":2161,"stars":22,"repoUrl":23,"updatedAt":2074},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2162,2163,2164,2165,2166],{"name":13,"slug":14,"type":15},{"name":2036,"slug":2037,"type":15},{"name":2066,"slug":2067,"type":15},{"name":2069,"slug":2070,"type":15},{"name":2072,"slug":2073,"type":15},{"slug":2076,"name":2076,"fn":2077,"description":2078,"org":2168,"tags":2169,"stars":22,"repoUrl":23,"updatedAt":2088},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2170,2171,2172],{"name":2033,"slug":2034,"type":15},{"name":2083,"slug":2084,"type":15},{"name":2086,"slug":2087,"type":15},{"slug":2090,"name":2090,"fn":2091,"description":2092,"org":2174,"tags":2175,"stars":22,"repoUrl":23,"updatedAt":2107},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2176,2177,2178,2179,2180],{"name":13,"slug":14,"type":15},{"name":2097,"slug":493,"type":15},{"name":2099,"slug":2100,"type":15},{"name":2102,"slug":2103,"type":15},{"name":2105,"slug":2106,"type":15},{"slug":2109,"name":2109,"fn":2110,"description":2111,"org":2182,"tags":2183,"stars":22,"repoUrl":23,"updatedAt":2117},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2184,2185,2186],{"name":2033,"slug":2034,"type":15},{"name":2036,"slug":2037,"type":15},{"name":2054,"slug":2055,"type":15},{"slug":2119,"name":2119,"fn":2120,"description":2121,"org":2188,"tags":2189,"stars":22,"repoUrl":23,"updatedAt":2129},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2190,2191,2192],{"name":2125,"slug":2126,"type":15},{"name":2036,"slug":2037,"type":15},{"name":20,"slug":21,"type":15},{"slug":2194,"name":2194,"fn":2195,"description":2196,"org":2197,"tags":2198,"stars":22,"repoUrl":23,"updatedAt":2202},"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},[2199,2200,2201],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":2039,"slug":2040,"type":15},"2026-07-19T05:38:18.364937",{"slug":2204,"name":2204,"fn":2205,"description":2206,"org":2207,"tags":2208,"stars":22,"repoUrl":23,"updatedAt":2215},"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},[2209,2210,2213,2214],{"name":20,"slug":21,"type":15},{"name":2211,"slug":2212,"type":15},"Monitoring","monitoring",{"name":2039,"slug":2040,"type":15},{"name":2086,"slug":2087,"type":15},"2026-07-12T08:21:35.865649",{"slug":2217,"name":2217,"fn":2218,"description":2219,"org":2220,"tags":2221,"stars":22,"repoUrl":23,"updatedAt":2226},"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},[2222,2223,2224,2225],{"name":13,"slug":14,"type":15},{"name":2036,"slug":2037,"type":15},{"name":20,"slug":21,"type":15},{"name":2039,"slug":2040,"type":15},"2026-07-12T08:21:40.961722",{"slug":2228,"name":2228,"fn":2229,"description":2230,"org":2231,"tags":2232,"stars":22,"repoUrl":23,"updatedAt":2236},"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},[2233,2234,2235],{"name":2036,"slug":2037,"type":15},{"name":20,"slug":21,"type":15},{"name":2083,"slug":2084,"type":15},"2026-07-19T05:38:14.336279",144]