[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-sdk-style-conversion":3,"mdc--8ijtvi-key":32,"related-org-microsoft-sdk-style-conversion":955,"related-repo-microsoft-sdk-style-conversion":1150},{"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":28,"sourceUrl":30,"mdContent":31},"sdk-style-conversion","convert legacy .NET projects to SDK-style","Converts legacy .NET projects to SDK-style project format. Use when user wants to convert to SDK-style, modernize project files, or migrate from legacy csproj format. Does not change target frameworks.\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,19],{"name":13,"slug":14,"type":15},"Modernization","modernization","tag",{"name":17,"slug":18,"type":15},".NET","net",{"name":20,"slug":21,"type":15},"Migration","migration",7,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins","2026-07-03T16:32:22.266611",null,1,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fupgrade-agent\u002Fextenders\u002Fupgrade-dotnet\u002Fupgrade\u002Fskills\u002Fscenarios\u002Fsdk-style-conversion","---\r\nname: sdk-style-conversion\r\ndescription: >\r\n  Converts legacy .NET projects to SDK-style project format.\r\n  Use when user wants to convert to SDK-style, modernize project files,\r\n  or migrate from legacy csproj format. Does not change target frameworks.\r\nrequires-extension: upgrade-dotnet\r\nmetadata:\r\n  discovery: scenario\r\n  traits: .NET|CSharp|VisualBasic|DotNetCore|DotNetFramework\r\n  scenarioTraitsSet: [.NET]\r\n---\r\n\r\n# SDK-style Project Conversion\r\n\r\n## 1. Assessment\r\n\r\nScan the solution to identify which projects need conversion and what complications to expect. Capture findings in `assessment.md`.\r\n\r\n### How to Identify Non-SDK-Style Projects\r\n\r\nA project is non-SDK-style if it has any of:\r\n- No `Sdk` attribute on the `\u003CProject>` element\r\n- Explicit file includes (`\u003CCompile Include=\"...\">` for every source file)\r\n- `packages.config` file in the project directory\r\n- `\u003CImport Project=\"$(MSBuildToolsPath)\\Microsoft.CSharp.targets\" \u002F>` or similar explicit tool imports\r\n\r\n### Patterns to Identify\r\n\r\nFor each non-SDK-style project, record:\r\n\r\n| Pattern | What to Record |\r\n|---------|---------------|\r\n| `packages.config` | Present? — must be migrated to `PackageReference` |\r\n| Explicit file includes (`Compile`, `Content`, `None`, `EmbeddedResource`) | Count — SDK-style uses globbing, these become implicit |\r\n| Custom `Import` elements | Which targets are imported — may need preservation |\r\n| `AssemblyInfo.cs` with assembly attributes | SDK-style auto-generates these — potential duplication |\r\n| Multi-targeting (`TargetFrameworks` plural) | Already SDK-like, may be partial conversion |\r\n| WPF\u002FWinForms markers (`\u003CUseWPF>`, `\u003CUseWindowsForms>`, XAML files) | Needs `Microsoft.NET.Sdk.WindowsDesktop` or `net*-windows` TFM handling |\r\n| Web project type GUIDs (`{349c5851-...}`) | ASP.NET projects have special post-conversion considerations |\r\n| Custom build events or targets | Must be preserved through conversion |\r\n\r\n### Risk Indicators\r\n\r\nFlag these as higher complexity:\r\n- **ASP.NET Framework web projects**: SDK-style conversion is technically possible, but .NET tooling (Visual Studio, `dotnet build`) does not fully support SDK-style projects targeting ASP.NET Framework (non-Core). Custom MSBuild techniques or workarounds may be needed to maintain build and publish behavior. NuGet compatibility issues can also arise post-conversion\r\n- **Heavy custom MSBuild logic**: Custom targets, conditional imports, or property manipulation that might conflict with SDK defaults\r\n- **Shared projects or linked files**: File linking patterns change in SDK-style\r\n\r\n### Assessment Output\r\n\r\nCreate `assessment.md` in the workflow folder with this structure:\r\n\r\n```markdown\r\n# Assessment: SDK-style Conversion\r\n\r\n## Projects to Convert\r\n| Project | Path | packages.config | Custom Imports | Special Type | Risk |\r\n|---------|------|----------------|----------------|-------------|------|\r\n| MyApp.Core | src\u002FCore\u002FMyApp.Core.csproj | Yes | None | Class library | Low |\r\n| MyApp.Web | src\u002FWeb\u002FMyApp.Web.csproj | Yes | 2 custom targets | ASP.NET | High |\r\n\r\n## Already SDK-style (no action needed)\r\n- [list or \"none\"]\r\n\r\n## Baseline\r\n- Solution builds: Yes\u002FNo\r\n- Warning count: [number]\r\n\r\n## Key Findings\r\n- [Notable patterns, risks, or decisions needed]\r\n```\r\n\r\n## 2. Planning\r\n\r\nBased on the assessment, create `plan.md` with tasks ordered topologically (leaf dependencies first, so each project can build after conversion).\r\n\r\nFor each task include:\r\n- Which projects or groups of projects are covered\r\n- What complications are expected (packages.config, custom imports, special project types)\r\n- Risk level and anything requiring user decision\r\n\r\n**Hard constraint**: Do not change TargetFramework during conversion — that is a separate scenario (dotnet-version-upgrade).\r\n\r\n## 3. Execution\r\n\r\nExecute the plan task by task. For any task that involves converting a project to SDK-style, apply the **converting-to-sdk-style** feature skill. It provides a dedicated conversion tool and a two-phase workflow (planning + execution with per-project checklist).\r\n\r\nVerify the solution builds after each project or group is converted — catching errors early prevents cascading failures in dependent projects.\r\n\r\n## 4. Validation\r\n\r\n- Build the full solution — zero errors required (or no regressions from baseline)\r\n- All `packages.config` files removed from converted projects\r\n- No TargetFramework values changed\r\n- If the project had tests, run them and report results\r\n",{"data":33,"body":39},{"name":4,"description":6,"requires-extension":34,"metadata":35},"upgrade-dotnet",{"discovery":36,"traits":37,"scenarioTraitsSet":38},"scenario",".NET|CSharp|VisualBasic|DotNetCore|DotNetFramework",[17],{"type":40,"children":41},"root",[42,51,58,73,80,85,146,152,157,387,393,398,440,446,458,838,844,857,862,880,890,896,908,913,919,949],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"sdk-style-project-conversion",[48],{"type":49,"value":50},"text","SDK-style Project Conversion",{"type":43,"tag":52,"props":53,"children":55},"h2",{"id":54},"_1-assessment",[56],{"type":49,"value":57},"1. Assessment",{"type":43,"tag":59,"props":60,"children":61},"p",{},[62,64,71],{"type":49,"value":63},"Scan the solution to identify which projects need conversion and what complications to expect. Capture findings in ",{"type":43,"tag":65,"props":66,"children":68},"code",{"className":67},[],[69],{"type":49,"value":70},"assessment.md",{"type":49,"value":72},".",{"type":43,"tag":74,"props":75,"children":77},"h3",{"id":76},"how-to-identify-non-sdk-style-projects",[78],{"type":49,"value":79},"How to Identify Non-SDK-Style Projects",{"type":43,"tag":59,"props":81,"children":82},{},[83],{"type":49,"value":84},"A project is non-SDK-style if it has any of:",{"type":43,"tag":86,"props":87,"children":88},"ul",{},[89,111,124,135],{"type":43,"tag":90,"props":91,"children":92},"li",{},[93,95,101,103,109],{"type":49,"value":94},"No ",{"type":43,"tag":65,"props":96,"children":98},{"className":97},[],[99],{"type":49,"value":100},"Sdk",{"type":49,"value":102}," attribute on the ",{"type":43,"tag":65,"props":104,"children":106},{"className":105},[],[107],{"type":49,"value":108},"\u003CProject>",{"type":49,"value":110}," element",{"type":43,"tag":90,"props":112,"children":113},{},[114,116,122],{"type":49,"value":115},"Explicit file includes (",{"type":43,"tag":65,"props":117,"children":119},{"className":118},[],[120],{"type":49,"value":121},"\u003CCompile Include=\"...\">",{"type":49,"value":123}," for every source file)",{"type":43,"tag":90,"props":125,"children":126},{},[127,133],{"type":43,"tag":65,"props":128,"children":130},{"className":129},[],[131],{"type":49,"value":132},"packages.config",{"type":49,"value":134}," file in the project directory",{"type":43,"tag":90,"props":136,"children":137},{},[138,144],{"type":43,"tag":65,"props":139,"children":141},{"className":140},[],[142],{"type":49,"value":143},"\u003CImport Project=\"$(MSBuildToolsPath)\\Microsoft.CSharp.targets\" \u002F>",{"type":49,"value":145}," or similar explicit tool imports",{"type":43,"tag":74,"props":147,"children":149},{"id":148},"patterns-to-identify",[150],{"type":49,"value":151},"Patterns to Identify",{"type":43,"tag":59,"props":153,"children":154},{},[155],{"type":49,"value":156},"For each non-SDK-style project, record:",{"type":43,"tag":158,"props":159,"children":160},"table",{},[161,180],{"type":43,"tag":162,"props":163,"children":164},"thead",{},[165],{"type":43,"tag":166,"props":167,"children":168},"tr",{},[169,175],{"type":43,"tag":170,"props":171,"children":172},"th",{},[173],{"type":49,"value":174},"Pattern",{"type":43,"tag":170,"props":176,"children":177},{},[178],{"type":49,"value":179},"What to Record",{"type":43,"tag":181,"props":182,"children":183},"tbody",{},[184,207,249,270,289,310,354,374],{"type":43,"tag":166,"props":185,"children":186},{},[187,196],{"type":43,"tag":188,"props":189,"children":190},"td",{},[191],{"type":43,"tag":65,"props":192,"children":194},{"className":193},[],[195],{"type":49,"value":132},{"type":43,"tag":188,"props":197,"children":198},{},[199,201],{"type":49,"value":200},"Present? — must be migrated to ",{"type":43,"tag":65,"props":202,"children":204},{"className":203},[],[205],{"type":49,"value":206},"PackageReference",{"type":43,"tag":166,"props":208,"children":209},{},[210,244],{"type":43,"tag":188,"props":211,"children":212},{},[213,214,220,222,228,229,235,236,242],{"type":49,"value":115},{"type":43,"tag":65,"props":215,"children":217},{"className":216},[],[218],{"type":49,"value":219},"Compile",{"type":49,"value":221},", ",{"type":43,"tag":65,"props":223,"children":225},{"className":224},[],[226],{"type":49,"value":227},"Content",{"type":49,"value":221},{"type":43,"tag":65,"props":230,"children":232},{"className":231},[],[233],{"type":49,"value":234},"None",{"type":49,"value":221},{"type":43,"tag":65,"props":237,"children":239},{"className":238},[],[240],{"type":49,"value":241},"EmbeddedResource",{"type":49,"value":243},")",{"type":43,"tag":188,"props":245,"children":246},{},[247],{"type":49,"value":248},"Count — SDK-style uses globbing, these become implicit",{"type":43,"tag":166,"props":250,"children":251},{},[252,265],{"type":43,"tag":188,"props":253,"children":254},{},[255,257,263],{"type":49,"value":256},"Custom ",{"type":43,"tag":65,"props":258,"children":260},{"className":259},[],[261],{"type":49,"value":262},"Import",{"type":49,"value":264}," elements",{"type":43,"tag":188,"props":266,"children":267},{},[268],{"type":49,"value":269},"Which targets are imported — may need preservation",{"type":43,"tag":166,"props":271,"children":272},{},[273,284],{"type":43,"tag":188,"props":274,"children":275},{},[276,282],{"type":43,"tag":65,"props":277,"children":279},{"className":278},[],[280],{"type":49,"value":281},"AssemblyInfo.cs",{"type":49,"value":283}," with assembly attributes",{"type":43,"tag":188,"props":285,"children":286},{},[287],{"type":49,"value":288},"SDK-style auto-generates these — potential duplication",{"type":43,"tag":166,"props":290,"children":291},{},[292,305],{"type":43,"tag":188,"props":293,"children":294},{},[295,297,303],{"type":49,"value":296},"Multi-targeting (",{"type":43,"tag":65,"props":298,"children":300},{"className":299},[],[301],{"type":49,"value":302},"TargetFrameworks",{"type":49,"value":304}," plural)",{"type":43,"tag":188,"props":306,"children":307},{},[308],{"type":49,"value":309},"Already SDK-like, may be partial conversion",{"type":43,"tag":166,"props":311,"children":312},{},[313,333],{"type":43,"tag":188,"props":314,"children":315},{},[316,318,324,325,331],{"type":49,"value":317},"WPF\u002FWinForms markers (",{"type":43,"tag":65,"props":319,"children":321},{"className":320},[],[322],{"type":49,"value":323},"\u003CUseWPF>",{"type":49,"value":221},{"type":43,"tag":65,"props":326,"children":328},{"className":327},[],[329],{"type":49,"value":330},"\u003CUseWindowsForms>",{"type":49,"value":332},", XAML files)",{"type":43,"tag":188,"props":334,"children":335},{},[336,338,344,346,352],{"type":49,"value":337},"Needs ",{"type":43,"tag":65,"props":339,"children":341},{"className":340},[],[342],{"type":49,"value":343},"Microsoft.NET.Sdk.WindowsDesktop",{"type":49,"value":345}," or ",{"type":43,"tag":65,"props":347,"children":349},{"className":348},[],[350],{"type":49,"value":351},"net*-windows",{"type":49,"value":353}," TFM handling",{"type":43,"tag":166,"props":355,"children":356},{},[357,369],{"type":43,"tag":188,"props":358,"children":359},{},[360,362,368],{"type":49,"value":361},"Web project type GUIDs (",{"type":43,"tag":65,"props":363,"children":365},{"className":364},[],[366],{"type":49,"value":367},"{349c5851-...}",{"type":49,"value":243},{"type":43,"tag":188,"props":370,"children":371},{},[372],{"type":49,"value":373},"ASP.NET projects have special post-conversion considerations",{"type":43,"tag":166,"props":375,"children":376},{},[377,382],{"type":43,"tag":188,"props":378,"children":379},{},[380],{"type":49,"value":381},"Custom build events or targets",{"type":43,"tag":188,"props":383,"children":384},{},[385],{"type":49,"value":386},"Must be preserved through conversion",{"type":43,"tag":74,"props":388,"children":390},{"id":389},"risk-indicators",[391],{"type":49,"value":392},"Risk Indicators",{"type":43,"tag":59,"props":394,"children":395},{},[396],{"type":49,"value":397},"Flag these as higher complexity:",{"type":43,"tag":86,"props":399,"children":400},{},[401,420,430],{"type":43,"tag":90,"props":402,"children":403},{},[404,410,412,418],{"type":43,"tag":405,"props":406,"children":407},"strong",{},[408],{"type":49,"value":409},"ASP.NET Framework web projects",{"type":49,"value":411},": SDK-style conversion is technically possible, but .NET tooling (Visual Studio, ",{"type":43,"tag":65,"props":413,"children":415},{"className":414},[],[416],{"type":49,"value":417},"dotnet build",{"type":49,"value":419},") does not fully support SDK-style projects targeting ASP.NET Framework (non-Core). Custom MSBuild techniques or workarounds may be needed to maintain build and publish behavior. NuGet compatibility issues can also arise post-conversion",{"type":43,"tag":90,"props":421,"children":422},{},[423,428],{"type":43,"tag":405,"props":424,"children":425},{},[426],{"type":49,"value":427},"Heavy custom MSBuild logic",{"type":49,"value":429},": Custom targets, conditional imports, or property manipulation that might conflict with SDK defaults",{"type":43,"tag":90,"props":431,"children":432},{},[433,438],{"type":43,"tag":405,"props":434,"children":435},{},[436],{"type":49,"value":437},"Shared projects or linked files",{"type":49,"value":439},": File linking patterns change in SDK-style",{"type":43,"tag":74,"props":441,"children":443},{"id":442},"assessment-output",[444],{"type":49,"value":445},"Assessment Output",{"type":43,"tag":59,"props":447,"children":448},{},[449,451,456],{"type":49,"value":450},"Create ",{"type":43,"tag":65,"props":452,"children":454},{"className":453},[],[455],{"type":49,"value":70},{"type":49,"value":457}," in the workflow folder with this structure:",{"type":43,"tag":459,"props":460,"children":465},"pre",{"className":461,"code":462,"language":463,"meta":464,"style":464},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Assessment: SDK-style Conversion\n\n## Projects to Convert\n| Project | Path | packages.config | Custom Imports | Special Type | Risk |\n|---------|------|----------------|----------------|-------------|------|\n| MyApp.Core | src\u002FCore\u002FMyApp.Core.csproj | Yes | None | Class library | Low |\n| MyApp.Web | src\u002FWeb\u002FMyApp.Web.csproj | Yes | 2 custom targets | ASP.NET | High |\n\n## Already SDK-style (no action needed)\n- [list or \"none\"]\n\n## Baseline\n- Solution builds: Yes\u002FNo\n- Warning count: [number]\n\n## Key Findings\n- [Notable patterns, risks, or decisions needed]\n","markdown","",[466],{"type":43,"tag":65,"props":467,"children":468},{"__ignoreMap":464},[469,486,496,510,575,584,646,706,714,727,741,749,762,775,804,812,825],{"type":43,"tag":470,"props":471,"children":473},"span",{"class":472,"line":26},"line",[474,480],{"type":43,"tag":470,"props":475,"children":477},{"style":476},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[478],{"type":49,"value":479},"# ",{"type":43,"tag":470,"props":481,"children":483},{"style":482},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[484],{"type":49,"value":485},"Assessment: SDK-style Conversion\n",{"type":43,"tag":470,"props":487,"children":489},{"class":472,"line":488},2,[490],{"type":43,"tag":470,"props":491,"children":493},{"emptyLinePlaceholder":492},true,[494],{"type":49,"value":495},"\n",{"type":43,"tag":470,"props":497,"children":499},{"class":472,"line":498},3,[500,505],{"type":43,"tag":470,"props":501,"children":502},{"style":476},[503],{"type":49,"value":504},"## ",{"type":43,"tag":470,"props":506,"children":507},{"style":482},[508],{"type":49,"value":509},"Projects to Convert\n",{"type":43,"tag":470,"props":511,"children":513},{"class":472,"line":512},4,[514,519,525,529,534,538,543,547,552,556,561,565,570],{"type":43,"tag":470,"props":515,"children":516},{"style":476},[517],{"type":49,"value":518},"|",{"type":43,"tag":470,"props":520,"children":522},{"style":521},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[523],{"type":49,"value":524}," Project ",{"type":43,"tag":470,"props":526,"children":527},{"style":476},[528],{"type":49,"value":518},{"type":43,"tag":470,"props":530,"children":531},{"style":521},[532],{"type":49,"value":533}," Path ",{"type":43,"tag":470,"props":535,"children":536},{"style":476},[537],{"type":49,"value":518},{"type":43,"tag":470,"props":539,"children":540},{"style":521},[541],{"type":49,"value":542}," packages.config ",{"type":43,"tag":470,"props":544,"children":545},{"style":476},[546],{"type":49,"value":518},{"type":43,"tag":470,"props":548,"children":549},{"style":521},[550],{"type":49,"value":551}," Custom Imports ",{"type":43,"tag":470,"props":553,"children":554},{"style":476},[555],{"type":49,"value":518},{"type":43,"tag":470,"props":557,"children":558},{"style":521},[559],{"type":49,"value":560}," Special Type ",{"type":43,"tag":470,"props":562,"children":563},{"style":476},[564],{"type":49,"value":518},{"type":43,"tag":470,"props":566,"children":567},{"style":521},[568],{"type":49,"value":569}," Risk ",{"type":43,"tag":470,"props":571,"children":572},{"style":476},[573],{"type":49,"value":574},"|\n",{"type":43,"tag":470,"props":576,"children":578},{"class":472,"line":577},5,[579],{"type":43,"tag":470,"props":580,"children":581},{"style":476},[582],{"type":49,"value":583},"|---------|------|----------------|----------------|-------------|------|\n",{"type":43,"tag":470,"props":585,"children":587},{"class":472,"line":586},6,[588,592,597,601,606,610,615,619,624,628,633,637,642],{"type":43,"tag":470,"props":589,"children":590},{"style":476},[591],{"type":49,"value":518},{"type":43,"tag":470,"props":593,"children":594},{"style":521},[595],{"type":49,"value":596}," MyApp.Core ",{"type":43,"tag":470,"props":598,"children":599},{"style":476},[600],{"type":49,"value":518},{"type":43,"tag":470,"props":602,"children":603},{"style":521},[604],{"type":49,"value":605}," src\u002FCore\u002FMyApp.Core.csproj ",{"type":43,"tag":470,"props":607,"children":608},{"style":476},[609],{"type":49,"value":518},{"type":43,"tag":470,"props":611,"children":612},{"style":521},[613],{"type":49,"value":614}," Yes ",{"type":43,"tag":470,"props":616,"children":617},{"style":476},[618],{"type":49,"value":518},{"type":43,"tag":470,"props":620,"children":621},{"style":521},[622],{"type":49,"value":623}," None ",{"type":43,"tag":470,"props":625,"children":626},{"style":476},[627],{"type":49,"value":518},{"type":43,"tag":470,"props":629,"children":630},{"style":521},[631],{"type":49,"value":632}," Class library ",{"type":43,"tag":470,"props":634,"children":635},{"style":476},[636],{"type":49,"value":518},{"type":43,"tag":470,"props":638,"children":639},{"style":521},[640],{"type":49,"value":641}," Low ",{"type":43,"tag":470,"props":643,"children":644},{"style":476},[645],{"type":49,"value":574},{"type":43,"tag":470,"props":647,"children":648},{"class":472,"line":22},[649,653,658,662,667,671,675,679,684,688,693,697,702],{"type":43,"tag":470,"props":650,"children":651},{"style":476},[652],{"type":49,"value":518},{"type":43,"tag":470,"props":654,"children":655},{"style":521},[656],{"type":49,"value":657}," MyApp.Web ",{"type":43,"tag":470,"props":659,"children":660},{"style":476},[661],{"type":49,"value":518},{"type":43,"tag":470,"props":663,"children":664},{"style":521},[665],{"type":49,"value":666}," src\u002FWeb\u002FMyApp.Web.csproj ",{"type":43,"tag":470,"props":668,"children":669},{"style":476},[670],{"type":49,"value":518},{"type":43,"tag":470,"props":672,"children":673},{"style":521},[674],{"type":49,"value":614},{"type":43,"tag":470,"props":676,"children":677},{"style":476},[678],{"type":49,"value":518},{"type":43,"tag":470,"props":680,"children":681},{"style":521},[682],{"type":49,"value":683}," 2 custom targets ",{"type":43,"tag":470,"props":685,"children":686},{"style":476},[687],{"type":49,"value":518},{"type":43,"tag":470,"props":689,"children":690},{"style":521},[691],{"type":49,"value":692}," ASP.NET ",{"type":43,"tag":470,"props":694,"children":695},{"style":476},[696],{"type":49,"value":518},{"type":43,"tag":470,"props":698,"children":699},{"style":521},[700],{"type":49,"value":701}," High ",{"type":43,"tag":470,"props":703,"children":704},{"style":476},[705],{"type":49,"value":574},{"type":43,"tag":470,"props":707,"children":709},{"class":472,"line":708},8,[710],{"type":43,"tag":470,"props":711,"children":712},{"emptyLinePlaceholder":492},[713],{"type":49,"value":495},{"type":43,"tag":470,"props":715,"children":717},{"class":472,"line":716},9,[718,722],{"type":43,"tag":470,"props":719,"children":720},{"style":476},[721],{"type":49,"value":504},{"type":43,"tag":470,"props":723,"children":724},{"style":482},[725],{"type":49,"value":726},"Already SDK-style (no action needed)\n",{"type":43,"tag":470,"props":728,"children":730},{"class":472,"line":729},10,[731,736],{"type":43,"tag":470,"props":732,"children":733},{"style":476},[734],{"type":49,"value":735},"-",{"type":43,"tag":470,"props":737,"children":738},{"style":521},[739],{"type":49,"value":740}," [list or \"none\"]\n",{"type":43,"tag":470,"props":742,"children":744},{"class":472,"line":743},11,[745],{"type":43,"tag":470,"props":746,"children":747},{"emptyLinePlaceholder":492},[748],{"type":49,"value":495},{"type":43,"tag":470,"props":750,"children":752},{"class":472,"line":751},12,[753,757],{"type":43,"tag":470,"props":754,"children":755},{"style":476},[756],{"type":49,"value":504},{"type":43,"tag":470,"props":758,"children":759},{"style":482},[760],{"type":49,"value":761},"Baseline\n",{"type":43,"tag":470,"props":763,"children":765},{"class":472,"line":764},13,[766,770],{"type":43,"tag":470,"props":767,"children":768},{"style":476},[769],{"type":49,"value":735},{"type":43,"tag":470,"props":771,"children":772},{"style":521},[773],{"type":49,"value":774}," Solution builds: Yes\u002FNo\n",{"type":43,"tag":470,"props":776,"children":778},{"class":472,"line":777},14,[779,783,788,793,799],{"type":43,"tag":470,"props":780,"children":781},{"style":476},[782],{"type":49,"value":735},{"type":43,"tag":470,"props":784,"children":785},{"style":521},[786],{"type":49,"value":787}," Warning count: ",{"type":43,"tag":470,"props":789,"children":790},{"style":476},[791],{"type":49,"value":792},"[",{"type":43,"tag":470,"props":794,"children":796},{"style":795},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[797],{"type":49,"value":798},"number",{"type":43,"tag":470,"props":800,"children":801},{"style":476},[802],{"type":49,"value":803},"]\n",{"type":43,"tag":470,"props":805,"children":807},{"class":472,"line":806},15,[808],{"type":43,"tag":470,"props":809,"children":810},{"emptyLinePlaceholder":492},[811],{"type":49,"value":495},{"type":43,"tag":470,"props":813,"children":815},{"class":472,"line":814},16,[816,820],{"type":43,"tag":470,"props":817,"children":818},{"style":476},[819],{"type":49,"value":504},{"type":43,"tag":470,"props":821,"children":822},{"style":482},[823],{"type":49,"value":824},"Key Findings\n",{"type":43,"tag":470,"props":826,"children":828},{"class":472,"line":827},17,[829,833],{"type":43,"tag":470,"props":830,"children":831},{"style":476},[832],{"type":49,"value":735},{"type":43,"tag":470,"props":834,"children":835},{"style":521},[836],{"type":49,"value":837}," [Notable patterns, risks, or decisions needed]\n",{"type":43,"tag":52,"props":839,"children":841},{"id":840},"_2-planning",[842],{"type":49,"value":843},"2. Planning",{"type":43,"tag":59,"props":845,"children":846},{},[847,849,855],{"type":49,"value":848},"Based on the assessment, create ",{"type":43,"tag":65,"props":850,"children":852},{"className":851},[],[853],{"type":49,"value":854},"plan.md",{"type":49,"value":856}," with tasks ordered topologically (leaf dependencies first, so each project can build after conversion).",{"type":43,"tag":59,"props":858,"children":859},{},[860],{"type":49,"value":861},"For each task include:",{"type":43,"tag":86,"props":863,"children":864},{},[865,870,875],{"type":43,"tag":90,"props":866,"children":867},{},[868],{"type":49,"value":869},"Which projects or groups of projects are covered",{"type":43,"tag":90,"props":871,"children":872},{},[873],{"type":49,"value":874},"What complications are expected (packages.config, custom imports, special project types)",{"type":43,"tag":90,"props":876,"children":877},{},[878],{"type":49,"value":879},"Risk level and anything requiring user decision",{"type":43,"tag":59,"props":881,"children":882},{},[883,888],{"type":43,"tag":405,"props":884,"children":885},{},[886],{"type":49,"value":887},"Hard constraint",{"type":49,"value":889},": Do not change TargetFramework during conversion — that is a separate scenario (dotnet-version-upgrade).",{"type":43,"tag":52,"props":891,"children":893},{"id":892},"_3-execution",[894],{"type":49,"value":895},"3. Execution",{"type":43,"tag":59,"props":897,"children":898},{},[899,901,906],{"type":49,"value":900},"Execute the plan task by task. For any task that involves converting a project to SDK-style, apply the ",{"type":43,"tag":405,"props":902,"children":903},{},[904],{"type":49,"value":905},"converting-to-sdk-style",{"type":49,"value":907}," feature skill. It provides a dedicated conversion tool and a two-phase workflow (planning + execution with per-project checklist).",{"type":43,"tag":59,"props":909,"children":910},{},[911],{"type":49,"value":912},"Verify the solution builds after each project or group is converted — catching errors early prevents cascading failures in dependent projects.",{"type":43,"tag":52,"props":914,"children":916},{"id":915},"_4-validation",[917],{"type":49,"value":918},"4. Validation",{"type":43,"tag":86,"props":920,"children":921},{},[922,927,939,944],{"type":43,"tag":90,"props":923,"children":924},{},[925],{"type":49,"value":926},"Build the full solution — zero errors required (or no regressions from baseline)",{"type":43,"tag":90,"props":928,"children":929},{},[930,932,937],{"type":49,"value":931},"All ",{"type":43,"tag":65,"props":933,"children":935},{"className":934},[],[936],{"type":49,"value":132},{"type":49,"value":938}," files removed from converted projects",{"type":43,"tag":90,"props":940,"children":941},{},[942],{"type":49,"value":943},"No TargetFramework values changed",{"type":43,"tag":90,"props":945,"children":946},{},[947],{"type":49,"value":948},"If the project had tests, run them and report results",{"type":43,"tag":950,"props":951,"children":952},"style",{},[953],{"type":49,"value":954},"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":956,"total":1149},[957,979,998,1019,1034,1051,1062,1075,1090,1105,1124,1137],{"slug":958,"name":958,"fn":959,"description":960,"org":961,"tags":962,"stars":976,"repoUrl":977,"updatedAt":978},"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},[963,966,969,970,973],{"name":964,"slug":965,"type":15},"Engineering","engineering",{"name":967,"slug":968,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":971,"slug":972,"type":15},"Project Management","project-management",{"name":974,"slug":975,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":980,"name":980,"fn":981,"description":982,"org":983,"tags":984,"stars":995,"repoUrl":996,"updatedAt":997},"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},[985,986,989,992],{"name":17,"slug":18,"type":15},{"name":987,"slug":988,"type":15},"Agents","agents",{"name":990,"slug":991,"type":15},"Azure","azure",{"name":993,"slug":994,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":999,"name":999,"fn":1000,"description":1001,"org":1002,"tags":1003,"stars":995,"repoUrl":996,"updatedAt":1018},"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},[1004,1007,1008,1011,1014,1015],{"name":1005,"slug":1006,"type":15},"Analytics","analytics",{"name":990,"slug":991,"type":15},{"name":1009,"slug":1010,"type":15},"Data Analysis","data-analysis",{"name":1012,"slug":1013,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":1016,"slug":1017,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":1020,"name":1020,"fn":1021,"description":1022,"org":1023,"tags":1024,"stars":995,"repoUrl":996,"updatedAt":1033},"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},[1025,1028,1029,1030],{"name":1026,"slug":1027,"type":15},"AI Infrastructure","ai-infrastructure",{"name":990,"slug":991,"type":15},{"name":1012,"slug":1013,"type":15},{"name":1031,"slug":1032,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":1035,"name":1035,"fn":1036,"description":1037,"org":1038,"tags":1039,"stars":995,"repoUrl":996,"updatedAt":1050},"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},[1040,1041,1044,1045,1046,1049],{"name":990,"slug":991,"type":15},{"name":1042,"slug":1043,"type":15},"Compliance","compliance",{"name":993,"slug":994,"type":15},{"name":9,"slug":8,"type":15},{"name":1047,"slug":1048,"type":15},"Python","python",{"name":1031,"slug":1032,"type":15},"2026-07-18T05:14:23.017504",{"slug":1052,"name":1052,"fn":1053,"description":1054,"org":1055,"tags":1056,"stars":995,"repoUrl":996,"updatedAt":1061},"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},[1057,1058,1059,1060],{"name":1005,"slug":1006,"type":15},{"name":990,"slug":991,"type":15},{"name":993,"slug":994,"type":15},{"name":1047,"slug":1048,"type":15},"2026-07-31T05:54:29.068751",{"slug":1063,"name":1063,"fn":1064,"description":1065,"org":1066,"tags":1067,"stars":995,"repoUrl":996,"updatedAt":1074},"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},[1068,1071,1072,1073],{"name":1069,"slug":1070,"type":15},"API Development","api-development",{"name":990,"slug":991,"type":15},{"name":9,"slug":8,"type":15},{"name":1047,"slug":1048,"type":15},"2026-07-18T05:14:16.988376",{"slug":1076,"name":1076,"fn":1077,"description":1078,"org":1079,"tags":1080,"stars":995,"repoUrl":996,"updatedAt":1089},"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},[1081,1082,1085,1088],{"name":990,"slug":991,"type":15},{"name":1083,"slug":1084,"type":15},"Computer Vision","computer-vision",{"name":1086,"slug":1087,"type":15},"Images","images",{"name":1047,"slug":1048,"type":15},"2026-07-18T05:14:18.007737",{"slug":1091,"name":1091,"fn":1092,"description":1093,"org":1094,"tags":1095,"stars":995,"repoUrl":996,"updatedAt":1104},"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},[1096,1097,1100,1103],{"name":990,"slug":991,"type":15},{"name":1098,"slug":1099,"type":15},"Configuration","configuration",{"name":1101,"slug":1102,"type":15},"Feature Flags","feature-flags",{"name":1012,"slug":1013,"type":15},"2026-07-03T16:32:01.278468",{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":995,"repoUrl":996,"updatedAt":1123},"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},[1111,1114,1117,1120],{"name":1112,"slug":1113,"type":15},"Cosmos DB","cosmos-db",{"name":1115,"slug":1116,"type":15},"Database","database",{"name":1118,"slug":1119,"type":15},"NoSQL","nosql",{"name":1121,"slug":1122,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1125,"name":1125,"fn":1107,"description":1126,"org":1127,"tags":1128,"stars":995,"repoUrl":996,"updatedAt":1136},"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},[1129,1130,1131,1132,1133],{"name":1112,"slug":1113,"type":15},{"name":1115,"slug":1116,"type":15},{"name":9,"slug":8,"type":15},{"name":1118,"slug":1119,"type":15},{"name":1134,"slug":1135,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1138,"name":1138,"fn":1139,"description":1140,"org":1141,"tags":1142,"stars":995,"repoUrl":996,"updatedAt":1148},"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},[1143,1144,1145,1146,1147],{"name":990,"slug":991,"type":15},{"name":1112,"slug":1113,"type":15},{"name":1115,"slug":1116,"type":15},{"name":1012,"slug":1013,"type":15},{"name":1118,"slug":1119,"type":15},"2026-05-13T06:14:17.582229",267,{"items":1151,"total":1241},[1152,1162,1176,1193,1203,1218,1229],{"slug":1153,"name":1153,"fn":1154,"description":1155,"org":1156,"tags":1157,"stars":22,"repoUrl":23,"updatedAt":1161},"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},[1158,1159,1160],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},"2026-07-18T05:14:13.971821",{"slug":1163,"name":1163,"fn":1164,"description":1165,"org":1166,"tags":1167,"stars":22,"repoUrl":23,"updatedAt":1175},"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},[1168,1169,1172],{"name":17,"slug":18,"type":15},{"name":1170,"slug":1171,"type":15},"Windows","windows",{"name":1173,"slug":1174,"type":15},"WinUI","winui","2026-07-03T16:31:30.1325",{"slug":1177,"name":1177,"fn":1178,"description":1179,"org":1180,"tags":1181,"stars":22,"repoUrl":23,"updatedAt":1192},"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},[1182,1185,1188,1191],{"name":1183,"slug":1184,"type":15},"Design","design",{"name":1186,"slug":1187,"type":15},"Desktop","desktop",{"name":1189,"slug":1190,"type":15},"UI Components","ui-components",{"name":1170,"slug":1171,"type":15},"2026-07-18T05:14:12.982806",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":22,"repoUrl":23,"updatedAt":1202},"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},[1199,1200,1201],{"name":17,"slug":18,"type":15},{"name":1170,"slug":1171,"type":15},{"name":1173,"slug":1174,"type":15},"2026-07-18T05:14:11.951511",{"slug":1204,"name":1204,"fn":1205,"description":1206,"org":1207,"tags":1208,"stars":22,"repoUrl":23,"updatedAt":1217},"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},[1209,1210,1213,1216],{"name":17,"slug":18,"type":15},{"name":1211,"slug":1212,"type":15},"ASP.NET Core","asp-net-core",{"name":1214,"slug":1215,"type":15},"Backend","backend",{"name":20,"slug":21,"type":15},"2026-07-03T16:30:55.581898",{"slug":1219,"name":1219,"fn":1220,"description":1221,"org":1222,"tags":1223,"stars":22,"repoUrl":23,"updatedAt":1228},"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},[1224,1225,1226,1227],{"name":990,"slug":991,"type":15},{"name":1112,"slug":1113,"type":15},{"name":1115,"slug":1116,"type":15},{"name":20,"slug":21,"type":15},"2026-07-03T16:31:21.932144",{"slug":1230,"name":1230,"fn":1231,"description":1232,"org":1233,"tags":1234,"stars":22,"repoUrl":23,"updatedAt":1240},"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},[1235,1237,1238,1239],{"name":1211,"slug":1236,"type":15},"aspnet-core",{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},"2026-07-07T06:54:34.226435",19]