[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-converting-to-cpm":3,"mdc-ymcx8a-key":30,"related-repo-microsoft-converting-to-cpm":789,"related-org-microsoft-converting-to-cpm":885},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":28,"mdContent":29},"converting-to-cpm","migrate .NET projects to Central Package Management","Converts .NET projects and solutions to NuGet Central Package Management (CPM) with Directory.Packages.props. Use when the user wants to centralize, convert, align, or sync NuGet package versions across multiple projects, resolve version conflicts or mismatches, or get versions consistent across a solution or repository. Also triggers when packages are out of sync or drifting across projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,17],{"name":13,"slug":14,"type":15},".NET","net","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Migration","migration",7,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins","2026-07-18T05:14:13.971821",null,1,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":23},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fupgrade-agent\u002Fextenders\u002Fupgrade-dotnet\u002Fupgrade\u002Fskills\u002Flazy\u002Fcommon\u002Fconverting-to-cpm","---\r\nname: converting-to-cpm\r\ndescription: >\r\n  Converts .NET projects and solutions to NuGet Central Package Management (CPM) with\r\n  Directory.Packages.props. Use when the user wants to centralize, convert, align, or sync NuGet\r\n  package versions across multiple projects, resolve version conflicts or mismatches, or get versions\r\n  consistent across a solution or repository. Also triggers when packages are out of sync or drifting\r\n  across projects.\r\nmetadata:\r\n  traits: .NET|CSharp|VisualBasic|DotNetCore\r\n  discovery: lazy\r\n---\r\n\r\n# Convert to Central Package Management\r\n\r\nMigrate .NET projects from per-project package versioning to NuGet Central Package Management (CPM), centralizing all package versions into a single `Directory.Packages.props`.\r\n\r\n## When to Use\r\n\r\n- User wants to adopt CPM for a repository, solution, or project\r\n- Package versions are scattered across project files and the user wants a single source of truth\r\n- User mentions `Directory.Packages.props`, CPM, or centralizing NuGet versions\r\n- User wants to align or sync a package version across multiple projects — suggest CPM if not already enabled\r\n- Package versions are out of sync or conflicting across projects\r\n\r\n## When Not to Use\r\n\r\n- CPM is already fully enabled for all in-scope projects\r\n- Projects use `packages.config` (must first migrate to `PackageReference`)\r\n- User explicitly wants a custom MSBuild property file without CPM\r\n\r\n## Inputs\r\n\r\n| Input | Required | Description |\r\n|-------|----------|-------------|\r\n| Scope | Yes | A project file, solution file, or directory containing .NET projects to convert |\r\n| Version conflict strategy | No | How to resolve version conflicts. Do not assume a default — ask the user when conflicts are detected. |\r\n\r\n## Workflow\r\n\r\n### Step 1: Determine scope\r\n\r\n- **Single project**: User specifies a project file.\r\n- **Solution**: User specifies a `.sln`\u002F`.slnx`. List projects with `dotnet sln list`.\r\n- **Repository\u002Fdirectory**: Find all project files recursively from the first common ancestor directory.\r\n\r\nIf the scope is unclear, ask the user.\r\n\r\n### Step 2: Establish baseline build\r\n\r\nVerify the scope builds successfully and capture baseline artifacts. See [baseline-comparison.md](ref\u002Fbaseline-comparison.md) for the full procedure. If the baseline build fails, stop and inform the user — the scope must build cleanly before conversion. Do not delete artifacts — they are needed for the post-conversion comparison.\r\n\r\n### Step 3: Check for existing CPM\r\n\r\nSearch for `Directory.Packages.props` in scope or ancestor directories. If CPM is already fully enabled, inform the user and stop. If the file exists without CPM enabled, ask the user how to proceed.\r\n\r\n### Step 4: Audit package references\r\n\r\nRun `dotnet package list --format json` across all in-scope projects. Scan `\u003CImport>` elements for shared `.props`\u002F`.targets` files containing package references.\r\n\r\nCheck for complexities per [audit-complexities.md](ref\u002Faudit-complexities.md): version conflicts, MSBuild property-based versions, conditional references, security advisories, existing `VersionOverride` usage.\r\n\r\nPresent audit results to the user before proceeding — a table of packages, versions, and consuming projects, plus any conflicts or complexities requiring decisions.\r\n\r\nFor version conflicts, present each individually with resolution options and trade-offs. Do not upgrade any package beyond the highest version already in use — note advisories as follow-up items instead. Ask the user to decide on each conflict before proceeding.\r\n\r\n### Step 5: Create or update Directory.Packages.props\r\n\r\nCreate with `dotnet new packagesprops` (.NET 8+) or manually. Add `\u003CPackageVersion>` entries for each unique package. See [directory-packages-props.md](ref\u002Fdirectory-packages-props.md) for placement, conditional versions, and `VersionOverride` patterns.\r\n\r\n### Step 6: Update project files\r\n\r\nRemove `Version` from every `\u003CPackageReference>` that has a corresponding `\u003CPackageVersion>`. Also update shared `.props`\u002F`.targets` files from step 4. Use `VersionOverride` (with user confirmation) when a project needs a different version than the central one. Do not reformat or reorganize unchanged lines.\r\n\r\n### Step 7: Handle MSBuild version properties\r\n\r\nFor `PackageReference` items that used MSBuild properties for versions, determine whether to inline or keep the property reference. See [msbuild-property-handling.md](ref\u002Fmsbuild-property-handling.md) for the decision workflow, import order requirements, and cleanup procedure. Clean up inlined properties only after validation succeeds in step 8.\r\n\r\n### Step 8: Restore and validate\r\n\r\nRun a clean restore and build, capturing post-conversion artifacts. See [baseline-comparison.md](ref\u002Fbaseline-comparison.md) for the procedure. If errors occur, see [validation-and-errors.md](ref\u002Fvalidation-and-errors.md) for NuGet error codes and multi-TFM guidance.\r\n\r\nDo not delete any artifacts — `baseline.binlog`, `after-cpm.binlog`, `baseline-packages.json`, `after-cpm-packages.json` are deliverables for the user.\r\n\r\n### Step 9: Post-conversion report\r\n\r\nCreate a `convert-to-cpm.md` file alongside the artifacts — do not substitute inline chat output. Include:\r\n\r\n- Conversion overview (scope, project count, packages centralized, anything skipped)\r\n- Version conflict resolutions and their impact per project\r\n- Baseline vs. result package comparison tables (see [baseline-comparison.md](ref\u002Fbaseline-comparison.md))\r\n- Risk assessment (low\u002Fmoderate\u002Fhigh based on whether versions changed)\r\n- Follow-up items checklist (security advisories, deprecated packages, `VersionOverride` alignment opportunities)\r\n\r\n## Validation\r\n\r\n- [ ] Baseline build succeeded before any changes\r\n- [ ] `Directory.Packages.props` has `ManagePackageVersionsCentrally` set to `true`\r\n- [ ] Every in-scope `PackageReference` has no `Version` attribute or uses `VersionOverride`\r\n- [ ] Every referenced package has a corresponding `PackageVersion` entry\r\n- [ ] `dotnet restore` and `dotnet build` succeed from a clean state\r\n- [ ] Package list comparison shows no unexpected version changes\r\n- [ ] No orphaned version properties remain (unless intentionally kept)",{"data":31,"body":35},{"name":4,"description":6,"metadata":32},{"traits":33,"discovery":34},".NET|CSharp|VisualBasic|DotNetCore","lazy",{"type":36,"children":37},"root",[38,47,62,69,106,112,146,152,221,227,234,291,296,302,316,322,334,340,376,397,402,407,413,449,455,503,509,529,535,554,589,595,608,648,654],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"convert-to-central-package-management",[44],{"type":45,"value":46},"text","Convert to Central Package Management",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51,53,60],{"type":45,"value":52},"Migrate .NET projects from per-project package versioning to NuGet Central Package Management (CPM), centralizing all package versions into a single ",{"type":39,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":45,"value":59},"Directory.Packages.props",{"type":45,"value":61},".",{"type":39,"tag":63,"props":64,"children":66},"h2",{"id":65},"when-to-use",[67],{"type":45,"value":68},"When to Use",{"type":39,"tag":70,"props":71,"children":72},"ul",{},[73,79,84,96,101],{"type":39,"tag":74,"props":75,"children":76},"li",{},[77],{"type":45,"value":78},"User wants to adopt CPM for a repository, solution, or project",{"type":39,"tag":74,"props":80,"children":81},{},[82],{"type":45,"value":83},"Package versions are scattered across project files and the user wants a single source of truth",{"type":39,"tag":74,"props":85,"children":86},{},[87,89,94],{"type":45,"value":88},"User mentions ",{"type":39,"tag":54,"props":90,"children":92},{"className":91},[],[93],{"type":45,"value":59},{"type":45,"value":95},", CPM, or centralizing NuGet versions",{"type":39,"tag":74,"props":97,"children":98},{},[99],{"type":45,"value":100},"User wants to align or sync a package version across multiple projects — suggest CPM if not already enabled",{"type":39,"tag":74,"props":102,"children":103},{},[104],{"type":45,"value":105},"Package versions are out of sync or conflicting across projects",{"type":39,"tag":63,"props":107,"children":109},{"id":108},"when-not-to-use",[110],{"type":45,"value":111},"When Not to Use",{"type":39,"tag":70,"props":113,"children":114},{},[115,120,141],{"type":39,"tag":74,"props":116,"children":117},{},[118],{"type":45,"value":119},"CPM is already fully enabled for all in-scope projects",{"type":39,"tag":74,"props":121,"children":122},{},[123,125,131,133,139],{"type":45,"value":124},"Projects use ",{"type":39,"tag":54,"props":126,"children":128},{"className":127},[],[129],{"type":45,"value":130},"packages.config",{"type":45,"value":132}," (must first migrate to ",{"type":39,"tag":54,"props":134,"children":136},{"className":135},[],[137],{"type":45,"value":138},"PackageReference",{"type":45,"value":140},")",{"type":39,"tag":74,"props":142,"children":143},{},[144],{"type":45,"value":145},"User explicitly wants a custom MSBuild property file without CPM",{"type":39,"tag":63,"props":147,"children":149},{"id":148},"inputs",[150],{"type":45,"value":151},"Inputs",{"type":39,"tag":153,"props":154,"children":155},"table",{},[156,180],{"type":39,"tag":157,"props":158,"children":159},"thead",{},[160],{"type":39,"tag":161,"props":162,"children":163},"tr",{},[164,170,175],{"type":39,"tag":165,"props":166,"children":167},"th",{},[168],{"type":45,"value":169},"Input",{"type":39,"tag":165,"props":171,"children":172},{},[173],{"type":45,"value":174},"Required",{"type":39,"tag":165,"props":176,"children":177},{},[178],{"type":45,"value":179},"Description",{"type":39,"tag":181,"props":182,"children":183},"tbody",{},[184,203],{"type":39,"tag":161,"props":185,"children":186},{},[187,193,198],{"type":39,"tag":188,"props":189,"children":190},"td",{},[191],{"type":45,"value":192},"Scope",{"type":39,"tag":188,"props":194,"children":195},{},[196],{"type":45,"value":197},"Yes",{"type":39,"tag":188,"props":199,"children":200},{},[201],{"type":45,"value":202},"A project file, solution file, or directory containing .NET projects to convert",{"type":39,"tag":161,"props":204,"children":205},{},[206,211,216],{"type":39,"tag":188,"props":207,"children":208},{},[209],{"type":45,"value":210},"Version conflict strategy",{"type":39,"tag":188,"props":212,"children":213},{},[214],{"type":45,"value":215},"No",{"type":39,"tag":188,"props":217,"children":218},{},[219],{"type":45,"value":220},"How to resolve version conflicts. Do not assume a default — ask the user when conflicts are detected.",{"type":39,"tag":63,"props":222,"children":224},{"id":223},"workflow",[225],{"type":45,"value":226},"Workflow",{"type":39,"tag":228,"props":229,"children":231},"h3",{"id":230},"step-1-determine-scope",[232],{"type":45,"value":233},"Step 1: Determine scope",{"type":39,"tag":70,"props":235,"children":236},{},[237,248,281],{"type":39,"tag":74,"props":238,"children":239},{},[240,246],{"type":39,"tag":241,"props":242,"children":243},"strong",{},[244],{"type":45,"value":245},"Single project",{"type":45,"value":247},": User specifies a project file.",{"type":39,"tag":74,"props":249,"children":250},{},[251,256,258,264,266,272,274,280],{"type":39,"tag":241,"props":252,"children":253},{},[254],{"type":45,"value":255},"Solution",{"type":45,"value":257},": User specifies a ",{"type":39,"tag":54,"props":259,"children":261},{"className":260},[],[262],{"type":45,"value":263},".sln",{"type":45,"value":265},"\u002F",{"type":39,"tag":54,"props":267,"children":269},{"className":268},[],[270],{"type":45,"value":271},".slnx",{"type":45,"value":273},". List projects with ",{"type":39,"tag":54,"props":275,"children":277},{"className":276},[],[278],{"type":45,"value":279},"dotnet sln list",{"type":45,"value":61},{"type":39,"tag":74,"props":282,"children":283},{},[284,289],{"type":39,"tag":241,"props":285,"children":286},{},[287],{"type":45,"value":288},"Repository\u002Fdirectory",{"type":45,"value":290},": Find all project files recursively from the first common ancestor directory.",{"type":39,"tag":48,"props":292,"children":293},{},[294],{"type":45,"value":295},"If the scope is unclear, ask the user.",{"type":39,"tag":228,"props":297,"children":299},{"id":298},"step-2-establish-baseline-build",[300],{"type":45,"value":301},"Step 2: Establish baseline build",{"type":39,"tag":48,"props":303,"children":304},{},[305,307,314],{"type":45,"value":306},"Verify the scope builds successfully and capture baseline artifacts. See ",{"type":39,"tag":308,"props":309,"children":311},"a",{"href":310},"ref\u002Fbaseline-comparison.md",[312],{"type":45,"value":313},"baseline-comparison.md",{"type":45,"value":315}," for the full procedure. If the baseline build fails, stop and inform the user — the scope must build cleanly before conversion. Do not delete artifacts — they are needed for the post-conversion comparison.",{"type":39,"tag":228,"props":317,"children":319},{"id":318},"step-3-check-for-existing-cpm",[320],{"type":45,"value":321},"Step 3: Check for existing CPM",{"type":39,"tag":48,"props":323,"children":324},{},[325,327,332],{"type":45,"value":326},"Search for ",{"type":39,"tag":54,"props":328,"children":330},{"className":329},[],[331],{"type":45,"value":59},{"type":45,"value":333}," in scope or ancestor directories. If CPM is already fully enabled, inform the user and stop. If the file exists without CPM enabled, ask the user how to proceed.",{"type":39,"tag":228,"props":335,"children":337},{"id":336},"step-4-audit-package-references",[338],{"type":45,"value":339},"Step 4: Audit package references",{"type":39,"tag":48,"props":341,"children":342},{},[343,345,351,353,359,361,367,368,374],{"type":45,"value":344},"Run ",{"type":39,"tag":54,"props":346,"children":348},{"className":347},[],[349],{"type":45,"value":350},"dotnet package list --format json",{"type":45,"value":352}," across all in-scope projects. Scan ",{"type":39,"tag":54,"props":354,"children":356},{"className":355},[],[357],{"type":45,"value":358},"\u003CImport>",{"type":45,"value":360}," elements for shared ",{"type":39,"tag":54,"props":362,"children":364},{"className":363},[],[365],{"type":45,"value":366},".props",{"type":45,"value":265},{"type":39,"tag":54,"props":369,"children":371},{"className":370},[],[372],{"type":45,"value":373},".targets",{"type":45,"value":375}," files containing package references.",{"type":39,"tag":48,"props":377,"children":378},{},[379,381,387,389,395],{"type":45,"value":380},"Check for complexities per ",{"type":39,"tag":308,"props":382,"children":384},{"href":383},"ref\u002Faudit-complexities.md",[385],{"type":45,"value":386},"audit-complexities.md",{"type":45,"value":388},": version conflicts, MSBuild property-based versions, conditional references, security advisories, existing ",{"type":39,"tag":54,"props":390,"children":392},{"className":391},[],[393],{"type":45,"value":394},"VersionOverride",{"type":45,"value":396}," usage.",{"type":39,"tag":48,"props":398,"children":399},{},[400],{"type":45,"value":401},"Present audit results to the user before proceeding — a table of packages, versions, and consuming projects, plus any conflicts or complexities requiring decisions.",{"type":39,"tag":48,"props":403,"children":404},{},[405],{"type":45,"value":406},"For version conflicts, present each individually with resolution options and trade-offs. Do not upgrade any package beyond the highest version already in use — note advisories as follow-up items instead. Ask the user to decide on each conflict before proceeding.",{"type":39,"tag":228,"props":408,"children":410},{"id":409},"step-5-create-or-update-directorypackagesprops",[411],{"type":45,"value":412},"Step 5: Create or update Directory.Packages.props",{"type":39,"tag":48,"props":414,"children":415},{},[416,418,424,426,432,434,440,442,447],{"type":45,"value":417},"Create with ",{"type":39,"tag":54,"props":419,"children":421},{"className":420},[],[422],{"type":45,"value":423},"dotnet new packagesprops",{"type":45,"value":425}," (.NET 8+) or manually. Add ",{"type":39,"tag":54,"props":427,"children":429},{"className":428},[],[430],{"type":45,"value":431},"\u003CPackageVersion>",{"type":45,"value":433}," entries for each unique package. See ",{"type":39,"tag":308,"props":435,"children":437},{"href":436},"ref\u002Fdirectory-packages-props.md",[438],{"type":45,"value":439},"directory-packages-props.md",{"type":45,"value":441}," for placement, conditional versions, and ",{"type":39,"tag":54,"props":443,"children":445},{"className":444},[],[446],{"type":45,"value":394},{"type":45,"value":448}," patterns.",{"type":39,"tag":228,"props":450,"children":452},{"id":451},"step-6-update-project-files",[453],{"type":45,"value":454},"Step 6: Update project files",{"type":39,"tag":48,"props":456,"children":457},{},[458,460,466,468,474,476,481,483,488,489,494,496,501],{"type":45,"value":459},"Remove ",{"type":39,"tag":54,"props":461,"children":463},{"className":462},[],[464],{"type":45,"value":465},"Version",{"type":45,"value":467}," from every ",{"type":39,"tag":54,"props":469,"children":471},{"className":470},[],[472],{"type":45,"value":473},"\u003CPackageReference>",{"type":45,"value":475}," that has a corresponding ",{"type":39,"tag":54,"props":477,"children":479},{"className":478},[],[480],{"type":45,"value":431},{"type":45,"value":482},". Also update shared ",{"type":39,"tag":54,"props":484,"children":486},{"className":485},[],[487],{"type":45,"value":366},{"type":45,"value":265},{"type":39,"tag":54,"props":490,"children":492},{"className":491},[],[493],{"type":45,"value":373},{"type":45,"value":495}," files from step 4. Use ",{"type":39,"tag":54,"props":497,"children":499},{"className":498},[],[500],{"type":45,"value":394},{"type":45,"value":502}," (with user confirmation) when a project needs a different version than the central one. Do not reformat or reorganize unchanged lines.",{"type":39,"tag":228,"props":504,"children":506},{"id":505},"step-7-handle-msbuild-version-properties",[507],{"type":45,"value":508},"Step 7: Handle MSBuild version properties",{"type":39,"tag":48,"props":510,"children":511},{},[512,514,519,521,527],{"type":45,"value":513},"For ",{"type":39,"tag":54,"props":515,"children":517},{"className":516},[],[518],{"type":45,"value":138},{"type":45,"value":520}," items that used MSBuild properties for versions, determine whether to inline or keep the property reference. See ",{"type":39,"tag":308,"props":522,"children":524},{"href":523},"ref\u002Fmsbuild-property-handling.md",[525],{"type":45,"value":526},"msbuild-property-handling.md",{"type":45,"value":528}," for the decision workflow, import order requirements, and cleanup procedure. Clean up inlined properties only after validation succeeds in step 8.",{"type":39,"tag":228,"props":530,"children":532},{"id":531},"step-8-restore-and-validate",[533],{"type":45,"value":534},"Step 8: Restore and validate",{"type":39,"tag":48,"props":536,"children":537},{},[538,540,544,546,552],{"type":45,"value":539},"Run a clean restore and build, capturing post-conversion artifacts. See ",{"type":39,"tag":308,"props":541,"children":542},{"href":310},[543],{"type":45,"value":313},{"type":45,"value":545}," for the procedure. If errors occur, see ",{"type":39,"tag":308,"props":547,"children":549},{"href":548},"ref\u002Fvalidation-and-errors.md",[550],{"type":45,"value":551},"validation-and-errors.md",{"type":45,"value":553}," for NuGet error codes and multi-TFM guidance.",{"type":39,"tag":48,"props":555,"children":556},{},[557,559,565,567,573,574,580,581,587],{"type":45,"value":558},"Do not delete any artifacts — ",{"type":39,"tag":54,"props":560,"children":562},{"className":561},[],[563],{"type":45,"value":564},"baseline.binlog",{"type":45,"value":566},", ",{"type":39,"tag":54,"props":568,"children":570},{"className":569},[],[571],{"type":45,"value":572},"after-cpm.binlog",{"type":45,"value":566},{"type":39,"tag":54,"props":575,"children":577},{"className":576},[],[578],{"type":45,"value":579},"baseline-packages.json",{"type":45,"value":566},{"type":39,"tag":54,"props":582,"children":584},{"className":583},[],[585],{"type":45,"value":586},"after-cpm-packages.json",{"type":45,"value":588}," are deliverables for the user.",{"type":39,"tag":228,"props":590,"children":592},{"id":591},"step-9-post-conversion-report",[593],{"type":45,"value":594},"Step 9: Post-conversion report",{"type":39,"tag":48,"props":596,"children":597},{},[598,600,606],{"type":45,"value":599},"Create a ",{"type":39,"tag":54,"props":601,"children":603},{"className":602},[],[604],{"type":45,"value":605},"convert-to-cpm.md",{"type":45,"value":607}," file alongside the artifacts — do not substitute inline chat output. Include:",{"type":39,"tag":70,"props":609,"children":610},{},[611,616,621,631,636],{"type":39,"tag":74,"props":612,"children":613},{},[614],{"type":45,"value":615},"Conversion overview (scope, project count, packages centralized, anything skipped)",{"type":39,"tag":74,"props":617,"children":618},{},[619],{"type":45,"value":620},"Version conflict resolutions and their impact per project",{"type":39,"tag":74,"props":622,"children":623},{},[624,626,630],{"type":45,"value":625},"Baseline vs. result package comparison tables (see ",{"type":39,"tag":308,"props":627,"children":628},{"href":310},[629],{"type":45,"value":313},{"type":45,"value":140},{"type":39,"tag":74,"props":632,"children":633},{},[634],{"type":45,"value":635},"Risk assessment (low\u002Fmoderate\u002Fhigh based on whether versions changed)",{"type":39,"tag":74,"props":637,"children":638},{},[639,641,646],{"type":45,"value":640},"Follow-up items checklist (security advisories, deprecated packages, ",{"type":39,"tag":54,"props":642,"children":644},{"className":643},[],[645],{"type":45,"value":394},{"type":45,"value":647}," alignment opportunities)",{"type":39,"tag":63,"props":649,"children":651},{"id":650},"validation",[652],{"type":45,"value":653},"Validation",{"type":39,"tag":70,"props":655,"children":658},{"className":656},[657],"contains-task-list",[659,672,702,730,747,771,780],{"type":39,"tag":74,"props":660,"children":663},{"className":661},[662],"task-list-item",[664,670],{"type":39,"tag":665,"props":666,"children":669},"input",{"disabled":667,"type":668},true,"checkbox",[],{"type":45,"value":671}," Baseline build succeeded before any changes",{"type":39,"tag":74,"props":673,"children":675},{"className":674},[662],[676,679,681,686,688,694,696],{"type":39,"tag":665,"props":677,"children":678},{"disabled":667,"type":668},[],{"type":45,"value":680}," ",{"type":39,"tag":54,"props":682,"children":684},{"className":683},[],[685],{"type":45,"value":59},{"type":45,"value":687}," has ",{"type":39,"tag":54,"props":689,"children":691},{"className":690},[],[692],{"type":45,"value":693},"ManagePackageVersionsCentrally",{"type":45,"value":695}," set to ",{"type":39,"tag":54,"props":697,"children":699},{"className":698},[],[700],{"type":45,"value":701},"true",{"type":39,"tag":74,"props":703,"children":705},{"className":704},[662],[706,709,711,716,718,723,725],{"type":39,"tag":665,"props":707,"children":708},{"disabled":667,"type":668},[],{"type":45,"value":710}," Every in-scope ",{"type":39,"tag":54,"props":712,"children":714},{"className":713},[],[715],{"type":45,"value":138},{"type":45,"value":717}," has no ",{"type":39,"tag":54,"props":719,"children":721},{"className":720},[],[722],{"type":45,"value":465},{"type":45,"value":724}," attribute or uses ",{"type":39,"tag":54,"props":726,"children":728},{"className":727},[],[729],{"type":45,"value":394},{"type":39,"tag":74,"props":731,"children":733},{"className":732},[662],[734,737,739,745],{"type":39,"tag":665,"props":735,"children":736},{"disabled":667,"type":668},[],{"type":45,"value":738}," Every referenced package has a corresponding ",{"type":39,"tag":54,"props":740,"children":742},{"className":741},[],[743],{"type":45,"value":744},"PackageVersion",{"type":45,"value":746}," entry",{"type":39,"tag":74,"props":748,"children":750},{"className":749},[662],[751,754,755,761,763,769],{"type":39,"tag":665,"props":752,"children":753},{"disabled":667,"type":668},[],{"type":45,"value":680},{"type":39,"tag":54,"props":756,"children":758},{"className":757},[],[759],{"type":45,"value":760},"dotnet restore",{"type":45,"value":762}," and ",{"type":39,"tag":54,"props":764,"children":766},{"className":765},[],[767],{"type":45,"value":768},"dotnet build",{"type":45,"value":770}," succeed from a clean state",{"type":39,"tag":74,"props":772,"children":774},{"className":773},[662],[775,778],{"type":39,"tag":665,"props":776,"children":777},{"disabled":667,"type":668},[],{"type":45,"value":779}," Package list comparison shows no unexpected version changes",{"type":39,"tag":74,"props":781,"children":783},{"className":782},[662],[784,787],{"type":39,"tag":665,"props":785,"children":786},{"disabled":667,"type":668},[],{"type":45,"value":788}," No orphaned version properties remain (unless intentionally kept)",{"items":790,"total":884},[791,797,811,828,838,853,870],{"slug":4,"name":4,"fn":5,"description":6,"org":792,"tags":793,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[794,795,796],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"slug":798,"name":798,"fn":799,"description":800,"org":801,"tags":802,"stars":20,"repoUrl":21,"updatedAt":810},"creating-winforms-custom-controls","create custom WinForms controls","Creates custom controls and UserControls for modern WinForms (.NET 6+). Use when deriving from Control, UserControl, Button, TextBox, or other base controls, implementing custom rendering with OnPaint overrides, creating composite controls with child control composition, adding custom properties with [Browsable], [Category], or [DefaultValue] attributes for Designer support, implementing INotifyPropertyChanged for control properties, handling Layout\u002FLayoutEngine for custom sizing, creating scrollable controls with AutoScrollMinSize, implementing dark mode theming, or building List\u002FGrid\u002FTree-like controls. Also triggers for \"custom UserControl\", \"derive from Control\", \"owner-drawn control\", \"Designer properties\", \"[Browsable] attribute\", \"custom WinForms control\", \"LayoutEngine\", \"AutoScroll control\", and \"themed control\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[803,804,807],{"name":13,"slug":14,"type":15},{"name":805,"slug":806,"type":15},"Windows","windows",{"name":808,"slug":809,"type":15},"WinUI","winui","2026-07-03T16:31:30.1325",{"slug":812,"name":812,"fn":813,"description":814,"org":815,"tags":816,"stars":20,"repoUrl":21,"updatedAt":827},"managing-winforms-high-dpi-layout","design high-DPI responsive WinForms layouts","Implements WinForms high-DPI fluent layouts using TableLayoutPanel, FlowLayoutPanel, and DPI-aware design patterns. Use when creating responsive form layouts that must scale across different DPI settings, implementing Per Monitor V2 (PerMonitorV2) DPI awareness, working with TableLayoutPanel.RowStyles\u002FColumnStyles, using FlowLayoutPanel for dynamic layouts, replacing fixed pixel positioning with container-based layout, troubleshooting DPI scaling issues, or structuring nested layout containers. Also triggers for \"TableLayoutPanel\", \"FlowLayoutPanel\", \"high DPI WinForms\", \"PerMonitorV2\", \"DPI aware layout\", \"responsive WinForms\", \"scale UI\", \"AutoScaleMode\", and \"DPI scaling\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[817,820,823,826],{"name":818,"slug":819,"type":15},"Design","design",{"name":821,"slug":822,"type":15},"Desktop","desktop",{"name":824,"slug":825,"type":15},"UI Components","ui-components",{"name":805,"slug":806,"type":15},"2026-07-18T05:14:12.982806",{"slug":829,"name":829,"fn":830,"description":831,"org":832,"tags":833,"stars":20,"repoUrl":21,"updatedAt":837},"managing-winforms-mvvm","implement MVVM pattern in WinForms","Implements MVVM pattern in WinForms applications (.NET 8+) with ViewModels, Commands, and DataContext. Use when user explicitly requests MVVM implementation, setting up ViewModel with INotifyPropertyChanged or ObservableObject, implementing ICommand or RelayCommand, wiring Form.DataContext, binding controls to ViewModel properties, creating Commands for button clicks, or separating business logic from UI code. Also triggers for \"WinForms MVVM\", \"ViewModel in WinForms\", \"INotifyPropertyChanged\", \"DataContext binding\", \"Command pattern WinForms\", \"ObservableObject\", \"RelayCommand\", and \"testable WinForms\". Also use when fixing existing MVVM code or when guided by winforms-feature-adoption scenario. DO NOT USE FOR: automatic application during version upgrades (opt-in only).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[834,835,836],{"name":13,"slug":14,"type":15},{"name":805,"slug":806,"type":15},{"name":808,"slug":809,"type":15},"2026-07-18T05:14:11.951511",{"slug":839,"name":839,"fn":840,"description":841,"org":842,"tags":843,"stars":20,"repoUrl":21,"updatedAt":852},"migrating-aspnet-framework-to-core","migrate ASP.NET Framework to Core","Orchestrates migration of ASP.NET Framework (System.Web) MVC and WebAPI projects to ASP.NET Core. Covers only old .NET Framework web projects — not applicable to ASP.NET Core or modern .NET web projects (those are already on the target stack). Defines the ordered phase sequence (project file, host, config, DI, controllers, middleware, auth, views, cleanup), satellite skill dispatch, and migration unit breakdown for both in-place and side-by-side modes. Use when executing a task that upgrades a project with System.Web dependencies, HttpModules, HttpHandlers, MVC controllers, WebAPI controllers, or Global.asax. Also triggers for \"migrate ASP.NET to Core\", \"upgrade MVC project\", \"convert WebAPI to ASP.NET Core\". Not applicable to class libraries unless they directly reference System.Web.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[844,845,848,851],{"name":13,"slug":14,"type":15},{"name":846,"slug":847,"type":15},"ASP.NET Core","asp-net-core",{"name":849,"slug":850,"type":15},"Backend","backend",{"name":18,"slug":19,"type":15},"2026-07-03T16:30:55.581898",{"slug":854,"name":854,"fn":855,"description":856,"org":857,"tags":858,"stars":20,"repoUrl":21,"updatedAt":869},"migrating-documentdb-to-cosmos","migrate DocumentDB to Cosmos DB","Migrates from the deprecated Microsoft.Azure.DocumentDB SDK (V2) to the modern Microsoft.Azure.Cosmos SDK (V3) for Azure Cosmos DB. Use ONLY when Microsoft.Azure.DocumentDB has been flagged as deprecated or obsolete and must be replaced — not for version-bump scenarios where the V2 SDK is still supported.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[859,862,865,868],{"name":860,"slug":861,"type":15},"Azure","azure",{"name":863,"slug":864,"type":15},"Cosmos DB","cosmos-db",{"name":866,"slug":867,"type":15},"Database","database",{"name":18,"slug":19,"type":15},"2026-07-03T16:31:21.932144",{"slug":871,"name":871,"fn":872,"description":873,"org":874,"tags":875,"stars":20,"repoUrl":21,"updatedAt":883},"migrating-global-asax","migrate Global.asax to ASP.NET Core middleware","Migrates Global.asax application lifecycle events to ASP.NET Core middleware, startup configuration, and Program.cs. Use when upgrading ASP.NET Framework apps containing Global.asax or Global.asax.cs files. Triggers for \"migrate Global.asax\", \"convert application events\", \"move Application_Start to Program.cs\", \"replace Global.asax with middleware\", and ASP.NET-to-Core migration involving request lifecycle, error handling, or session management.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[876,878,879,880],{"name":846,"slug":877,"type":15},"aspnet-core",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":881,"slug":882,"type":15},"Modernization","modernization","2026-07-07T06:54:34.226435",19,{"items":886,"total":1073},[887,909,926,947,962,979,990,1003,1018,1033,1048,1061],{"slug":888,"name":888,"fn":889,"description":890,"org":891,"tags":892,"stars":906,"repoUrl":907,"updatedAt":908},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[893,896,899,900,903],{"name":894,"slug":895,"type":15},"Engineering","engineering",{"name":897,"slug":898,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":901,"slug":902,"type":15},"Project Management","project-management",{"name":904,"slug":905,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":910,"name":910,"fn":911,"description":912,"org":913,"tags":914,"stars":923,"repoUrl":924,"updatedAt":925},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[915,916,919,920],{"name":13,"slug":14,"type":15},{"name":917,"slug":918,"type":15},"Agents","agents",{"name":860,"slug":861,"type":15},{"name":921,"slug":922,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":927,"name":927,"fn":928,"description":929,"org":930,"tags":931,"stars":923,"repoUrl":924,"updatedAt":946},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[932,935,936,939,942,943],{"name":933,"slug":934,"type":15},"Analytics","analytics",{"name":860,"slug":861,"type":15},{"name":937,"slug":938,"type":15},"Data Analysis","data-analysis",{"name":940,"slug":941,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":944,"slug":945,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":948,"name":948,"fn":949,"description":950,"org":951,"tags":952,"stars":923,"repoUrl":924,"updatedAt":961},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[953,956,957,958],{"name":954,"slug":955,"type":15},"AI Infrastructure","ai-infrastructure",{"name":860,"slug":861,"type":15},{"name":940,"slug":941,"type":15},{"name":959,"slug":960,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":963,"name":963,"fn":964,"description":965,"org":966,"tags":967,"stars":923,"repoUrl":924,"updatedAt":978},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[968,969,972,973,974,977],{"name":860,"slug":861,"type":15},{"name":970,"slug":971,"type":15},"Compliance","compliance",{"name":921,"slug":922,"type":15},{"name":9,"slug":8,"type":15},{"name":975,"slug":976,"type":15},"Python","python",{"name":959,"slug":960,"type":15},"2026-07-18T05:14:23.017504",{"slug":980,"name":980,"fn":981,"description":982,"org":983,"tags":984,"stars":923,"repoUrl":924,"updatedAt":989},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[985,986,987,988],{"name":933,"slug":934,"type":15},{"name":860,"slug":861,"type":15},{"name":921,"slug":922,"type":15},{"name":975,"slug":976,"type":15},"2026-07-31T05:54:29.068751",{"slug":991,"name":991,"fn":992,"description":993,"org":994,"tags":995,"stars":923,"repoUrl":924,"updatedAt":1002},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[996,999,1000,1001],{"name":997,"slug":998,"type":15},"API Development","api-development",{"name":860,"slug":861,"type":15},{"name":9,"slug":8,"type":15},{"name":975,"slug":976,"type":15},"2026-07-18T05:14:16.988376",{"slug":1004,"name":1004,"fn":1005,"description":1006,"org":1007,"tags":1008,"stars":923,"repoUrl":924,"updatedAt":1017},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1009,1010,1013,1016],{"name":860,"slug":861,"type":15},{"name":1011,"slug":1012,"type":15},"Computer Vision","computer-vision",{"name":1014,"slug":1015,"type":15},"Images","images",{"name":975,"slug":976,"type":15},"2026-07-18T05:14:18.007737",{"slug":1019,"name":1019,"fn":1020,"description":1021,"org":1022,"tags":1023,"stars":923,"repoUrl":924,"updatedAt":1032},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1024,1025,1028,1031],{"name":860,"slug":861,"type":15},{"name":1026,"slug":1027,"type":15},"Configuration","configuration",{"name":1029,"slug":1030,"type":15},"Feature Flags","feature-flags",{"name":940,"slug":941,"type":15},"2026-07-03T16:32:01.278468",{"slug":1034,"name":1034,"fn":1035,"description":1036,"org":1037,"tags":1038,"stars":923,"repoUrl":924,"updatedAt":1047},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1039,1040,1041,1044],{"name":863,"slug":864,"type":15},{"name":866,"slug":867,"type":15},{"name":1042,"slug":1043,"type":15},"NoSQL","nosql",{"name":1045,"slug":1046,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1049,"name":1049,"fn":1035,"description":1050,"org":1051,"tags":1052,"stars":923,"repoUrl":924,"updatedAt":1060},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1053,1054,1055,1056,1057],{"name":863,"slug":864,"type":15},{"name":866,"slug":867,"type":15},{"name":9,"slug":8,"type":15},{"name":1042,"slug":1043,"type":15},{"name":1058,"slug":1059,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1062,"name":1062,"fn":1063,"description":1064,"org":1065,"tags":1066,"stars":923,"repoUrl":924,"updatedAt":1072},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1067,1068,1069,1070,1071],{"name":860,"slug":861,"type":15},{"name":863,"slug":864,"type":15},{"name":866,"slug":867,"type":15},{"name":940,"slug":941,"type":15},{"name":1042,"slug":1043,"type":15},"2026-05-13T06:14:17.582229",267]