[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-migrating-powershell-sdk":3,"mdc-qhcu4f-key":36,"related-org-microsoft-migrating-powershell-sdk":829,"related-repo-microsoft-migrating-powershell-sdk":1024},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"migrating-powershell-sdk","migrate PowerShell SDK to .NET","Migrates the legacy System.Management.Automation (PowerShell SDK) references from obsolete .NET Framework (Windows PowerShell 5.1) to modern .NET (PowerShell 7+). Replaces Windows PowerShell Reference Assemblies or GAC references with the cross-platform System.Management.Automation NuGet package. Use ONLY when the legacy Windows PowerShell SDK has been flagged as obsolete or deprecated and must be replaced — not for version-bump scenarios where existing PowerShell packages are still supported. Triggers for \"migrate PowerShell SDK\", \"upgrade cmdlet project\", \"PowerShellStandard.Library\", project files (.csproj, .vbproj, .fsproj) with PowerShell references, and .psd1 module manifests.\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,22,23],{"name":13,"slug":14,"type":15},"Modernization","modernization","tag",{"name":17,"slug":18,"type":15},".NET","net",{"name":20,"slug":21,"type":15},"PowerShell","powershell",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"Migration","migration",7,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins","2026-07-07T06:53:00.760153",null,1,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fupgrade-agent\u002Fextenders\u002Fupgrade-dotnet\u002Fupgrade\u002Fskills\u002Flazy\u002Flibraries\u002Fmigrating-powershell-sdk","---\r\nname: migrating-powershell-sdk\r\ndescription: >\r\n  Migrates the legacy System.Management.Automation (PowerShell SDK) references from obsolete\r\n  .NET Framework (Windows PowerShell 5.1) to modern .NET (PowerShell 7+). Replaces Windows\r\n  PowerShell Reference Assemblies or GAC references with the cross-platform\r\n  System.Management.Automation NuGet package. Use ONLY when the legacy Windows PowerShell SDK\r\n  has been flagged as obsolete or deprecated and must be replaced — not for version-bump\r\n  scenarios where existing PowerShell packages are still supported. Triggers for \"migrate\r\n  PowerShell SDK\", \"upgrade cmdlet project\", \"PowerShellStandard.Library\", project files\r\n  (.csproj, .vbproj, .fsproj) with PowerShell references, and .psd1 module manifests.\r\nmetadata:\r\n  discovery: lazy\r\n  traits: .NET|CSharp|VisualBasic|DotNetCore\r\n---\r\n\r\n# System.Management.Automation Migration\r\n\r\n## Overview\r\n\r\nMigrate PowerShell cmdlet projects from .NET Framework (Windows PowerShell 5.1) to modern .NET (.NET 6+). The core change is replacing the Windows PowerShell reference assembly with the cross-platform `System.Management.Automation` NuGet package. Most code remains unchanged because the SDK types (`PSCmdlet`, `Cmdlet`, `PSObject`, attributes) are identical across both packages.\r\n\r\n## Package Reference Changes\r\n\r\n### Old References (Remove)\r\n\r\n```xml\r\n\u003C!-- GAC\u002Ffile reference -->\r\n\u003CReference Include=\"System.Management.Automation\" \u002F>\r\n\r\n\u003C!-- Windows PowerShell ref assemblies NuGet -->\r\n\u003CPackageReference Include=\"Microsoft.PowerShell.5.ReferenceAssemblies\" Version=\"1.1.0\" \u002F>\r\n```\r\n\r\n### New Reference (Add)\r\n\r\n```xml\r\n\u003C!-- Cross-platform NuGet package; use version matching target framework -->\r\n\u003CPackageReference Include=\"System.Management.Automation\" Version=\"{version-for-target-framework}\" \u002F>\r\n\r\n\u003C!-- OR for dual-targeting Windows PowerShell 5.1 + PowerShell 7 -->\r\n\u003CPackageReference Include=\"PowerShellStandard.Library\" Version=\"{stable-version}\" \u002F>\r\n```\r\n\r\n### Choosing the Right Package\r\n\r\n| Package | When to Use |\r\n|---------|-------------|\r\n| `System.Management.Automation` | Targeting a specific PowerShell 7.x version. Provides full API surface. |\r\n| `PowerShellStandard.Library` | Must support both Windows PowerShell 5.1 and PowerShell 7+ from a single binary. Targets `netstandard2.0`. |\r\n\r\nUse tools or [PowerShell releases](https:\u002F\u002Fgithub.com\u002FPowerShell\u002FPowerShell\u002Freleases) to find the latest stable package version for the target framework.\r\n\r\n## Workflow\r\n\r\n```\r\nMigration Progress:\r\n- [ ] Step 1: Detect PowerShell SDK usage\r\n- [ ] Step 2: Determine target framework and package version\r\n- [ ] Step 3: Update project file references\r\n- [ ] Step 4: Handle API differences\r\n- [ ] Step 5: Update module manifest\r\n- [ ] Step 6: Build and verify\r\n```\r\n\r\n### Step 1: Detect PowerShell SDK Usage\r\n\r\nScan the project for:\r\n- `using System.Management.Automation;` statements\r\n- Types inheriting from `Cmdlet` or `PSCmdlet`\r\n- `[Cmdlet(...)]` attributes\r\n- Reference type: GAC reference, `Microsoft.PowerShell.5.ReferenceAssemblies` NuGet, or direct file reference\r\n\r\nIf the project already uses the cross-platform NuGet package, no migration is needed.\r\n\r\n### Step 2: Determine Target Framework and Package Version\r\n\r\n1. Check if the user specified a target framework (e.g., \"migrate to net10.0\")\r\n2. Otherwise, read `\u003CTargetFramework>` or `\u003CTargetFrameworks>` from the project file or `Directory.Build.props`\r\n3. Look up the best `System.Management.Automation` package version for that framework\r\n4. If the project must support both Windows PowerShell 5.1 and PowerShell 7+, choose `PowerShellStandard.Library` instead — it targets `netstandard2.0` so a single binary works in both hosts\r\n\r\n### Step 3: Update Project File References\r\n\r\nRemove old references and add the new package reference (see \"Package Reference Changes\" above).\r\n\r\n### Step 4: Handle API Differences\r\n\r\nMost SDK types are identical, but these APIs changed:\r\n\r\n| Windows PowerShell | PowerShell 7+ | Action |\r\n|-------------------|---------------|--------|\r\n| `PSSnapIn` classes | Not supported | Convert to module manifests (`.psd1`). Snap-ins were deprecated because modules provide better isolation and discoverability. |\r\n| `PSHost.NotifyBeginApplication` | May not be implemented | Guard with try\u002Fcatch or remove the call |\r\n| WinRM remoting APIs | Limited on non-Windows | Use SSH remoting for cross-platform scenarios |\r\n\r\n### Step 5: Update Module Manifest (If Applicable)\r\n\r\nIf the project produces a PowerShell module, update the `.psd1`:\r\n\r\n```powershell\r\n@{\r\n    PowerShellVersion     = '7.0'\r\n    CompatiblePSEditions  = @('Core')\r\n    ProcessorArchitecture = 'None'\r\n}\r\n```\r\n\r\n### Step 6: Build and Verify\r\n\r\n1. Build the module:\r\n   ```\r\n   dotnet build\r\n   ```\r\n2. Import and check cmdlet registration:\r\n   ```powershell\r\n   Import-Module .\u002Fbin\u002FDebug\u002F{target-framework}\u002FMyModule.dll\r\n   Get-Command -Module MyModule\r\n   ```\r\n3. Run cmdlet smoke tests to verify parameter binding and pipeline operations\r\n\r\n## Troubleshooting\r\n\r\n### Cmdlets Not Found After Import\r\n\r\nEnsure the assembly contains `[Cmdlet]` attributes and the namespace is correctly exported in the module manifest.\r\n\r\n### Type Conflicts with Other Modules\r\n\r\nAnother loaded module may bundle a different `System.Management.Automation` version. Use assembly load contexts or module isolation boundaries to resolve.\r\n\r\n### Missing APIs at Runtime\r\n\r\nSome Windows PowerShell APIs have no PowerShell 7 equivalent. Check the [PowerShell 7 SDK docs](https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fpowershell\u002Fscripting\u002Fdev-cross-plat\u002Fchoosing-the-right-nuget-package) for alternatives.\r\n\r\n### Snap-in Code\r\n\r\nPowerShell 7 does not support snap-ins. Remove `PSSnapIn`-derived classes and replace with:\r\n- Module manifests (`.psd1`) for metadata\r\n- `RequiredModules` in the manifest for dependency management\r\n",{"data":37,"body":41},{"name":4,"description":6,"metadata":38},{"discovery":39,"traits":40},"lazy",".NET|CSharp|VisualBasic|DotNetCore",{"type":42,"children":43},"root",[44,53,60,98,104,111,169,175,221,227,296,312,318,328,334,339,396,401,407,473,479,484,490,495,594,600,612,660,666,716,722,728,741,747,759,765,779,785,797,823],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"systemmanagementautomation-migration",[50],{"type":51,"value":52},"text","System.Management.Automation Migration",{"type":45,"tag":54,"props":55,"children":57},"h2",{"id":56},"overview",[58],{"type":51,"value":59},"Overview",{"type":45,"tag":61,"props":62,"children":63},"p",{},[64,66,73,75,81,83,89,90,96],{"type":51,"value":65},"Migrate PowerShell cmdlet projects from .NET Framework (Windows PowerShell 5.1) to modern .NET (.NET 6+). The core change is replacing the Windows PowerShell reference assembly with the cross-platform ",{"type":45,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":51,"value":72},"System.Management.Automation",{"type":51,"value":74}," NuGet package. Most code remains unchanged because the SDK types (",{"type":45,"tag":67,"props":76,"children":78},{"className":77},[],[79],{"type":51,"value":80},"PSCmdlet",{"type":51,"value":82},", ",{"type":45,"tag":67,"props":84,"children":86},{"className":85},[],[87],{"type":51,"value":88},"Cmdlet",{"type":51,"value":82},{"type":45,"tag":67,"props":91,"children":93},{"className":92},[],[94],{"type":51,"value":95},"PSObject",{"type":51,"value":97},", attributes) are identical across both packages.",{"type":45,"tag":54,"props":99,"children":101},{"id":100},"package-reference-changes",[102],{"type":51,"value":103},"Package Reference Changes",{"type":45,"tag":105,"props":106,"children":108},"h3",{"id":107},"old-references-remove",[109],{"type":51,"value":110},"Old References (Remove)",{"type":45,"tag":112,"props":113,"children":118},"pre",{"className":114,"code":115,"language":116,"meta":117,"style":117},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003C!-- GAC\u002Ffile reference -->\n\u003CReference Include=\"System.Management.Automation\" \u002F>\n\n\u003C!-- Windows PowerShell ref assemblies NuGet -->\n\u003CPackageReference Include=\"Microsoft.PowerShell.5.ReferenceAssemblies\" Version=\"1.1.0\" \u002F>\n","xml","",[119],{"type":45,"tag":67,"props":120,"children":121},{"__ignoreMap":117},[122,132,141,151,160],{"type":45,"tag":123,"props":124,"children":126},"span",{"class":125,"line":30},"line",[127],{"type":45,"tag":123,"props":128,"children":129},{},[130],{"type":51,"value":131},"\u003C!-- GAC\u002Ffile reference -->\n",{"type":45,"tag":123,"props":133,"children":135},{"class":125,"line":134},2,[136],{"type":45,"tag":123,"props":137,"children":138},{},[139],{"type":51,"value":140},"\u003CReference Include=\"System.Management.Automation\" \u002F>\n",{"type":45,"tag":123,"props":142,"children":144},{"class":125,"line":143},3,[145],{"type":45,"tag":123,"props":146,"children":148},{"emptyLinePlaceholder":147},true,[149],{"type":51,"value":150},"\n",{"type":45,"tag":123,"props":152,"children":154},{"class":125,"line":153},4,[155],{"type":45,"tag":123,"props":156,"children":157},{},[158],{"type":51,"value":159},"\u003C!-- Windows PowerShell ref assemblies NuGet -->\n",{"type":45,"tag":123,"props":161,"children":163},{"class":125,"line":162},5,[164],{"type":45,"tag":123,"props":165,"children":166},{},[167],{"type":51,"value":168},"\u003CPackageReference Include=\"Microsoft.PowerShell.5.ReferenceAssemblies\" Version=\"1.1.0\" \u002F>\n",{"type":45,"tag":105,"props":170,"children":172},{"id":171},"new-reference-add",[173],{"type":51,"value":174},"New Reference (Add)",{"type":45,"tag":112,"props":176,"children":178},{"className":114,"code":177,"language":116,"meta":117,"style":117},"\u003C!-- Cross-platform NuGet package; use version matching target framework -->\n\u003CPackageReference Include=\"System.Management.Automation\" Version=\"{version-for-target-framework}\" \u002F>\n\n\u003C!-- OR for dual-targeting Windows PowerShell 5.1 + PowerShell 7 -->\n\u003CPackageReference Include=\"PowerShellStandard.Library\" Version=\"{stable-version}\" \u002F>\n",[179],{"type":45,"tag":67,"props":180,"children":181},{"__ignoreMap":117},[182,190,198,205,213],{"type":45,"tag":123,"props":183,"children":184},{"class":125,"line":30},[185],{"type":45,"tag":123,"props":186,"children":187},{},[188],{"type":51,"value":189},"\u003C!-- Cross-platform NuGet package; use version matching target framework -->\n",{"type":45,"tag":123,"props":191,"children":192},{"class":125,"line":134},[193],{"type":45,"tag":123,"props":194,"children":195},{},[196],{"type":51,"value":197},"\u003CPackageReference Include=\"System.Management.Automation\" Version=\"{version-for-target-framework}\" \u002F>\n",{"type":45,"tag":123,"props":199,"children":200},{"class":125,"line":143},[201],{"type":45,"tag":123,"props":202,"children":203},{"emptyLinePlaceholder":147},[204],{"type":51,"value":150},{"type":45,"tag":123,"props":206,"children":207},{"class":125,"line":153},[208],{"type":45,"tag":123,"props":209,"children":210},{},[211],{"type":51,"value":212},"\u003C!-- OR for dual-targeting Windows PowerShell 5.1 + PowerShell 7 -->\n",{"type":45,"tag":123,"props":214,"children":215},{"class":125,"line":162},[216],{"type":45,"tag":123,"props":217,"children":218},{},[219],{"type":51,"value":220},"\u003CPackageReference Include=\"PowerShellStandard.Library\" Version=\"{stable-version}\" \u002F>\n",{"type":45,"tag":105,"props":222,"children":224},{"id":223},"choosing-the-right-package",[225],{"type":51,"value":226},"Choosing the Right Package",{"type":45,"tag":228,"props":229,"children":230},"table",{},[231,250],{"type":45,"tag":232,"props":233,"children":234},"thead",{},[235],{"type":45,"tag":236,"props":237,"children":238},"tr",{},[239,245],{"type":45,"tag":240,"props":241,"children":242},"th",{},[243],{"type":51,"value":244},"Package",{"type":45,"tag":240,"props":246,"children":247},{},[248],{"type":51,"value":249},"When to Use",{"type":45,"tag":251,"props":252,"children":253},"tbody",{},[254,271],{"type":45,"tag":236,"props":255,"children":256},{},[257,266],{"type":45,"tag":258,"props":259,"children":260},"td",{},[261],{"type":45,"tag":67,"props":262,"children":264},{"className":263},[],[265],{"type":51,"value":72},{"type":45,"tag":258,"props":267,"children":268},{},[269],{"type":51,"value":270},"Targeting a specific PowerShell 7.x version. Provides full API surface.",{"type":45,"tag":236,"props":272,"children":273},{},[274,283],{"type":45,"tag":258,"props":275,"children":276},{},[277],{"type":45,"tag":67,"props":278,"children":280},{"className":279},[],[281],{"type":51,"value":282},"PowerShellStandard.Library",{"type":45,"tag":258,"props":284,"children":285},{},[286,288,294],{"type":51,"value":287},"Must support both Windows PowerShell 5.1 and PowerShell 7+ from a single binary. Targets ",{"type":45,"tag":67,"props":289,"children":291},{"className":290},[],[292],{"type":51,"value":293},"netstandard2.0",{"type":51,"value":295},".",{"type":45,"tag":61,"props":297,"children":298},{},[299,301,310],{"type":51,"value":300},"Use tools or ",{"type":45,"tag":302,"props":303,"children":307},"a",{"href":304,"rel":305},"https:\u002F\u002Fgithub.com\u002FPowerShell\u002FPowerShell\u002Freleases",[306],"nofollow",[308],{"type":51,"value":309},"PowerShell releases",{"type":51,"value":311}," to find the latest stable package version for the target framework.",{"type":45,"tag":54,"props":313,"children":315},{"id":314},"workflow",[316],{"type":51,"value":317},"Workflow",{"type":45,"tag":112,"props":319,"children":323},{"className":320,"code":322,"language":51},[321],"language-text","Migration Progress:\n- [ ] Step 1: Detect PowerShell SDK usage\n- [ ] Step 2: Determine target framework and package version\n- [ ] Step 3: Update project file references\n- [ ] Step 4: Handle API differences\n- [ ] Step 5: Update module manifest\n- [ ] Step 6: Build and verify\n",[324],{"type":45,"tag":67,"props":325,"children":326},{"__ignoreMap":117},[327],{"type":51,"value":322},{"type":45,"tag":105,"props":329,"children":331},{"id":330},"step-1-detect-powershell-sdk-usage",[332],{"type":51,"value":333},"Step 1: Detect PowerShell SDK Usage",{"type":45,"tag":61,"props":335,"children":336},{},[337],{"type":51,"value":338},"Scan the project for:",{"type":45,"tag":340,"props":341,"children":342},"ul",{},[343,355,372,383],{"type":45,"tag":344,"props":345,"children":346},"li",{},[347,353],{"type":45,"tag":67,"props":348,"children":350},{"className":349},[],[351],{"type":51,"value":352},"using System.Management.Automation;",{"type":51,"value":354}," statements",{"type":45,"tag":344,"props":356,"children":357},{},[358,360,365,367],{"type":51,"value":359},"Types inheriting from ",{"type":45,"tag":67,"props":361,"children":363},{"className":362},[],[364],{"type":51,"value":88},{"type":51,"value":366}," or ",{"type":45,"tag":67,"props":368,"children":370},{"className":369},[],[371],{"type":51,"value":80},{"type":45,"tag":344,"props":373,"children":374},{},[375,381],{"type":45,"tag":67,"props":376,"children":378},{"className":377},[],[379],{"type":51,"value":380},"[Cmdlet(...)]",{"type":51,"value":382}," attributes",{"type":45,"tag":344,"props":384,"children":385},{},[386,388,394],{"type":51,"value":387},"Reference type: GAC reference, ",{"type":45,"tag":67,"props":389,"children":391},{"className":390},[],[392],{"type":51,"value":393},"Microsoft.PowerShell.5.ReferenceAssemblies",{"type":51,"value":395}," NuGet, or direct file reference",{"type":45,"tag":61,"props":397,"children":398},{},[399],{"type":51,"value":400},"If the project already uses the cross-platform NuGet package, no migration is needed.",{"type":45,"tag":105,"props":402,"children":404},{"id":403},"step-2-determine-target-framework-and-package-version",[405],{"type":51,"value":406},"Step 2: Determine Target Framework and Package Version",{"type":45,"tag":408,"props":409,"children":410},"ol",{},[411,416,442,454],{"type":45,"tag":344,"props":412,"children":413},{},[414],{"type":51,"value":415},"Check if the user specified a target framework (e.g., \"migrate to net10.0\")",{"type":45,"tag":344,"props":417,"children":418},{},[419,421,427,428,434,436],{"type":51,"value":420},"Otherwise, read ",{"type":45,"tag":67,"props":422,"children":424},{"className":423},[],[425],{"type":51,"value":426},"\u003CTargetFramework>",{"type":51,"value":366},{"type":45,"tag":67,"props":429,"children":431},{"className":430},[],[432],{"type":51,"value":433},"\u003CTargetFrameworks>",{"type":51,"value":435}," from the project file or ",{"type":45,"tag":67,"props":437,"children":439},{"className":438},[],[440],{"type":51,"value":441},"Directory.Build.props",{"type":45,"tag":344,"props":443,"children":444},{},[445,447,452],{"type":51,"value":446},"Look up the best ",{"type":45,"tag":67,"props":448,"children":450},{"className":449},[],[451],{"type":51,"value":72},{"type":51,"value":453}," package version for that framework",{"type":45,"tag":344,"props":455,"children":456},{},[457,459,464,466,471],{"type":51,"value":458},"If the project must support both Windows PowerShell 5.1 and PowerShell 7+, choose ",{"type":45,"tag":67,"props":460,"children":462},{"className":461},[],[463],{"type":51,"value":282},{"type":51,"value":465}," instead — it targets ",{"type":45,"tag":67,"props":467,"children":469},{"className":468},[],[470],{"type":51,"value":293},{"type":51,"value":472}," so a single binary works in both hosts",{"type":45,"tag":105,"props":474,"children":476},{"id":475},"step-3-update-project-file-references",[477],{"type":51,"value":478},"Step 3: Update Project File References",{"type":45,"tag":61,"props":480,"children":481},{},[482],{"type":51,"value":483},"Remove old references and add the new package reference (see \"Package Reference Changes\" above).",{"type":45,"tag":105,"props":485,"children":487},{"id":486},"step-4-handle-api-differences",[488],{"type":51,"value":489},"Step 4: Handle API Differences",{"type":45,"tag":61,"props":491,"children":492},{},[493],{"type":51,"value":494},"Most SDK types are identical, but these APIs changed:",{"type":45,"tag":228,"props":496,"children":497},{},[498,519],{"type":45,"tag":232,"props":499,"children":500},{},[501],{"type":45,"tag":236,"props":502,"children":503},{},[504,509,514],{"type":45,"tag":240,"props":505,"children":506},{},[507],{"type":51,"value":508},"Windows PowerShell",{"type":45,"tag":240,"props":510,"children":511},{},[512],{"type":51,"value":513},"PowerShell 7+",{"type":45,"tag":240,"props":515,"children":516},{},[517],{"type":51,"value":518},"Action",{"type":45,"tag":251,"props":520,"children":521},{},[522,554,576],{"type":45,"tag":236,"props":523,"children":524},{},[525,536,541],{"type":45,"tag":258,"props":526,"children":527},{},[528,534],{"type":45,"tag":67,"props":529,"children":531},{"className":530},[],[532],{"type":51,"value":533},"PSSnapIn",{"type":51,"value":535}," classes",{"type":45,"tag":258,"props":537,"children":538},{},[539],{"type":51,"value":540},"Not supported",{"type":45,"tag":258,"props":542,"children":543},{},[544,546,552],{"type":51,"value":545},"Convert to module manifests (",{"type":45,"tag":67,"props":547,"children":549},{"className":548},[],[550],{"type":51,"value":551},".psd1",{"type":51,"value":553},"). Snap-ins were deprecated because modules provide better isolation and discoverability.",{"type":45,"tag":236,"props":555,"children":556},{},[557,566,571],{"type":45,"tag":258,"props":558,"children":559},{},[560],{"type":45,"tag":67,"props":561,"children":563},{"className":562},[],[564],{"type":51,"value":565},"PSHost.NotifyBeginApplication",{"type":45,"tag":258,"props":567,"children":568},{},[569],{"type":51,"value":570},"May not be implemented",{"type":45,"tag":258,"props":572,"children":573},{},[574],{"type":51,"value":575},"Guard with try\u002Fcatch or remove the call",{"type":45,"tag":236,"props":577,"children":578},{},[579,584,589],{"type":45,"tag":258,"props":580,"children":581},{},[582],{"type":51,"value":583},"WinRM remoting APIs",{"type":45,"tag":258,"props":585,"children":586},{},[587],{"type":51,"value":588},"Limited on non-Windows",{"type":45,"tag":258,"props":590,"children":591},{},[592],{"type":51,"value":593},"Use SSH remoting for cross-platform scenarios",{"type":45,"tag":105,"props":595,"children":597},{"id":596},"step-5-update-module-manifest-if-applicable",[598],{"type":51,"value":599},"Step 5: Update Module Manifest (If Applicable)",{"type":45,"tag":61,"props":601,"children":602},{},[603,605,610],{"type":51,"value":604},"If the project produces a PowerShell module, update the ",{"type":45,"tag":67,"props":606,"children":608},{"className":607},[],[609],{"type":51,"value":551},{"type":51,"value":611},":",{"type":45,"tag":112,"props":613,"children":616},{"className":614,"code":615,"language":21,"meta":117,"style":117},"language-powershell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","@{\n    PowerShellVersion     = '7.0'\n    CompatiblePSEditions  = @('Core')\n    ProcessorArchitecture = 'None'\n}\n",[617],{"type":45,"tag":67,"props":618,"children":619},{"__ignoreMap":117},[620,628,636,644,652],{"type":45,"tag":123,"props":621,"children":622},{"class":125,"line":30},[623],{"type":45,"tag":123,"props":624,"children":625},{},[626],{"type":51,"value":627},"@{\n",{"type":45,"tag":123,"props":629,"children":630},{"class":125,"line":134},[631],{"type":45,"tag":123,"props":632,"children":633},{},[634],{"type":51,"value":635},"    PowerShellVersion     = '7.0'\n",{"type":45,"tag":123,"props":637,"children":638},{"class":125,"line":143},[639],{"type":45,"tag":123,"props":640,"children":641},{},[642],{"type":51,"value":643},"    CompatiblePSEditions  = @('Core')\n",{"type":45,"tag":123,"props":645,"children":646},{"class":125,"line":153},[647],{"type":45,"tag":123,"props":648,"children":649},{},[650],{"type":51,"value":651},"    ProcessorArchitecture = 'None'\n",{"type":45,"tag":123,"props":653,"children":654},{"class":125,"line":162},[655],{"type":45,"tag":123,"props":656,"children":657},{},[658],{"type":51,"value":659},"}\n",{"type":45,"tag":105,"props":661,"children":663},{"id":662},"step-6-build-and-verify",[664],{"type":51,"value":665},"Step 6: Build and Verify",{"type":45,"tag":408,"props":667,"children":668},{},[669,683,711],{"type":45,"tag":344,"props":670,"children":671},{},[672,674],{"type":51,"value":673},"Build the module:\n",{"type":45,"tag":112,"props":675,"children":678},{"className":676,"code":677,"language":51},[321],"dotnet build\n",[679],{"type":45,"tag":67,"props":680,"children":681},{"__ignoreMap":117},[682],{"type":51,"value":677},{"type":45,"tag":344,"props":684,"children":685},{},[686,688],{"type":51,"value":687},"Import and check cmdlet registration:\n",{"type":45,"tag":112,"props":689,"children":691},{"className":614,"code":690,"language":21,"meta":117,"style":117},"Import-Module .\u002Fbin\u002FDebug\u002F{target-framework}\u002FMyModule.dll\nGet-Command -Module MyModule\n",[692],{"type":45,"tag":67,"props":693,"children":694},{"__ignoreMap":117},[695,703],{"type":45,"tag":123,"props":696,"children":697},{"class":125,"line":30},[698],{"type":45,"tag":123,"props":699,"children":700},{},[701],{"type":51,"value":702},"Import-Module .\u002Fbin\u002FDebug\u002F{target-framework}\u002FMyModule.dll\n",{"type":45,"tag":123,"props":704,"children":705},{"class":125,"line":134},[706],{"type":45,"tag":123,"props":707,"children":708},{},[709],{"type":51,"value":710},"Get-Command -Module MyModule\n",{"type":45,"tag":344,"props":712,"children":713},{},[714],{"type":51,"value":715},"Run cmdlet smoke tests to verify parameter binding and pipeline operations",{"type":45,"tag":54,"props":717,"children":719},{"id":718},"troubleshooting",[720],{"type":51,"value":721},"Troubleshooting",{"type":45,"tag":105,"props":723,"children":725},{"id":724},"cmdlets-not-found-after-import",[726],{"type":51,"value":727},"Cmdlets Not Found After Import",{"type":45,"tag":61,"props":729,"children":730},{},[731,733,739],{"type":51,"value":732},"Ensure the assembly contains ",{"type":45,"tag":67,"props":734,"children":736},{"className":735},[],[737],{"type":51,"value":738},"[Cmdlet]",{"type":51,"value":740}," attributes and the namespace is correctly exported in the module manifest.",{"type":45,"tag":105,"props":742,"children":744},{"id":743},"type-conflicts-with-other-modules",[745],{"type":51,"value":746},"Type Conflicts with Other Modules",{"type":45,"tag":61,"props":748,"children":749},{},[750,752,757],{"type":51,"value":751},"Another loaded module may bundle a different ",{"type":45,"tag":67,"props":753,"children":755},{"className":754},[],[756],{"type":51,"value":72},{"type":51,"value":758}," version. Use assembly load contexts or module isolation boundaries to resolve.",{"type":45,"tag":105,"props":760,"children":762},{"id":761},"missing-apis-at-runtime",[763],{"type":51,"value":764},"Missing APIs at Runtime",{"type":45,"tag":61,"props":766,"children":767},{},[768,770,777],{"type":51,"value":769},"Some Windows PowerShell APIs have no PowerShell 7 equivalent. Check the ",{"type":45,"tag":302,"props":771,"children":774},{"href":772,"rel":773},"https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fpowershell\u002Fscripting\u002Fdev-cross-plat\u002Fchoosing-the-right-nuget-package",[306],[775],{"type":51,"value":776},"PowerShell 7 SDK docs",{"type":51,"value":778}," for alternatives.",{"type":45,"tag":105,"props":780,"children":782},{"id":781},"snap-in-code",[783],{"type":51,"value":784},"Snap-in Code",{"type":45,"tag":61,"props":786,"children":787},{},[788,790,795],{"type":51,"value":789},"PowerShell 7 does not support snap-ins. Remove ",{"type":45,"tag":67,"props":791,"children":793},{"className":792},[],[794],{"type":51,"value":533},{"type":51,"value":796},"-derived classes and replace with:",{"type":45,"tag":340,"props":798,"children":799},{},[800,812],{"type":45,"tag":344,"props":801,"children":802},{},[803,805,810],{"type":51,"value":804},"Module manifests (",{"type":45,"tag":67,"props":806,"children":808},{"className":807},[],[809],{"type":51,"value":551},{"type":51,"value":811},") for metadata",{"type":45,"tag":344,"props":813,"children":814},{},[815,821],{"type":45,"tag":67,"props":816,"children":818},{"className":817},[],[819],{"type":51,"value":820},"RequiredModules",{"type":51,"value":822}," in the manifest for dependency management",{"type":45,"tag":824,"props":825,"children":826},"style",{},[827],{"type":51,"value":828},"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":830,"total":1023},[831,853,872,893,908,925,936,949,964,979,998,1011],{"slug":832,"name":832,"fn":833,"description":834,"org":835,"tags":836,"stars":850,"repoUrl":851,"updatedAt":852},"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},[837,840,843,844,847],{"name":838,"slug":839,"type":15},"Engineering","engineering",{"name":841,"slug":842,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":845,"slug":846,"type":15},"Project Management","project-management",{"name":848,"slug":849,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":854,"name":854,"fn":855,"description":856,"org":857,"tags":858,"stars":869,"repoUrl":870,"updatedAt":871},"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},[859,860,863,866],{"name":17,"slug":18,"type":15},{"name":861,"slug":862,"type":15},"Agents","agents",{"name":864,"slug":865,"type":15},"Azure","azure",{"name":867,"slug":868,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":873,"name":873,"fn":874,"description":875,"org":876,"tags":877,"stars":869,"repoUrl":870,"updatedAt":892},"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},[878,881,882,885,888,889],{"name":879,"slug":880,"type":15},"Analytics","analytics",{"name":864,"slug":865,"type":15},{"name":883,"slug":884,"type":15},"Data Analysis","data-analysis",{"name":886,"slug":887,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":890,"slug":891,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":894,"name":894,"fn":895,"description":896,"org":897,"tags":898,"stars":869,"repoUrl":870,"updatedAt":907},"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},[899,902,903,904],{"name":900,"slug":901,"type":15},"AI Infrastructure","ai-infrastructure",{"name":864,"slug":865,"type":15},{"name":886,"slug":887,"type":15},{"name":905,"slug":906,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":909,"name":909,"fn":910,"description":911,"org":912,"tags":913,"stars":869,"repoUrl":870,"updatedAt":924},"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},[914,915,918,919,920,923],{"name":864,"slug":865,"type":15},{"name":916,"slug":917,"type":15},"Compliance","compliance",{"name":867,"slug":868,"type":15},{"name":9,"slug":8,"type":15},{"name":921,"slug":922,"type":15},"Python","python",{"name":905,"slug":906,"type":15},"2026-07-18T05:14:23.017504",{"slug":926,"name":926,"fn":927,"description":928,"org":929,"tags":930,"stars":869,"repoUrl":870,"updatedAt":935},"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},[931,932,933,934],{"name":879,"slug":880,"type":15},{"name":864,"slug":865,"type":15},{"name":867,"slug":868,"type":15},{"name":921,"slug":922,"type":15},"2026-07-31T05:54:29.068751",{"slug":937,"name":937,"fn":938,"description":939,"org":940,"tags":941,"stars":869,"repoUrl":870,"updatedAt":948},"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},[942,945,946,947],{"name":943,"slug":944,"type":15},"API Development","api-development",{"name":864,"slug":865,"type":15},{"name":9,"slug":8,"type":15},{"name":921,"slug":922,"type":15},"2026-07-18T05:14:16.988376",{"slug":950,"name":950,"fn":951,"description":952,"org":953,"tags":954,"stars":869,"repoUrl":870,"updatedAt":963},"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},[955,956,959,962],{"name":864,"slug":865,"type":15},{"name":957,"slug":958,"type":15},"Computer Vision","computer-vision",{"name":960,"slug":961,"type":15},"Images","images",{"name":921,"slug":922,"type":15},"2026-07-18T05:14:18.007737",{"slug":965,"name":965,"fn":966,"description":967,"org":968,"tags":969,"stars":869,"repoUrl":870,"updatedAt":978},"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},[970,971,974,977],{"name":864,"slug":865,"type":15},{"name":972,"slug":973,"type":15},"Configuration","configuration",{"name":975,"slug":976,"type":15},"Feature Flags","feature-flags",{"name":886,"slug":887,"type":15},"2026-07-03T16:32:01.278468",{"slug":980,"name":980,"fn":981,"description":982,"org":983,"tags":984,"stars":869,"repoUrl":870,"updatedAt":997},"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},[985,988,991,994],{"name":986,"slug":987,"type":15},"Cosmos DB","cosmos-db",{"name":989,"slug":990,"type":15},"Database","database",{"name":992,"slug":993,"type":15},"NoSQL","nosql",{"name":995,"slug":996,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":999,"name":999,"fn":981,"description":1000,"org":1001,"tags":1002,"stars":869,"repoUrl":870,"updatedAt":1010},"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},[1003,1004,1005,1006,1007],{"name":986,"slug":987,"type":15},{"name":989,"slug":990,"type":15},{"name":9,"slug":8,"type":15},{"name":992,"slug":993,"type":15},{"name":1008,"slug":1009,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1012,"name":1012,"fn":1013,"description":1014,"org":1015,"tags":1016,"stars":869,"repoUrl":870,"updatedAt":1022},"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},[1017,1018,1019,1020,1021],{"name":864,"slug":865,"type":15},{"name":986,"slug":987,"type":15},{"name":989,"slug":990,"type":15},{"name":886,"slug":887,"type":15},{"name":992,"slug":993,"type":15},"2026-05-13T06:14:17.582229",267,{"items":1025,"total":1115},[1026,1036,1050,1067,1077,1092,1103],{"slug":1027,"name":1027,"fn":1028,"description":1029,"org":1030,"tags":1031,"stars":26,"repoUrl":27,"updatedAt":1035},"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},[1032,1033,1034],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"2026-07-18T05:14:13.971821",{"slug":1037,"name":1037,"fn":1038,"description":1039,"org":1040,"tags":1041,"stars":26,"repoUrl":27,"updatedAt":1049},"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},[1042,1043,1046],{"name":17,"slug":18,"type":15},{"name":1044,"slug":1045,"type":15},"Windows","windows",{"name":1047,"slug":1048,"type":15},"WinUI","winui","2026-07-03T16:31:30.1325",{"slug":1051,"name":1051,"fn":1052,"description":1053,"org":1054,"tags":1055,"stars":26,"repoUrl":27,"updatedAt":1066},"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},[1056,1059,1062,1065],{"name":1057,"slug":1058,"type":15},"Design","design",{"name":1060,"slug":1061,"type":15},"Desktop","desktop",{"name":1063,"slug":1064,"type":15},"UI Components","ui-components",{"name":1044,"slug":1045,"type":15},"2026-07-18T05:14:12.982806",{"slug":1068,"name":1068,"fn":1069,"description":1070,"org":1071,"tags":1072,"stars":26,"repoUrl":27,"updatedAt":1076},"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},[1073,1074,1075],{"name":17,"slug":18,"type":15},{"name":1044,"slug":1045,"type":15},{"name":1047,"slug":1048,"type":15},"2026-07-18T05:14:11.951511",{"slug":1078,"name":1078,"fn":1079,"description":1080,"org":1081,"tags":1082,"stars":26,"repoUrl":27,"updatedAt":1091},"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},[1083,1084,1087,1090],{"name":17,"slug":18,"type":15},{"name":1085,"slug":1086,"type":15},"ASP.NET Core","asp-net-core",{"name":1088,"slug":1089,"type":15},"Backend","backend",{"name":24,"slug":25,"type":15},"2026-07-03T16:30:55.581898",{"slug":1093,"name":1093,"fn":1094,"description":1095,"org":1096,"tags":1097,"stars":26,"repoUrl":27,"updatedAt":1102},"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},[1098,1099,1100,1101],{"name":864,"slug":865,"type":15},{"name":986,"slug":987,"type":15},{"name":989,"slug":990,"type":15},{"name":24,"slug":25,"type":15},"2026-07-03T16:31:21.932144",{"slug":1104,"name":1104,"fn":1105,"description":1106,"org":1107,"tags":1108,"stars":26,"repoUrl":27,"updatedAt":1114},"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},[1109,1111,1112,1113],{"name":1085,"slug":1110,"type":15},"aspnet-core",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},"2026-07-07T06:54:34.226435",19]