[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-migrating-mvc-filters":3,"mdc-mbfj7r-key":35,"related-repo-microsoft-migrating-mvc-filters":877,"related-org-microsoft-migrating-mvc-filters":972},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":33,"mdContent":34},"migrating-mvc-filters","migrate ASP.NET MVC filters to Core","Migrates ASP.NET MVC global filters (GlobalFilterCollection, HandleErrorAttribute, FilterConfig) to ASP.NET Core exception handling middleware and filter pipeline. Use when upgrading MVC apps that register filters via GlobalFilters.Filters.Add(), have a FilterConfig.cs, use HandleErrorAttribute, or need to convert custom IActionFilter\u002FIExceptionFilter implementations to ASP.NET Core equivalents. Also triggers for global error handling migration, MVC-to-Core filter conversion, and UseExceptionHandler setup.\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],{"name":13,"slug":14,"type":15},"Backend","backend","tag",{"name":17,"slug":18,"type":15},"ASP.NET Core","aspnet-core",{"name":20,"slug":21,"type":15},".NET","net",{"name":23,"slug":24,"type":15},"Migration","migration",7,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins","2026-07-03T16:30:54.221223",null,1,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":28},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fupgrade-agent\u002Fextenders\u002Fupgrade-dotnet\u002Fupgrade\u002Fskills\u002Flazy\u002Fweb\u002Fmvc\u002Fmigrating-mvc-filters","---\r\nname: migrating-mvc-filters\r\ndescription: >\r\n  Migrates ASP.NET MVC global filters (GlobalFilterCollection, HandleErrorAttribute, FilterConfig)\r\n  to ASP.NET Core exception handling middleware and filter pipeline. Use when upgrading MVC apps\r\n  that register filters via GlobalFilters.Filters.Add(), have a FilterConfig.cs, use\r\n  HandleErrorAttribute, or need to convert custom IActionFilter\u002FIExceptionFilter implementations\r\n  to ASP.NET Core equivalents. Also triggers for global error handling migration, MVC-to-Core\r\n  filter conversion, and UseExceptionHandler setup.\r\nmetadata:\r\n  traits: .NET|CSharp|VisualBasic|DotNetCore\r\n  discovery: lazy\r\n---\r\n\r\n# ASP.NET MVC Global Filters Migration\r\n\r\n## Overview\r\n\r\nMigrate `GlobalFilterCollection`-based filters from ASP.NET MVC to ASP.NET Core middleware and filter pipeline. ASP.NET Core replaces `HandleErrorAttribute` with `UseExceptionHandler` middleware because middleware runs earlier in the pipeline and catches errors from all middleware, not just controller actions.\r\n\r\n## Workflow\r\n\r\nTrack progress across these steps:\r\n\r\n```\r\nMigration Progress:\r\n- [ ] Step 1: Identify main controller from routing\r\n- [ ] Step 2: Add exception handler middleware\r\n- [ ] Step 3: Add error action methods\r\n- [ ] Step 4: Create error views\r\n- [ ] Step 5: Convert custom filters\r\n- [ ] Step 6: Remove FilterConfig and GlobalFilters references\r\n```\r\n\r\n### Step 1: Identify Main Controller\r\n\r\nDetermine the main controller name from routing configuration. Check `Program.cs` for route registration first, then fall back to `RouteConfig.cs` if the project hasn't been fully migrated. The default route typically maps to `HomeController`. This controller will host the error-handling action methods.\r\n\r\n### Step 2: Add Exception Handler Middleware\r\n\r\nIf `HandleErrorAttribute` was registered as a global filter, add exception handling middleware in `Program.cs`:\r\n\r\n```csharp\r\napp.UseExceptionHandler(\"\u002F\u003CMainControllerName>\u002FError\");\r\napp.UseStatusCodePagesWithReExecute(\"\u002F\u003CMainControllerName>\u002FStatusErrorCode\", \"?code={0}\");\r\n```\r\n\r\nReplace `\u003CMainControllerName>` with the controller name from Step 1. Skip if these lines already exist.\r\n\r\n`UseExceptionHandler` replaces `HandleErrorAttribute` globally, while `UseStatusCodePagesWithReExecute` provides user-friendly pages for HTTP status codes like 404 and 403.\r\n\r\n### Step 3: Add Error Action Methods\r\n\r\nOpen the main controller file and add an `Error` action method if missing:\r\n\r\n```csharp\r\npublic IActionResult Error()\r\n{\r\n    return View();\r\n}\r\n```\r\n\r\nAdd a `StatusErrorCode` action method to the same controller:\r\n\r\n```csharp\r\npublic IActionResult StatusErrorCode(int code)\r\n{\r\n    return View(\"StatusErrorCode\", code);\r\n}\r\n```\r\n\r\nIf other methods in the controller use attribute routing, add `[Route]` attributes to these methods as well to stay consistent.\r\n\r\n### Step 4: Create Error Views\r\n\r\nCreate `Views\u002FShared\u002FError.cshtml` if it does not exist:\r\n\r\n```cshtml\r\n@{\r\n    ViewData[\"Title\"] = \"Error\";\r\n}\r\n\r\n\u003Ch1 class=\"text-danger\">Oops! Something went wrong.\u003C\u002Fh1>\r\n\u003Cp class=\"text-muted\">An unexpected error occurred. Please try again later.\u003C\u002Fp>\r\n```\r\n\r\nCreate `Views\u002FShared\u002FStatusErrorCode.cshtml` if it does not exist:\r\n\r\n```cshtml\r\n@{\r\n    ViewData[\"Title\"] = \"Status Error Code\";\r\n    var code = Context.Request.Query[\"code\"];\r\n}\r\n\r\n\u003Ch1 class=\"text-danger\">Oops! Something went wrong.\u003C\u002Fh1>\r\n\r\n@if (code == \"404\")\r\n{\r\n    \u003Cp class=\"text-muted\">The page you are looking for could not be found.\u003C\u002Fp>\r\n}\r\nelse if (code == \"403\")\r\n{\r\n    \u003Cp class=\"text-muted\">You do not have permission to access this resource.\u003C\u002Fp>\r\n}\r\nelse if (code == \"500\")\r\n{\r\n    \u003Cp class=\"text-muted\">An internal server error occurred. Please try again later.\u003C\u002Fp>\r\n}\r\nelse\r\n{\r\n    \u003Cp class=\"text-muted\">An unexpected error occurred (Status code: @code).\u003C\u002Fp>\r\n}\r\n```\r\n\r\nPlace views under `Views\u002FShared\u002F` for app-wide access, or under `Views\u002F\u003CControllerName>\u002F` if only that controller handles errors.\r\n\r\n### Step 5: Convert Custom Filters\r\n\r\nConvert any custom filters registered in `GlobalFilterCollection` to ASP.NET Core filter interfaces (`IActionFilter`, `IAsyncActionFilter`, `IExceptionFilter`, etc.). Register them in `Program.cs`:\r\n\r\n```csharp\r\nbuilder.Services.AddControllersWithViews(options =>\r\n{\r\n    options.Filters.Add\u003CMyCustomFilter>();\r\n});\r\n```\r\n\r\nASP.NET Core filters use dependency injection natively, so constructor-injected services work without extra setup.\r\n\r\n### Step 6: Remove FilterConfig\r\n\r\nRemove `FilterConfig.cs` (or equivalent class that called `GlobalFilters.Filters.Add()`). Search for and remove all references to `GlobalFilters.Filters` across the codebase. If the class contained only filter registration code, delete the entire file; otherwise, remove only the filter-related code.\r\n\r\n## Success Criteria\r\n\r\n- `UseExceptionHandler` and `UseStatusCodePagesWithReExecute` configured in `Program.cs`\r\n- Error and StatusErrorCode action methods exist in the main controller\r\n- Error views created under `Views\u002FShared\u002F` or appropriate controller folder\r\n- Custom filters converted to ASP.NET Core interfaces and registered\r\n- No `FilterConfig.cs` or `GlobalFilters.Filters` references remain\r\n- Project builds without errors\r\n",{"data":36,"body":40},{"name":4,"description":6,"metadata":37},{"traits":38,"discovery":39},".NET|CSharp|VisualBasic|DotNetCore","lazy",{"type":41,"children":42},"root",[43,52,59,90,96,101,113,120,149,155,174,202,215,240,246,259,300,313,350,363,369,382,441,452,646,667,673,714,752,757,763,792,798,871],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"aspnet-mvc-global-filters-migration",[49],{"type":50,"value":51},"text","ASP.NET MVC Global Filters Migration",{"type":44,"tag":53,"props":54,"children":56},"h2",{"id":55},"overview",[57],{"type":50,"value":58},"Overview",{"type":44,"tag":60,"props":61,"children":62},"p",{},[63,65,72,74,80,82,88],{"type":50,"value":64},"Migrate ",{"type":44,"tag":66,"props":67,"children":69},"code",{"className":68},[],[70],{"type":50,"value":71},"GlobalFilterCollection",{"type":50,"value":73},"-based filters from ASP.NET MVC to ASP.NET Core middleware and filter pipeline. ASP.NET Core replaces ",{"type":44,"tag":66,"props":75,"children":77},{"className":76},[],[78],{"type":50,"value":79},"HandleErrorAttribute",{"type":50,"value":81}," with ",{"type":44,"tag":66,"props":83,"children":85},{"className":84},[],[86],{"type":50,"value":87},"UseExceptionHandler",{"type":50,"value":89}," middleware because middleware runs earlier in the pipeline and catches errors from all middleware, not just controller actions.",{"type":44,"tag":53,"props":91,"children":93},{"id":92},"workflow",[94],{"type":50,"value":95},"Workflow",{"type":44,"tag":60,"props":97,"children":98},{},[99],{"type":50,"value":100},"Track progress across these steps:",{"type":44,"tag":102,"props":103,"children":107},"pre",{"className":104,"code":106,"language":50},[105],"language-text","Migration Progress:\n- [ ] Step 1: Identify main controller from routing\n- [ ] Step 2: Add exception handler middleware\n- [ ] Step 3: Add error action methods\n- [ ] Step 4: Create error views\n- [ ] Step 5: Convert custom filters\n- [ ] Step 6: Remove FilterConfig and GlobalFilters references\n",[108],{"type":44,"tag":66,"props":109,"children":111},{"__ignoreMap":110},"",[112],{"type":50,"value":106},{"type":44,"tag":114,"props":115,"children":117},"h3",{"id":116},"step-1-identify-main-controller",[118],{"type":50,"value":119},"Step 1: Identify Main Controller",{"type":44,"tag":60,"props":121,"children":122},{},[123,125,131,133,139,141,147],{"type":50,"value":124},"Determine the main controller name from routing configuration. Check ",{"type":44,"tag":66,"props":126,"children":128},{"className":127},[],[129],{"type":50,"value":130},"Program.cs",{"type":50,"value":132}," for route registration first, then fall back to ",{"type":44,"tag":66,"props":134,"children":136},{"className":135},[],[137],{"type":50,"value":138},"RouteConfig.cs",{"type":50,"value":140}," if the project hasn't been fully migrated. The default route typically maps to ",{"type":44,"tag":66,"props":142,"children":144},{"className":143},[],[145],{"type":50,"value":146},"HomeController",{"type":50,"value":148},". This controller will host the error-handling action methods.",{"type":44,"tag":114,"props":150,"children":152},{"id":151},"step-2-add-exception-handler-middleware",[153],{"type":50,"value":154},"Step 2: Add Exception Handler Middleware",{"type":44,"tag":60,"props":156,"children":157},{},[158,160,165,167,172],{"type":50,"value":159},"If ",{"type":44,"tag":66,"props":161,"children":163},{"className":162},[],[164],{"type":50,"value":79},{"type":50,"value":166}," was registered as a global filter, add exception handling middleware in ",{"type":44,"tag":66,"props":168,"children":170},{"className":169},[],[171],{"type":50,"value":130},{"type":50,"value":173},":",{"type":44,"tag":102,"props":175,"children":179},{"className":176,"code":177,"language":178,"meta":110,"style":110},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","app.UseExceptionHandler(\"\u002F\u003CMainControllerName>\u002FError\");\napp.UseStatusCodePagesWithReExecute(\"\u002F\u003CMainControllerName>\u002FStatusErrorCode\", \"?code={0}\");\n","csharp",[180],{"type":44,"tag":66,"props":181,"children":182},{"__ignoreMap":110},[183,193],{"type":44,"tag":184,"props":185,"children":187},"span",{"class":186,"line":29},"line",[188],{"type":44,"tag":184,"props":189,"children":190},{},[191],{"type":50,"value":192},"app.UseExceptionHandler(\"\u002F\u003CMainControllerName>\u002FError\");\n",{"type":44,"tag":184,"props":194,"children":196},{"class":186,"line":195},2,[197],{"type":44,"tag":184,"props":198,"children":199},{},[200],{"type":50,"value":201},"app.UseStatusCodePagesWithReExecute(\"\u002F\u003CMainControllerName>\u002FStatusErrorCode\", \"?code={0}\");\n",{"type":44,"tag":60,"props":203,"children":204},{},[205,207,213],{"type":50,"value":206},"Replace ",{"type":44,"tag":66,"props":208,"children":210},{"className":209},[],[211],{"type":50,"value":212},"\u003CMainControllerName>",{"type":50,"value":214}," with the controller name from Step 1. Skip if these lines already exist.",{"type":44,"tag":60,"props":216,"children":217},{},[218,223,225,230,232,238],{"type":44,"tag":66,"props":219,"children":221},{"className":220},[],[222],{"type":50,"value":87},{"type":50,"value":224}," replaces ",{"type":44,"tag":66,"props":226,"children":228},{"className":227},[],[229],{"type":50,"value":79},{"type":50,"value":231}," globally, while ",{"type":44,"tag":66,"props":233,"children":235},{"className":234},[],[236],{"type":50,"value":237},"UseStatusCodePagesWithReExecute",{"type":50,"value":239}," provides user-friendly pages for HTTP status codes like 404 and 403.",{"type":44,"tag":114,"props":241,"children":243},{"id":242},"step-3-add-error-action-methods",[244],{"type":50,"value":245},"Step 3: Add Error Action Methods",{"type":44,"tag":60,"props":247,"children":248},{},[249,251,257],{"type":50,"value":250},"Open the main controller file and add an ",{"type":44,"tag":66,"props":252,"children":254},{"className":253},[],[255],{"type":50,"value":256},"Error",{"type":50,"value":258}," action method if missing:",{"type":44,"tag":102,"props":260,"children":262},{"className":176,"code":261,"language":178,"meta":110,"style":110},"public IActionResult Error()\n{\n    return View();\n}\n",[263],{"type":44,"tag":66,"props":264,"children":265},{"__ignoreMap":110},[266,274,282,291],{"type":44,"tag":184,"props":267,"children":268},{"class":186,"line":29},[269],{"type":44,"tag":184,"props":270,"children":271},{},[272],{"type":50,"value":273},"public IActionResult Error()\n",{"type":44,"tag":184,"props":275,"children":276},{"class":186,"line":195},[277],{"type":44,"tag":184,"props":278,"children":279},{},[280],{"type":50,"value":281},"{\n",{"type":44,"tag":184,"props":283,"children":285},{"class":186,"line":284},3,[286],{"type":44,"tag":184,"props":287,"children":288},{},[289],{"type":50,"value":290},"    return View();\n",{"type":44,"tag":184,"props":292,"children":294},{"class":186,"line":293},4,[295],{"type":44,"tag":184,"props":296,"children":297},{},[298],{"type":50,"value":299},"}\n",{"type":44,"tag":60,"props":301,"children":302},{},[303,305,311],{"type":50,"value":304},"Add a ",{"type":44,"tag":66,"props":306,"children":308},{"className":307},[],[309],{"type":50,"value":310},"StatusErrorCode",{"type":50,"value":312}," action method to the same controller:",{"type":44,"tag":102,"props":314,"children":316},{"className":176,"code":315,"language":178,"meta":110,"style":110},"public IActionResult StatusErrorCode(int code)\n{\n    return View(\"StatusErrorCode\", code);\n}\n",[317],{"type":44,"tag":66,"props":318,"children":319},{"__ignoreMap":110},[320,328,335,343],{"type":44,"tag":184,"props":321,"children":322},{"class":186,"line":29},[323],{"type":44,"tag":184,"props":324,"children":325},{},[326],{"type":50,"value":327},"public IActionResult StatusErrorCode(int code)\n",{"type":44,"tag":184,"props":329,"children":330},{"class":186,"line":195},[331],{"type":44,"tag":184,"props":332,"children":333},{},[334],{"type":50,"value":281},{"type":44,"tag":184,"props":336,"children":337},{"class":186,"line":284},[338],{"type":44,"tag":184,"props":339,"children":340},{},[341],{"type":50,"value":342},"    return View(\"StatusErrorCode\", code);\n",{"type":44,"tag":184,"props":344,"children":345},{"class":186,"line":293},[346],{"type":44,"tag":184,"props":347,"children":348},{},[349],{"type":50,"value":299},{"type":44,"tag":60,"props":351,"children":352},{},[353,355,361],{"type":50,"value":354},"If other methods in the controller use attribute routing, add ",{"type":44,"tag":66,"props":356,"children":358},{"className":357},[],[359],{"type":50,"value":360},"[Route]",{"type":50,"value":362}," attributes to these methods as well to stay consistent.",{"type":44,"tag":114,"props":364,"children":366},{"id":365},"step-4-create-error-views",[367],{"type":50,"value":368},"Step 4: Create Error Views",{"type":44,"tag":60,"props":370,"children":371},{},[372,374,380],{"type":50,"value":373},"Create ",{"type":44,"tag":66,"props":375,"children":377},{"className":376},[],[378],{"type":50,"value":379},"Views\u002FShared\u002FError.cshtml",{"type":50,"value":381}," if it does not exist:",{"type":44,"tag":102,"props":383,"children":387},{"className":384,"code":385,"language":386,"meta":110,"style":110},"language-cshtml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","@{\n    ViewData[\"Title\"] = \"Error\";\n}\n\n\u003Ch1 class=\"text-danger\">Oops! Something went wrong.\u003C\u002Fh1>\n\u003Cp class=\"text-muted\">An unexpected error occurred. Please try again later.\u003C\u002Fp>\n","cshtml",[388],{"type":44,"tag":66,"props":389,"children":390},{"__ignoreMap":110},[391,399,407,414,423,432],{"type":44,"tag":184,"props":392,"children":393},{"class":186,"line":29},[394],{"type":44,"tag":184,"props":395,"children":396},{},[397],{"type":50,"value":398},"@{\n",{"type":44,"tag":184,"props":400,"children":401},{"class":186,"line":195},[402],{"type":44,"tag":184,"props":403,"children":404},{},[405],{"type":50,"value":406},"    ViewData[\"Title\"] = \"Error\";\n",{"type":44,"tag":184,"props":408,"children":409},{"class":186,"line":284},[410],{"type":44,"tag":184,"props":411,"children":412},{},[413],{"type":50,"value":299},{"type":44,"tag":184,"props":415,"children":416},{"class":186,"line":293},[417],{"type":44,"tag":184,"props":418,"children":420},{"emptyLinePlaceholder":419},true,[421],{"type":50,"value":422},"\n",{"type":44,"tag":184,"props":424,"children":426},{"class":186,"line":425},5,[427],{"type":44,"tag":184,"props":428,"children":429},{},[430],{"type":50,"value":431},"\u003Ch1 class=\"text-danger\">Oops! Something went wrong.\u003C\u002Fh1>\n",{"type":44,"tag":184,"props":433,"children":435},{"class":186,"line":434},6,[436],{"type":44,"tag":184,"props":437,"children":438},{},[439],{"type":50,"value":440},"\u003Cp class=\"text-muted\">An unexpected error occurred. Please try again later.\u003C\u002Fp>\n",{"type":44,"tag":60,"props":442,"children":443},{},[444,445,451],{"type":50,"value":373},{"type":44,"tag":66,"props":446,"children":448},{"className":447},[],[449],{"type":50,"value":450},"Views\u002FShared\u002FStatusErrorCode.cshtml",{"type":50,"value":381},{"type":44,"tag":102,"props":453,"children":455},{"className":384,"code":454,"language":386,"meta":110,"style":110},"@{\n    ViewData[\"Title\"] = \"Status Error Code\";\n    var code = Context.Request.Query[\"code\"];\n}\n\n\u003Ch1 class=\"text-danger\">Oops! Something went wrong.\u003C\u002Fh1>\n\n@if (code == \"404\")\n{\n    \u003Cp class=\"text-muted\">The page you are looking for could not be found.\u003C\u002Fp>\n}\nelse if (code == \"403\")\n{\n    \u003Cp class=\"text-muted\">You do not have permission to access this resource.\u003C\u002Fp>\n}\nelse if (code == \"500\")\n{\n    \u003Cp class=\"text-muted\">An internal server error occurred. Please try again later.\u003C\u002Fp>\n}\nelse\n{\n    \u003Cp class=\"text-muted\">An unexpected error occurred (Status code: @code).\u003C\u002Fp>\n}\n",[456],{"type":44,"tag":66,"props":457,"children":458},{"__ignoreMap":110},[459,466,474,482,489,496,503,510,519,527,536,544,553,561,570,578,587,595,604,612,621,629,638],{"type":44,"tag":184,"props":460,"children":461},{"class":186,"line":29},[462],{"type":44,"tag":184,"props":463,"children":464},{},[465],{"type":50,"value":398},{"type":44,"tag":184,"props":467,"children":468},{"class":186,"line":195},[469],{"type":44,"tag":184,"props":470,"children":471},{},[472],{"type":50,"value":473},"    ViewData[\"Title\"] = \"Status Error Code\";\n",{"type":44,"tag":184,"props":475,"children":476},{"class":186,"line":284},[477],{"type":44,"tag":184,"props":478,"children":479},{},[480],{"type":50,"value":481},"    var code = Context.Request.Query[\"code\"];\n",{"type":44,"tag":184,"props":483,"children":484},{"class":186,"line":293},[485],{"type":44,"tag":184,"props":486,"children":487},{},[488],{"type":50,"value":299},{"type":44,"tag":184,"props":490,"children":491},{"class":186,"line":425},[492],{"type":44,"tag":184,"props":493,"children":494},{"emptyLinePlaceholder":419},[495],{"type":50,"value":422},{"type":44,"tag":184,"props":497,"children":498},{"class":186,"line":434},[499],{"type":44,"tag":184,"props":500,"children":501},{},[502],{"type":50,"value":431},{"type":44,"tag":184,"props":504,"children":505},{"class":186,"line":25},[506],{"type":44,"tag":184,"props":507,"children":508},{"emptyLinePlaceholder":419},[509],{"type":50,"value":422},{"type":44,"tag":184,"props":511,"children":513},{"class":186,"line":512},8,[514],{"type":44,"tag":184,"props":515,"children":516},{},[517],{"type":50,"value":518},"@if (code == \"404\")\n",{"type":44,"tag":184,"props":520,"children":522},{"class":186,"line":521},9,[523],{"type":44,"tag":184,"props":524,"children":525},{},[526],{"type":50,"value":281},{"type":44,"tag":184,"props":528,"children":530},{"class":186,"line":529},10,[531],{"type":44,"tag":184,"props":532,"children":533},{},[534],{"type":50,"value":535},"    \u003Cp class=\"text-muted\">The page you are looking for could not be found.\u003C\u002Fp>\n",{"type":44,"tag":184,"props":537,"children":539},{"class":186,"line":538},11,[540],{"type":44,"tag":184,"props":541,"children":542},{},[543],{"type":50,"value":299},{"type":44,"tag":184,"props":545,"children":547},{"class":186,"line":546},12,[548],{"type":44,"tag":184,"props":549,"children":550},{},[551],{"type":50,"value":552},"else if (code == \"403\")\n",{"type":44,"tag":184,"props":554,"children":556},{"class":186,"line":555},13,[557],{"type":44,"tag":184,"props":558,"children":559},{},[560],{"type":50,"value":281},{"type":44,"tag":184,"props":562,"children":564},{"class":186,"line":563},14,[565],{"type":44,"tag":184,"props":566,"children":567},{},[568],{"type":50,"value":569},"    \u003Cp class=\"text-muted\">You do not have permission to access this resource.\u003C\u002Fp>\n",{"type":44,"tag":184,"props":571,"children":573},{"class":186,"line":572},15,[574],{"type":44,"tag":184,"props":575,"children":576},{},[577],{"type":50,"value":299},{"type":44,"tag":184,"props":579,"children":581},{"class":186,"line":580},16,[582],{"type":44,"tag":184,"props":583,"children":584},{},[585],{"type":50,"value":586},"else if (code == \"500\")\n",{"type":44,"tag":184,"props":588,"children":590},{"class":186,"line":589},17,[591],{"type":44,"tag":184,"props":592,"children":593},{},[594],{"type":50,"value":281},{"type":44,"tag":184,"props":596,"children":598},{"class":186,"line":597},18,[599],{"type":44,"tag":184,"props":600,"children":601},{},[602],{"type":50,"value":603},"    \u003Cp class=\"text-muted\">An internal server error occurred. Please try again later.\u003C\u002Fp>\n",{"type":44,"tag":184,"props":605,"children":607},{"class":186,"line":606},19,[608],{"type":44,"tag":184,"props":609,"children":610},{},[611],{"type":50,"value":299},{"type":44,"tag":184,"props":613,"children":615},{"class":186,"line":614},20,[616],{"type":44,"tag":184,"props":617,"children":618},{},[619],{"type":50,"value":620},"else\n",{"type":44,"tag":184,"props":622,"children":624},{"class":186,"line":623},21,[625],{"type":44,"tag":184,"props":626,"children":627},{},[628],{"type":50,"value":281},{"type":44,"tag":184,"props":630,"children":632},{"class":186,"line":631},22,[633],{"type":44,"tag":184,"props":634,"children":635},{},[636],{"type":50,"value":637},"    \u003Cp class=\"text-muted\">An unexpected error occurred (Status code: @code).\u003C\u002Fp>\n",{"type":44,"tag":184,"props":639,"children":641},{"class":186,"line":640},23,[642],{"type":44,"tag":184,"props":643,"children":644},{},[645],{"type":50,"value":299},{"type":44,"tag":60,"props":647,"children":648},{},[649,651,657,659,665],{"type":50,"value":650},"Place views under ",{"type":44,"tag":66,"props":652,"children":654},{"className":653},[],[655],{"type":50,"value":656},"Views\u002FShared\u002F",{"type":50,"value":658}," for app-wide access, or under ",{"type":44,"tag":66,"props":660,"children":662},{"className":661},[],[663],{"type":50,"value":664},"Views\u002F\u003CControllerName>\u002F",{"type":50,"value":666}," if only that controller handles errors.",{"type":44,"tag":114,"props":668,"children":670},{"id":669},"step-5-convert-custom-filters",[671],{"type":50,"value":672},"Step 5: Convert Custom Filters",{"type":44,"tag":60,"props":674,"children":675},{},[676,678,683,685,691,693,699,700,706,708,713],{"type":50,"value":677},"Convert any custom filters registered in ",{"type":44,"tag":66,"props":679,"children":681},{"className":680},[],[682],{"type":50,"value":71},{"type":50,"value":684}," to ASP.NET Core filter interfaces (",{"type":44,"tag":66,"props":686,"children":688},{"className":687},[],[689],{"type":50,"value":690},"IActionFilter",{"type":50,"value":692},", ",{"type":44,"tag":66,"props":694,"children":696},{"className":695},[],[697],{"type":50,"value":698},"IAsyncActionFilter",{"type":50,"value":692},{"type":44,"tag":66,"props":701,"children":703},{"className":702},[],[704],{"type":50,"value":705},"IExceptionFilter",{"type":50,"value":707},", etc.). Register them in ",{"type":44,"tag":66,"props":709,"children":711},{"className":710},[],[712],{"type":50,"value":130},{"type":50,"value":173},{"type":44,"tag":102,"props":715,"children":717},{"className":176,"code":716,"language":178,"meta":110,"style":110},"builder.Services.AddControllersWithViews(options =>\n{\n    options.Filters.Add\u003CMyCustomFilter>();\n});\n",[718],{"type":44,"tag":66,"props":719,"children":720},{"__ignoreMap":110},[721,729,736,744],{"type":44,"tag":184,"props":722,"children":723},{"class":186,"line":29},[724],{"type":44,"tag":184,"props":725,"children":726},{},[727],{"type":50,"value":728},"builder.Services.AddControllersWithViews(options =>\n",{"type":44,"tag":184,"props":730,"children":731},{"class":186,"line":195},[732],{"type":44,"tag":184,"props":733,"children":734},{},[735],{"type":50,"value":281},{"type":44,"tag":184,"props":737,"children":738},{"class":186,"line":284},[739],{"type":44,"tag":184,"props":740,"children":741},{},[742],{"type":50,"value":743},"    options.Filters.Add\u003CMyCustomFilter>();\n",{"type":44,"tag":184,"props":745,"children":746},{"class":186,"line":293},[747],{"type":44,"tag":184,"props":748,"children":749},{},[750],{"type":50,"value":751},"});\n",{"type":44,"tag":60,"props":753,"children":754},{},[755],{"type":50,"value":756},"ASP.NET Core filters use dependency injection natively, so constructor-injected services work without extra setup.",{"type":44,"tag":114,"props":758,"children":760},{"id":759},"step-6-remove-filterconfig",[761],{"type":50,"value":762},"Step 6: Remove FilterConfig",{"type":44,"tag":60,"props":764,"children":765},{},[766,768,774,776,782,784,790],{"type":50,"value":767},"Remove ",{"type":44,"tag":66,"props":769,"children":771},{"className":770},[],[772],{"type":50,"value":773},"FilterConfig.cs",{"type":50,"value":775}," (or equivalent class that called ",{"type":44,"tag":66,"props":777,"children":779},{"className":778},[],[780],{"type":50,"value":781},"GlobalFilters.Filters.Add()",{"type":50,"value":783},"). Search for and remove all references to ",{"type":44,"tag":66,"props":785,"children":787},{"className":786},[],[788],{"type":50,"value":789},"GlobalFilters.Filters",{"type":50,"value":791}," across the codebase. If the class contained only filter registration code, delete the entire file; otherwise, remove only the filter-related code.",{"type":44,"tag":53,"props":793,"children":795},{"id":794},"success-criteria",[796],{"type":50,"value":797},"Success Criteria",{"type":44,"tag":799,"props":800,"children":801},"ul",{},[802,825,830,842,847,866],{"type":44,"tag":803,"props":804,"children":805},"li",{},[806,811,813,818,820],{"type":44,"tag":66,"props":807,"children":809},{"className":808},[],[810],{"type":50,"value":87},{"type":50,"value":812}," and ",{"type":44,"tag":66,"props":814,"children":816},{"className":815},[],[817],{"type":50,"value":237},{"type":50,"value":819}," configured in ",{"type":44,"tag":66,"props":821,"children":823},{"className":822},[],[824],{"type":50,"value":130},{"type":44,"tag":803,"props":826,"children":827},{},[828],{"type":50,"value":829},"Error and StatusErrorCode action methods exist in the main controller",{"type":44,"tag":803,"props":831,"children":832},{},[833,835,840],{"type":50,"value":834},"Error views created under ",{"type":44,"tag":66,"props":836,"children":838},{"className":837},[],[839],{"type":50,"value":656},{"type":50,"value":841}," or appropriate controller folder",{"type":44,"tag":803,"props":843,"children":844},{},[845],{"type":50,"value":846},"Custom filters converted to ASP.NET Core interfaces and registered",{"type":44,"tag":803,"props":848,"children":849},{},[850,852,857,859,864],{"type":50,"value":851},"No ",{"type":44,"tag":66,"props":853,"children":855},{"className":854},[],[856],{"type":50,"value":773},{"type":50,"value":858}," or ",{"type":44,"tag":66,"props":860,"children":862},{"className":861},[],[863],{"type":50,"value":789},{"type":50,"value":865}," references remain",{"type":44,"tag":803,"props":867,"children":868},{},[869],{"type":50,"value":870},"Project builds without errors",{"type":44,"tag":872,"props":873,"children":874},"style",{},[875],{"type":50,"value":876},"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":878,"total":606},[879,889,903,920,930,942,959],{"slug":880,"name":880,"fn":881,"description":882,"org":883,"tags":884,"stars":25,"repoUrl":26,"updatedAt":888},"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},[885,886,887],{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},"2026-07-18T05:14:13.971821",{"slug":890,"name":890,"fn":891,"description":892,"org":893,"tags":894,"stars":25,"repoUrl":26,"updatedAt":902},"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},[895,896,899],{"name":20,"slug":21,"type":15},{"name":897,"slug":898,"type":15},"Windows","windows",{"name":900,"slug":901,"type":15},"WinUI","winui","2026-07-03T16:31:30.1325",{"slug":904,"name":904,"fn":905,"description":906,"org":907,"tags":908,"stars":25,"repoUrl":26,"updatedAt":919},"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},[909,912,915,918],{"name":910,"slug":911,"type":15},"Design","design",{"name":913,"slug":914,"type":15},"Desktop","desktop",{"name":916,"slug":917,"type":15},"UI Components","ui-components",{"name":897,"slug":898,"type":15},"2026-07-18T05:14:12.982806",{"slug":921,"name":921,"fn":922,"description":923,"org":924,"tags":925,"stars":25,"repoUrl":26,"updatedAt":929},"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},[926,927,928],{"name":20,"slug":21,"type":15},{"name":897,"slug":898,"type":15},{"name":900,"slug":901,"type":15},"2026-07-18T05:14:11.951511",{"slug":931,"name":931,"fn":932,"description":933,"org":934,"tags":935,"stars":25,"repoUrl":26,"updatedAt":941},"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},[936,937,939,940],{"name":20,"slug":21,"type":15},{"name":17,"slug":938,"type":15},"asp-net-core",{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},"2026-07-03T16:30:55.581898",{"slug":943,"name":943,"fn":944,"description":945,"org":946,"tags":947,"stars":25,"repoUrl":26,"updatedAt":958},"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},[948,951,954,957],{"name":949,"slug":950,"type":15},"Azure","azure",{"name":952,"slug":953,"type":15},"Cosmos DB","cosmos-db",{"name":955,"slug":956,"type":15},"Database","database",{"name":23,"slug":24,"type":15},"2026-07-03T16:31:21.932144",{"slug":960,"name":960,"fn":961,"description":962,"org":963,"tags":964,"stars":25,"repoUrl":26,"updatedAt":971},"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},[965,966,967,968],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":969,"slug":970,"type":15},"Modernization","modernization","2026-07-07T06:54:34.226435",{"items":973,"total":1160},[974,996,1013,1034,1049,1066,1077,1090,1105,1120,1135,1148],{"slug":975,"name":975,"fn":976,"description":977,"org":978,"tags":979,"stars":993,"repoUrl":994,"updatedAt":995},"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},[980,983,986,987,990],{"name":981,"slug":982,"type":15},"Engineering","engineering",{"name":984,"slug":985,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":988,"slug":989,"type":15},"Project Management","project-management",{"name":991,"slug":992,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":997,"name":997,"fn":998,"description":999,"org":1000,"tags":1001,"stars":1010,"repoUrl":1011,"updatedAt":1012},"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},[1002,1003,1006,1007],{"name":20,"slug":21,"type":15},{"name":1004,"slug":1005,"type":15},"Agents","agents",{"name":949,"slug":950,"type":15},{"name":1008,"slug":1009,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":1014,"name":1014,"fn":1015,"description":1016,"org":1017,"tags":1018,"stars":1010,"repoUrl":1011,"updatedAt":1033},"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},[1019,1022,1023,1026,1029,1030],{"name":1020,"slug":1021,"type":15},"Analytics","analytics",{"name":949,"slug":950,"type":15},{"name":1024,"slug":1025,"type":15},"Data Analysis","data-analysis",{"name":1027,"slug":1028,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":1031,"slug":1032,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":1035,"name":1035,"fn":1036,"description":1037,"org":1038,"tags":1039,"stars":1010,"repoUrl":1011,"updatedAt":1048},"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},[1040,1043,1044,1045],{"name":1041,"slug":1042,"type":15},"AI Infrastructure","ai-infrastructure",{"name":949,"slug":950,"type":15},{"name":1027,"slug":1028,"type":15},{"name":1046,"slug":1047,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":1050,"name":1050,"fn":1051,"description":1052,"org":1053,"tags":1054,"stars":1010,"repoUrl":1011,"updatedAt":1065},"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},[1055,1056,1059,1060,1061,1064],{"name":949,"slug":950,"type":15},{"name":1057,"slug":1058,"type":15},"Compliance","compliance",{"name":1008,"slug":1009,"type":15},{"name":9,"slug":8,"type":15},{"name":1062,"slug":1063,"type":15},"Python","python",{"name":1046,"slug":1047,"type":15},"2026-07-18T05:14:23.017504",{"slug":1067,"name":1067,"fn":1068,"description":1069,"org":1070,"tags":1071,"stars":1010,"repoUrl":1011,"updatedAt":1076},"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},[1072,1073,1074,1075],{"name":1020,"slug":1021,"type":15},{"name":949,"slug":950,"type":15},{"name":1008,"slug":1009,"type":15},{"name":1062,"slug":1063,"type":15},"2026-07-31T05:54:29.068751",{"slug":1078,"name":1078,"fn":1079,"description":1080,"org":1081,"tags":1082,"stars":1010,"repoUrl":1011,"updatedAt":1089},"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},[1083,1086,1087,1088],{"name":1084,"slug":1085,"type":15},"API Development","api-development",{"name":949,"slug":950,"type":15},{"name":9,"slug":8,"type":15},{"name":1062,"slug":1063,"type":15},"2026-07-18T05:14:16.988376",{"slug":1091,"name":1091,"fn":1092,"description":1093,"org":1094,"tags":1095,"stars":1010,"repoUrl":1011,"updatedAt":1104},"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},[1096,1097,1100,1103],{"name":949,"slug":950,"type":15},{"name":1098,"slug":1099,"type":15},"Computer Vision","computer-vision",{"name":1101,"slug":1102,"type":15},"Images","images",{"name":1062,"slug":1063,"type":15},"2026-07-18T05:14:18.007737",{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":1010,"repoUrl":1011,"updatedAt":1119},"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},[1111,1112,1115,1118],{"name":949,"slug":950,"type":15},{"name":1113,"slug":1114,"type":15},"Configuration","configuration",{"name":1116,"slug":1117,"type":15},"Feature Flags","feature-flags",{"name":1027,"slug":1028,"type":15},"2026-07-03T16:32:01.278468",{"slug":1121,"name":1121,"fn":1122,"description":1123,"org":1124,"tags":1125,"stars":1010,"repoUrl":1011,"updatedAt":1134},"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},[1126,1127,1128,1131],{"name":952,"slug":953,"type":15},{"name":955,"slug":956,"type":15},{"name":1129,"slug":1130,"type":15},"NoSQL","nosql",{"name":1132,"slug":1133,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1136,"name":1136,"fn":1122,"description":1137,"org":1138,"tags":1139,"stars":1010,"repoUrl":1011,"updatedAt":1147},"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},[1140,1141,1142,1143,1144],{"name":952,"slug":953,"type":15},{"name":955,"slug":956,"type":15},{"name":9,"slug":8,"type":15},{"name":1129,"slug":1130,"type":15},{"name":1145,"slug":1146,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1149,"name":1149,"fn":1150,"description":1151,"org":1152,"tags":1153,"stars":1010,"repoUrl":1011,"updatedAt":1159},"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},[1154,1155,1156,1157,1158],{"name":949,"slug":950,"type":15},{"name":952,"slug":953,"type":15},{"name":955,"slug":956,"type":15},{"name":1027,"slug":1028,"type":15},{"name":1129,"slug":1130,"type":15},"2026-05-13T06:14:17.582229",267]