[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-migrating-global-asax":3,"mdc-9ep1x5-key":33,"related-repo-microsoft-migrating-global-asax":925,"related-org-microsoft-migrating-global-asax":1019},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"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},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,20],{"name":13,"slug":14,"type":15},"Modernization","modernization","tag",{"name":17,"slug":18,"type":15},"ASP.NET Core","aspnet-core",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Migration","migration",7,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins","2026-07-07T06:54:34.226435",null,1,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fupgrade-agent\u002Fextenders\u002Fupgrade-dotnet\u002Fupgrade\u002Fskills\u002Flazy\u002Fweb\u002Faspnet\u002Fmigrating-global-asax","---\r\nname: migrating-global-asax\r\ndescription: >\r\n  Migrates Global.asax application lifecycle events to ASP.NET Core middleware, startup\r\n  configuration, and Program.cs. Use when upgrading ASP.NET Framework apps containing Global.asax\r\n  or Global.asax.cs files. Triggers for \"migrate Global.asax\", \"convert application events\",\r\n  \"move Application_Start to Program.cs\", \"replace Global.asax with middleware\", and\r\n  ASP.NET-to-Core migration involving request lifecycle, error handling, or session management.\r\nmetadata:\r\n  traits: .NET|CSharp|VisualBasic|DotNetCore\r\n  discovery: lazy\r\n---\r\n\r\n# Global.asax to ASP.NET Core Migration\r\n\r\n## Overview\r\n\r\nConverts `Global.asax.cs` application lifecycle event handlers into ASP.NET Core equivalents: service registration in `Program.cs`, custom middleware, and built-in middleware configuration.\r\n\r\n## Workflow\r\n\r\n```\r\nMigration Progress:\r\n- [ ] Step 1: Verify Global.asax exists\r\n- [ ] Step 2: Audit event handlers\r\n- [ ] Step 3: Triage each event\r\n- [ ] Step 4: Convert events using mapping\r\n- [ ] Step 5: Add required using statements\r\n- [ ] Step 6: Remove Global.asax files\r\n- [ ] Step 7: Verify build and behavior\r\n```\r\n\r\n### Step 1: Verify Global.asax Exists\r\n\r\nCheck if the project still has `Global.asax.cs`. If not, inform the user there is nothing to migrate and stop.\r\n\r\n### Step 2: Audit Event Handlers\r\n\r\nInventory all application events in `Global.asax.cs`:\r\n\r\n- `Application_Start`\r\n- `Application_End`\r\n- `Application_Error`\r\n- `Application_BeginRequest` \u002F `Application_EndRequest`\r\n- `Session_Start` \u002F `Session_End`\r\n- Any custom event handlers\r\n\r\n### Step 3: Triage Each Event\r\n\r\nDetermine whether each event is still needed. ASP.NET Core handles some concerns (like routing registration) through its built-in pipeline, so not every handler needs a direct replacement.\r\n\r\n### Step 4: Convert Events Using the Mapping Below\r\n\r\nApply the [Event Conversion Mapping](#event-conversion-mapping) to migrate each needed handler to its ASP.NET Core equivalent.\r\n\r\n### Step 5: Add Required Using Statements\r\n\r\nAdd any using statements needed by the new middleware or services in `Program.cs`.\r\n\r\n### Step 6: Remove Global.asax Files\r\n\r\nDelete both `Global.asax.cs` and `Global.asax` from the project. ASP.NET Core does not use them — keeping them causes confusion and they are never loaded by the runtime.\r\n\r\n### Step 7: Verify\r\n\r\nBuild the project and confirm no compilation errors. Verify that the application behavior is preserved.\r\n\r\n## Event Conversion Mapping\r\n\r\n| Global.asax Event | ASP.NET Core Pattern | Why |\r\n|---|---|---|\r\n| `Application_Start` | Service registration in `Program.cs` | The DI container and pipeline replace manual initialization |\r\n| `Application_End` | `IHostApplicationLifetime.ApplicationStopping` | Host lifetime events replace the application-level shutdown hook |\r\n| `Application_Error` | `app.UseExceptionHandler()` | Built-in middleware provides structured error handling with logging |\r\n| `Application_BeginRequest` | Custom middleware before `await next()` | The middleware pipeline replaces per-request event hooks |\r\n| `Application_EndRequest` | Custom middleware after `await next()` | Code after `next()` runs on the response path |\r\n| `Session_Start` \u002F `Session_End` | `builder.Services.AddSession()` + `app.UseSession()` | ASP.NET Core manages sessions through explicit middleware opt-in |\r\n\r\n## Conversion Examples\r\n\r\n### Application_Start → Program.cs\r\n\r\n```csharp\r\n\u002F\u002F Before: Global.asax.cs\r\nprotected void Application_Start()\r\n{\r\n    AreaRegistration.RegisterAllAreas();\r\n    RouteConfig.RegisterRoutes(RouteTable.Routes);\r\n}\r\n\r\n\u002F\u002F After: Program.cs\r\nvar builder = WebApplication.CreateBuilder(args);\r\nbuilder.Services.AddControllersWithViews();\r\nvar app = builder.Build();\r\napp.MapControllers();\r\n```\r\n\r\n### Application_End → Shutdown Hook\r\n\r\n```csharp\r\nvar lifetime = app.Services.GetRequiredService\u003CIHostApplicationLifetime>();\r\nlifetime.ApplicationStopping.Register(() =>\r\n{\r\n    \u002F\u002F Cleanup logic from Application_End\r\n});\r\n```\r\n\r\n### Application_Error → Exception Middleware\r\n\r\n```csharp\r\napp.UseExceptionHandler(\"\u002FHome\u002FError\");\r\n```\r\n\r\n### BeginRequest\u002FEndRequest → Custom Middleware\r\n\r\n```csharp\r\napp.Use(async (context, next) =>\r\n{\r\n    \u002F\u002F Logic from Application_BeginRequest\r\n    await next();\r\n    \u002F\u002F Logic from Application_EndRequest\r\n});\r\n```\r\n\r\n### Session Events → Session Middleware\r\n\r\n```csharp\r\nbuilder.Services.AddSession(options =>\r\n{\r\n    options.IdleTimeout = TimeSpan.FromMinutes(30);\r\n    options.Cookie.HttpOnly = true;\r\n    options.Cookie.IsEssential = true;\r\n});\r\napp.UseSession();\r\n```\r\n\r\n## Troubleshooting\r\n\r\n- **Custom events not in the mapping**: Implement as custom middleware or `IHostedService` depending on whether they are request-scoped or application-scoped.\r\n- **Session state differences**: ASP.NET Core sessions are opt-in and require explicit middleware registration. If the app relied on implicit session behavior, add `UseSession()` and verify cookie settings.\r\n\r\n## Success Criteria\r\n\r\n- All needed Global.asax events converted to ASP.NET Core patterns\r\n- `Global.asax.cs` and `Global.asax` files removed from project\r\n- Project builds without errors\r\n- Application functionality preserved\r\n",{"data":34,"body":38},{"name":4,"description":6,"metadata":35},{"traits":36,"discovery":37},".NET|CSharp|VisualBasic|DotNetCore","lazy",{"type":39,"children":40},"root",[41,50,57,80,86,98,105,117,123,135,205,211,216,222,236,242,254,260,280,286,291,296,505,511,517,635,641,687,693,707,713,766,772,833,839,879,885,919],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"globalasax-to-aspnet-core-migration",[47],{"type":48,"value":49},"text","Global.asax to ASP.NET Core Migration",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"overview",[55],{"type":48,"value":56},"Overview",{"type":42,"tag":58,"props":59,"children":60},"p",{},[61,63,70,72,78],{"type":48,"value":62},"Converts ",{"type":42,"tag":64,"props":65,"children":67},"code",{"className":66},[],[68],{"type":48,"value":69},"Global.asax.cs",{"type":48,"value":71}," application lifecycle event handlers into ASP.NET Core equivalents: service registration in ",{"type":42,"tag":64,"props":73,"children":75},{"className":74},[],[76],{"type":48,"value":77},"Program.cs",{"type":48,"value":79},", custom middleware, and built-in middleware configuration.",{"type":42,"tag":51,"props":81,"children":83},{"id":82},"workflow",[84],{"type":48,"value":85},"Workflow",{"type":42,"tag":87,"props":88,"children":92},"pre",{"className":89,"code":91,"language":48},[90],"language-text","Migration Progress:\n- [ ] Step 1: Verify Global.asax exists\n- [ ] Step 2: Audit event handlers\n- [ ] Step 3: Triage each event\n- [ ] Step 4: Convert events using mapping\n- [ ] Step 5: Add required using statements\n- [ ] Step 6: Remove Global.asax files\n- [ ] Step 7: Verify build and behavior\n",[93],{"type":42,"tag":64,"props":94,"children":96},{"__ignoreMap":95},"",[97],{"type":48,"value":91},{"type":42,"tag":99,"props":100,"children":102},"h3",{"id":101},"step-1-verify-globalasax-exists",[103],{"type":48,"value":104},"Step 1: Verify Global.asax Exists",{"type":42,"tag":58,"props":106,"children":107},{},[108,110,115],{"type":48,"value":109},"Check if the project still has ",{"type":42,"tag":64,"props":111,"children":113},{"className":112},[],[114],{"type":48,"value":69},{"type":48,"value":116},". If not, inform the user there is nothing to migrate and stop.",{"type":42,"tag":99,"props":118,"children":120},{"id":119},"step-2-audit-event-handlers",[121],{"type":48,"value":122},"Step 2: Audit Event Handlers",{"type":42,"tag":58,"props":124,"children":125},{},[126,128,133],{"type":48,"value":127},"Inventory all application events in ",{"type":42,"tag":64,"props":129,"children":131},{"className":130},[],[132],{"type":48,"value":69},{"type":48,"value":134},":",{"type":42,"tag":136,"props":137,"children":138},"ul",{},[139,149,158,167,184,200],{"type":42,"tag":140,"props":141,"children":142},"li",{},[143],{"type":42,"tag":64,"props":144,"children":146},{"className":145},[],[147],{"type":48,"value":148},"Application_Start",{"type":42,"tag":140,"props":150,"children":151},{},[152],{"type":42,"tag":64,"props":153,"children":155},{"className":154},[],[156],{"type":48,"value":157},"Application_End",{"type":42,"tag":140,"props":159,"children":160},{},[161],{"type":42,"tag":64,"props":162,"children":164},{"className":163},[],[165],{"type":48,"value":166},"Application_Error",{"type":42,"tag":140,"props":168,"children":169},{},[170,176,178],{"type":42,"tag":64,"props":171,"children":173},{"className":172},[],[174],{"type":48,"value":175},"Application_BeginRequest",{"type":48,"value":177}," \u002F ",{"type":42,"tag":64,"props":179,"children":181},{"className":180},[],[182],{"type":48,"value":183},"Application_EndRequest",{"type":42,"tag":140,"props":185,"children":186},{},[187,193,194],{"type":42,"tag":64,"props":188,"children":190},{"className":189},[],[191],{"type":48,"value":192},"Session_Start",{"type":48,"value":177},{"type":42,"tag":64,"props":195,"children":197},{"className":196},[],[198],{"type":48,"value":199},"Session_End",{"type":42,"tag":140,"props":201,"children":202},{},[203],{"type":48,"value":204},"Any custom event handlers",{"type":42,"tag":99,"props":206,"children":208},{"id":207},"step-3-triage-each-event",[209],{"type":48,"value":210},"Step 3: Triage Each Event",{"type":42,"tag":58,"props":212,"children":213},{},[214],{"type":48,"value":215},"Determine whether each event is still needed. ASP.NET Core handles some concerns (like routing registration) through its built-in pipeline, so not every handler needs a direct replacement.",{"type":42,"tag":99,"props":217,"children":219},{"id":218},"step-4-convert-events-using-the-mapping-below",[220],{"type":48,"value":221},"Step 4: Convert Events Using the Mapping Below",{"type":42,"tag":58,"props":223,"children":224},{},[225,227,234],{"type":48,"value":226},"Apply the ",{"type":42,"tag":228,"props":229,"children":231},"a",{"href":230},"#event-conversion-mapping",[232],{"type":48,"value":233},"Event Conversion Mapping",{"type":48,"value":235}," to migrate each needed handler to its ASP.NET Core equivalent.",{"type":42,"tag":99,"props":237,"children":239},{"id":238},"step-5-add-required-using-statements",[240],{"type":48,"value":241},"Step 5: Add Required Using Statements",{"type":42,"tag":58,"props":243,"children":244},{},[245,247,252],{"type":48,"value":246},"Add any using statements needed by the new middleware or services in ",{"type":42,"tag":64,"props":248,"children":250},{"className":249},[],[251],{"type":48,"value":77},{"type":48,"value":253},".",{"type":42,"tag":99,"props":255,"children":257},{"id":256},"step-6-remove-globalasax-files",[258],{"type":48,"value":259},"Step 6: Remove Global.asax Files",{"type":42,"tag":58,"props":261,"children":262},{},[263,265,270,272,278],{"type":48,"value":264},"Delete both ",{"type":42,"tag":64,"props":266,"children":268},{"className":267},[],[269],{"type":48,"value":69},{"type":48,"value":271}," and ",{"type":42,"tag":64,"props":273,"children":275},{"className":274},[],[276],{"type":48,"value":277},"Global.asax",{"type":48,"value":279}," from the project. ASP.NET Core does not use them — keeping them causes confusion and they are never loaded by the runtime.",{"type":42,"tag":99,"props":281,"children":283},{"id":282},"step-7-verify",[284],{"type":48,"value":285},"Step 7: Verify",{"type":42,"tag":58,"props":287,"children":288},{},[289],{"type":48,"value":290},"Build the project and confirm no compilation errors. Verify that the application behavior is preserved.",{"type":42,"tag":51,"props":292,"children":294},{"id":293},"event-conversion-mapping",[295],{"type":48,"value":233},{"type":42,"tag":297,"props":298,"children":299},"table",{},[300,324],{"type":42,"tag":301,"props":302,"children":303},"thead",{},[304],{"type":42,"tag":305,"props":306,"children":307},"tr",{},[308,314,319],{"type":42,"tag":309,"props":310,"children":311},"th",{},[312],{"type":48,"value":313},"Global.asax Event",{"type":42,"tag":309,"props":315,"children":316},{},[317],{"type":48,"value":318},"ASP.NET Core Pattern",{"type":42,"tag":309,"props":320,"children":321},{},[322],{"type":48,"value":323},"Why",{"type":42,"tag":325,"props":326,"children":327},"tbody",{},[328,355,380,405,432,466],{"type":42,"tag":305,"props":329,"children":330},{},[331,340,350],{"type":42,"tag":332,"props":333,"children":334},"td",{},[335],{"type":42,"tag":64,"props":336,"children":338},{"className":337},[],[339],{"type":48,"value":148},{"type":42,"tag":332,"props":341,"children":342},{},[343,345],{"type":48,"value":344},"Service registration in ",{"type":42,"tag":64,"props":346,"children":348},{"className":347},[],[349],{"type":48,"value":77},{"type":42,"tag":332,"props":351,"children":352},{},[353],{"type":48,"value":354},"The DI container and pipeline replace manual initialization",{"type":42,"tag":305,"props":356,"children":357},{},[358,366,375],{"type":42,"tag":332,"props":359,"children":360},{},[361],{"type":42,"tag":64,"props":362,"children":364},{"className":363},[],[365],{"type":48,"value":157},{"type":42,"tag":332,"props":367,"children":368},{},[369],{"type":42,"tag":64,"props":370,"children":372},{"className":371},[],[373],{"type":48,"value":374},"IHostApplicationLifetime.ApplicationStopping",{"type":42,"tag":332,"props":376,"children":377},{},[378],{"type":48,"value":379},"Host lifetime events replace the application-level shutdown hook",{"type":42,"tag":305,"props":381,"children":382},{},[383,391,400],{"type":42,"tag":332,"props":384,"children":385},{},[386],{"type":42,"tag":64,"props":387,"children":389},{"className":388},[],[390],{"type":48,"value":166},{"type":42,"tag":332,"props":392,"children":393},{},[394],{"type":42,"tag":64,"props":395,"children":397},{"className":396},[],[398],{"type":48,"value":399},"app.UseExceptionHandler()",{"type":42,"tag":332,"props":401,"children":402},{},[403],{"type":48,"value":404},"Built-in middleware provides structured error handling with logging",{"type":42,"tag":305,"props":406,"children":407},{},[408,416,427],{"type":42,"tag":332,"props":409,"children":410},{},[411],{"type":42,"tag":64,"props":412,"children":414},{"className":413},[],[415],{"type":48,"value":175},{"type":42,"tag":332,"props":417,"children":418},{},[419,421],{"type":48,"value":420},"Custom middleware before ",{"type":42,"tag":64,"props":422,"children":424},{"className":423},[],[425],{"type":48,"value":426},"await next()",{"type":42,"tag":332,"props":428,"children":429},{},[430],{"type":48,"value":431},"The middleware pipeline replaces per-request event hooks",{"type":42,"tag":305,"props":433,"children":434},{},[435,443,453],{"type":42,"tag":332,"props":436,"children":437},{},[438],{"type":42,"tag":64,"props":439,"children":441},{"className":440},[],[442],{"type":48,"value":183},{"type":42,"tag":332,"props":444,"children":445},{},[446,448],{"type":48,"value":447},"Custom middleware after ",{"type":42,"tag":64,"props":449,"children":451},{"className":450},[],[452],{"type":48,"value":426},{"type":42,"tag":332,"props":454,"children":455},{},[456,458,464],{"type":48,"value":457},"Code after ",{"type":42,"tag":64,"props":459,"children":461},{"className":460},[],[462],{"type":48,"value":463},"next()",{"type":48,"value":465}," runs on the response path",{"type":42,"tag":305,"props":467,"children":468},{},[469,483,500],{"type":42,"tag":332,"props":470,"children":471},{},[472,477,478],{"type":42,"tag":64,"props":473,"children":475},{"className":474},[],[476],{"type":48,"value":192},{"type":48,"value":177},{"type":42,"tag":64,"props":479,"children":481},{"className":480},[],[482],{"type":48,"value":199},{"type":42,"tag":332,"props":484,"children":485},{},[486,492,494],{"type":42,"tag":64,"props":487,"children":489},{"className":488},[],[490],{"type":48,"value":491},"builder.Services.AddSession()",{"type":48,"value":493}," + ",{"type":42,"tag":64,"props":495,"children":497},{"className":496},[],[498],{"type":48,"value":499},"app.UseSession()",{"type":42,"tag":332,"props":501,"children":502},{},[503],{"type":48,"value":504},"ASP.NET Core manages sessions through explicit middleware opt-in",{"type":42,"tag":51,"props":506,"children":508},{"id":507},"conversion-examples",[509],{"type":48,"value":510},"Conversion Examples",{"type":42,"tag":99,"props":512,"children":514},{"id":513},"application_start-programcs",[515],{"type":48,"value":516},"Application_Start → Program.cs",{"type":42,"tag":87,"props":518,"children":522},{"className":519,"code":520,"language":521,"meta":95,"style":95},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F Before: Global.asax.cs\nprotected void Application_Start()\n{\n    AreaRegistration.RegisterAllAreas();\n    RouteConfig.RegisterRoutes(RouteTable.Routes);\n}\n\n\u002F\u002F After: Program.cs\nvar builder = WebApplication.CreateBuilder(args);\nbuilder.Services.AddControllersWithViews();\nvar app = builder.Build();\napp.MapControllers();\n","csharp",[523],{"type":42,"tag":64,"props":524,"children":525},{"__ignoreMap":95},[526,536,545,554,563,572,581,590,599,608,617,626],{"type":42,"tag":527,"props":528,"children":530},"span",{"class":529,"line":27},"line",[531],{"type":42,"tag":527,"props":532,"children":533},{},[534],{"type":48,"value":535},"\u002F\u002F Before: Global.asax.cs\n",{"type":42,"tag":527,"props":537,"children":539},{"class":529,"line":538},2,[540],{"type":42,"tag":527,"props":541,"children":542},{},[543],{"type":48,"value":544},"protected void Application_Start()\n",{"type":42,"tag":527,"props":546,"children":548},{"class":529,"line":547},3,[549],{"type":42,"tag":527,"props":550,"children":551},{},[552],{"type":48,"value":553},"{\n",{"type":42,"tag":527,"props":555,"children":557},{"class":529,"line":556},4,[558],{"type":42,"tag":527,"props":559,"children":560},{},[561],{"type":48,"value":562},"    AreaRegistration.RegisterAllAreas();\n",{"type":42,"tag":527,"props":564,"children":566},{"class":529,"line":565},5,[567],{"type":42,"tag":527,"props":568,"children":569},{},[570],{"type":48,"value":571},"    RouteConfig.RegisterRoutes(RouteTable.Routes);\n",{"type":42,"tag":527,"props":573,"children":575},{"class":529,"line":574},6,[576],{"type":42,"tag":527,"props":577,"children":578},{},[579],{"type":48,"value":580},"}\n",{"type":42,"tag":527,"props":582,"children":583},{"class":529,"line":23},[584],{"type":42,"tag":527,"props":585,"children":587},{"emptyLinePlaceholder":586},true,[588],{"type":48,"value":589},"\n",{"type":42,"tag":527,"props":591,"children":593},{"class":529,"line":592},8,[594],{"type":42,"tag":527,"props":595,"children":596},{},[597],{"type":48,"value":598},"\u002F\u002F After: Program.cs\n",{"type":42,"tag":527,"props":600,"children":602},{"class":529,"line":601},9,[603],{"type":42,"tag":527,"props":604,"children":605},{},[606],{"type":48,"value":607},"var builder = WebApplication.CreateBuilder(args);\n",{"type":42,"tag":527,"props":609,"children":611},{"class":529,"line":610},10,[612],{"type":42,"tag":527,"props":613,"children":614},{},[615],{"type":48,"value":616},"builder.Services.AddControllersWithViews();\n",{"type":42,"tag":527,"props":618,"children":620},{"class":529,"line":619},11,[621],{"type":42,"tag":527,"props":622,"children":623},{},[624],{"type":48,"value":625},"var app = builder.Build();\n",{"type":42,"tag":527,"props":627,"children":629},{"class":529,"line":628},12,[630],{"type":42,"tag":527,"props":631,"children":632},{},[633],{"type":48,"value":634},"app.MapControllers();\n",{"type":42,"tag":99,"props":636,"children":638},{"id":637},"application_end-shutdown-hook",[639],{"type":48,"value":640},"Application_End → Shutdown Hook",{"type":42,"tag":87,"props":642,"children":644},{"className":519,"code":643,"language":521,"meta":95,"style":95},"var lifetime = app.Services.GetRequiredService\u003CIHostApplicationLifetime>();\nlifetime.ApplicationStopping.Register(() =>\n{\n    \u002F\u002F Cleanup logic from Application_End\n});\n",[645],{"type":42,"tag":64,"props":646,"children":647},{"__ignoreMap":95},[648,656,664,671,679],{"type":42,"tag":527,"props":649,"children":650},{"class":529,"line":27},[651],{"type":42,"tag":527,"props":652,"children":653},{},[654],{"type":48,"value":655},"var lifetime = app.Services.GetRequiredService\u003CIHostApplicationLifetime>();\n",{"type":42,"tag":527,"props":657,"children":658},{"class":529,"line":538},[659],{"type":42,"tag":527,"props":660,"children":661},{},[662],{"type":48,"value":663},"lifetime.ApplicationStopping.Register(() =>\n",{"type":42,"tag":527,"props":665,"children":666},{"class":529,"line":547},[667],{"type":42,"tag":527,"props":668,"children":669},{},[670],{"type":48,"value":553},{"type":42,"tag":527,"props":672,"children":673},{"class":529,"line":556},[674],{"type":42,"tag":527,"props":675,"children":676},{},[677],{"type":48,"value":678},"    \u002F\u002F Cleanup logic from Application_End\n",{"type":42,"tag":527,"props":680,"children":681},{"class":529,"line":565},[682],{"type":42,"tag":527,"props":683,"children":684},{},[685],{"type":48,"value":686},"});\n",{"type":42,"tag":99,"props":688,"children":690},{"id":689},"application_error-exception-middleware",[691],{"type":48,"value":692},"Application_Error → Exception Middleware",{"type":42,"tag":87,"props":694,"children":696},{"className":519,"code":695,"language":521,"meta":95,"style":95},"app.UseExceptionHandler(\"\u002FHome\u002FError\");\n",[697],{"type":42,"tag":64,"props":698,"children":699},{"__ignoreMap":95},[700],{"type":42,"tag":527,"props":701,"children":702},{"class":529,"line":27},[703],{"type":42,"tag":527,"props":704,"children":705},{},[706],{"type":48,"value":695},{"type":42,"tag":99,"props":708,"children":710},{"id":709},"beginrequestendrequest-custom-middleware",[711],{"type":48,"value":712},"BeginRequest\u002FEndRequest → Custom Middleware",{"type":42,"tag":87,"props":714,"children":716},{"className":519,"code":715,"language":521,"meta":95,"style":95},"app.Use(async (context, next) =>\n{\n    \u002F\u002F Logic from Application_BeginRequest\n    await next();\n    \u002F\u002F Logic from Application_EndRequest\n});\n",[717],{"type":42,"tag":64,"props":718,"children":719},{"__ignoreMap":95},[720,728,735,743,751,759],{"type":42,"tag":527,"props":721,"children":722},{"class":529,"line":27},[723],{"type":42,"tag":527,"props":724,"children":725},{},[726],{"type":48,"value":727},"app.Use(async (context, next) =>\n",{"type":42,"tag":527,"props":729,"children":730},{"class":529,"line":538},[731],{"type":42,"tag":527,"props":732,"children":733},{},[734],{"type":48,"value":553},{"type":42,"tag":527,"props":736,"children":737},{"class":529,"line":547},[738],{"type":42,"tag":527,"props":739,"children":740},{},[741],{"type":48,"value":742},"    \u002F\u002F Logic from Application_BeginRequest\n",{"type":42,"tag":527,"props":744,"children":745},{"class":529,"line":556},[746],{"type":42,"tag":527,"props":747,"children":748},{},[749],{"type":48,"value":750},"    await next();\n",{"type":42,"tag":527,"props":752,"children":753},{"class":529,"line":565},[754],{"type":42,"tag":527,"props":755,"children":756},{},[757],{"type":48,"value":758},"    \u002F\u002F Logic from Application_EndRequest\n",{"type":42,"tag":527,"props":760,"children":761},{"class":529,"line":574},[762],{"type":42,"tag":527,"props":763,"children":764},{},[765],{"type":48,"value":686},{"type":42,"tag":99,"props":767,"children":769},{"id":768},"session-events-session-middleware",[770],{"type":48,"value":771},"Session Events → Session Middleware",{"type":42,"tag":87,"props":773,"children":775},{"className":519,"code":774,"language":521,"meta":95,"style":95},"builder.Services.AddSession(options =>\n{\n    options.IdleTimeout = TimeSpan.FromMinutes(30);\n    options.Cookie.HttpOnly = true;\n    options.Cookie.IsEssential = true;\n});\napp.UseSession();\n",[776],{"type":42,"tag":64,"props":777,"children":778},{"__ignoreMap":95},[779,787,794,802,810,818,825],{"type":42,"tag":527,"props":780,"children":781},{"class":529,"line":27},[782],{"type":42,"tag":527,"props":783,"children":784},{},[785],{"type":48,"value":786},"builder.Services.AddSession(options =>\n",{"type":42,"tag":527,"props":788,"children":789},{"class":529,"line":538},[790],{"type":42,"tag":527,"props":791,"children":792},{},[793],{"type":48,"value":553},{"type":42,"tag":527,"props":795,"children":796},{"class":529,"line":547},[797],{"type":42,"tag":527,"props":798,"children":799},{},[800],{"type":48,"value":801},"    options.IdleTimeout = TimeSpan.FromMinutes(30);\n",{"type":42,"tag":527,"props":803,"children":804},{"class":529,"line":556},[805],{"type":42,"tag":527,"props":806,"children":807},{},[808],{"type":48,"value":809},"    options.Cookie.HttpOnly = true;\n",{"type":42,"tag":527,"props":811,"children":812},{"class":529,"line":565},[813],{"type":42,"tag":527,"props":814,"children":815},{},[816],{"type":48,"value":817},"    options.Cookie.IsEssential = true;\n",{"type":42,"tag":527,"props":819,"children":820},{"class":529,"line":574},[821],{"type":42,"tag":527,"props":822,"children":823},{},[824],{"type":48,"value":686},{"type":42,"tag":527,"props":826,"children":827},{"class":529,"line":23},[828],{"type":42,"tag":527,"props":829,"children":830},{},[831],{"type":48,"value":832},"app.UseSession();\n",{"type":42,"tag":51,"props":834,"children":836},{"id":835},"troubleshooting",[837],{"type":48,"value":838},"Troubleshooting",{"type":42,"tag":136,"props":840,"children":841},{},[842,861],{"type":42,"tag":140,"props":843,"children":844},{},[845,851,853,859],{"type":42,"tag":846,"props":847,"children":848},"strong",{},[849],{"type":48,"value":850},"Custom events not in the mapping",{"type":48,"value":852},": Implement as custom middleware or ",{"type":42,"tag":64,"props":854,"children":856},{"className":855},[],[857],{"type":48,"value":858},"IHostedService",{"type":48,"value":860}," depending on whether they are request-scoped or application-scoped.",{"type":42,"tag":140,"props":862,"children":863},{},[864,869,871,877],{"type":42,"tag":846,"props":865,"children":866},{},[867],{"type":48,"value":868},"Session state differences",{"type":48,"value":870},": ASP.NET Core sessions are opt-in and require explicit middleware registration. If the app relied on implicit session behavior, add ",{"type":42,"tag":64,"props":872,"children":874},{"className":873},[],[875],{"type":48,"value":876},"UseSession()",{"type":48,"value":878}," and verify cookie settings.",{"type":42,"tag":51,"props":880,"children":882},{"id":881},"success-criteria",[883],{"type":48,"value":884},"Success Criteria",{"type":42,"tag":136,"props":886,"children":887},{},[888,893,909,914],{"type":42,"tag":140,"props":889,"children":890},{},[891],{"type":48,"value":892},"All needed Global.asax events converted to ASP.NET Core patterns",{"type":42,"tag":140,"props":894,"children":895},{},[896,901,902,907],{"type":42,"tag":64,"props":897,"children":899},{"className":898},[],[900],{"type":48,"value":69},{"type":48,"value":271},{"type":42,"tag":64,"props":903,"children":905},{"className":904},[],[906],{"type":48,"value":277},{"type":48,"value":908}," files removed from project",{"type":42,"tag":140,"props":910,"children":911},{},[912],{"type":48,"value":913},"Project builds without errors",{"type":42,"tag":140,"props":915,"children":916},{},[917],{"type":48,"value":918},"Application functionality preserved",{"type":42,"tag":920,"props":921,"children":922},"style",{},[923],{"type":48,"value":924},"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":926,"total":1018},[927,939,953,970,980,994,1011],{"slug":928,"name":928,"fn":929,"description":930,"org":931,"tags":932,"stars":23,"repoUrl":24,"updatedAt":938},"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},[933,936,937],{"name":934,"slug":935,"type":15},".NET","net",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-18T05:14:13.971821",{"slug":940,"name":940,"fn":941,"description":942,"org":943,"tags":944,"stars":23,"repoUrl":24,"updatedAt":952},"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},[945,946,949],{"name":934,"slug":935,"type":15},{"name":947,"slug":948,"type":15},"Windows","windows",{"name":950,"slug":951,"type":15},"WinUI","winui","2026-07-03T16:31:30.1325",{"slug":954,"name":954,"fn":955,"description":956,"org":957,"tags":958,"stars":23,"repoUrl":24,"updatedAt":969},"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},[959,962,965,968],{"name":960,"slug":961,"type":15},"Design","design",{"name":963,"slug":964,"type":15},"Desktop","desktop",{"name":966,"slug":967,"type":15},"UI Components","ui-components",{"name":947,"slug":948,"type":15},"2026-07-18T05:14:12.982806",{"slug":971,"name":971,"fn":972,"description":973,"org":974,"tags":975,"stars":23,"repoUrl":24,"updatedAt":979},"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},[976,977,978],{"name":934,"slug":935,"type":15},{"name":947,"slug":948,"type":15},{"name":950,"slug":951,"type":15},"2026-07-18T05:14:11.951511",{"slug":981,"name":981,"fn":982,"description":983,"org":984,"tags":985,"stars":23,"repoUrl":24,"updatedAt":993},"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},[986,987,989,992],{"name":934,"slug":935,"type":15},{"name":17,"slug":988,"type":15},"asp-net-core",{"name":990,"slug":991,"type":15},"Backend","backend",{"name":21,"slug":22,"type":15},"2026-07-03T16:30:55.581898",{"slug":995,"name":995,"fn":996,"description":997,"org":998,"tags":999,"stars":23,"repoUrl":24,"updatedAt":1010},"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},[1000,1003,1006,1009],{"name":1001,"slug":1002,"type":15},"Azure","azure",{"name":1004,"slug":1005,"type":15},"Cosmos DB","cosmos-db",{"name":1007,"slug":1008,"type":15},"Database","database",{"name":21,"slug":22,"type":15},"2026-07-03T16:31:21.932144",{"slug":4,"name":4,"fn":5,"description":6,"org":1012,"tags":1013,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1014,1015,1016,1017],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},19,{"items":1020,"total":1207},[1021,1043,1060,1081,1096,1113,1124,1137,1152,1167,1182,1195],{"slug":1022,"name":1022,"fn":1023,"description":1024,"org":1025,"tags":1026,"stars":1040,"repoUrl":1041,"updatedAt":1042},"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},[1027,1030,1033,1034,1037],{"name":1028,"slug":1029,"type":15},"Engineering","engineering",{"name":1031,"slug":1032,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":1035,"slug":1036,"type":15},"Project Management","project-management",{"name":1038,"slug":1039,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":1044,"name":1044,"fn":1045,"description":1046,"org":1047,"tags":1048,"stars":1057,"repoUrl":1058,"updatedAt":1059},"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},[1049,1050,1053,1054],{"name":934,"slug":935,"type":15},{"name":1051,"slug":1052,"type":15},"Agents","agents",{"name":1001,"slug":1002,"type":15},{"name":1055,"slug":1056,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":1061,"name":1061,"fn":1062,"description":1063,"org":1064,"tags":1065,"stars":1057,"repoUrl":1058,"updatedAt":1080},"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},[1066,1069,1070,1073,1076,1077],{"name":1067,"slug":1068,"type":15},"Analytics","analytics",{"name":1001,"slug":1002,"type":15},{"name":1071,"slug":1072,"type":15},"Data Analysis","data-analysis",{"name":1074,"slug":1075,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":1078,"slug":1079,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":1082,"name":1082,"fn":1083,"description":1084,"org":1085,"tags":1086,"stars":1057,"repoUrl":1058,"updatedAt":1095},"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},[1087,1090,1091,1092],{"name":1088,"slug":1089,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1001,"slug":1002,"type":15},{"name":1074,"slug":1075,"type":15},{"name":1093,"slug":1094,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":1097,"name":1097,"fn":1098,"description":1099,"org":1100,"tags":1101,"stars":1057,"repoUrl":1058,"updatedAt":1112},"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},[1102,1103,1106,1107,1108,1111],{"name":1001,"slug":1002,"type":15},{"name":1104,"slug":1105,"type":15},"Compliance","compliance",{"name":1055,"slug":1056,"type":15},{"name":9,"slug":8,"type":15},{"name":1109,"slug":1110,"type":15},"Python","python",{"name":1093,"slug":1094,"type":15},"2026-07-18T05:14:23.017504",{"slug":1114,"name":1114,"fn":1115,"description":1116,"org":1117,"tags":1118,"stars":1057,"repoUrl":1058,"updatedAt":1123},"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},[1119,1120,1121,1122],{"name":1067,"slug":1068,"type":15},{"name":1001,"slug":1002,"type":15},{"name":1055,"slug":1056,"type":15},{"name":1109,"slug":1110,"type":15},"2026-07-31T05:54:29.068751",{"slug":1125,"name":1125,"fn":1126,"description":1127,"org":1128,"tags":1129,"stars":1057,"repoUrl":1058,"updatedAt":1136},"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},[1130,1133,1134,1135],{"name":1131,"slug":1132,"type":15},"API Development","api-development",{"name":1001,"slug":1002,"type":15},{"name":9,"slug":8,"type":15},{"name":1109,"slug":1110,"type":15},"2026-07-18T05:14:16.988376",{"slug":1138,"name":1138,"fn":1139,"description":1140,"org":1141,"tags":1142,"stars":1057,"repoUrl":1058,"updatedAt":1151},"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},[1143,1144,1147,1150],{"name":1001,"slug":1002,"type":15},{"name":1145,"slug":1146,"type":15},"Computer Vision","computer-vision",{"name":1148,"slug":1149,"type":15},"Images","images",{"name":1109,"slug":1110,"type":15},"2026-07-18T05:14:18.007737",{"slug":1153,"name":1153,"fn":1154,"description":1155,"org":1156,"tags":1157,"stars":1057,"repoUrl":1058,"updatedAt":1166},"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},[1158,1159,1162,1165],{"name":1001,"slug":1002,"type":15},{"name":1160,"slug":1161,"type":15},"Configuration","configuration",{"name":1163,"slug":1164,"type":15},"Feature Flags","feature-flags",{"name":1074,"slug":1075,"type":15},"2026-07-03T16:32:01.278468",{"slug":1168,"name":1168,"fn":1169,"description":1170,"org":1171,"tags":1172,"stars":1057,"repoUrl":1058,"updatedAt":1181},"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},[1173,1174,1175,1178],{"name":1004,"slug":1005,"type":15},{"name":1007,"slug":1008,"type":15},{"name":1176,"slug":1177,"type":15},"NoSQL","nosql",{"name":1179,"slug":1180,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1183,"name":1183,"fn":1169,"description":1184,"org":1185,"tags":1186,"stars":1057,"repoUrl":1058,"updatedAt":1194},"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},[1187,1188,1189,1190,1191],{"name":1004,"slug":1005,"type":15},{"name":1007,"slug":1008,"type":15},{"name":9,"slug":8,"type":15},{"name":1176,"slug":1177,"type":15},{"name":1192,"slug":1193,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1196,"name":1196,"fn":1197,"description":1198,"org":1199,"tags":1200,"stars":1057,"repoUrl":1058,"updatedAt":1206},"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},[1201,1202,1203,1204,1205],{"name":1001,"slug":1002,"type":15},{"name":1004,"slug":1005,"type":15},{"name":1007,"slug":1008,"type":15},{"name":1074,"slug":1075,"type":15},{"name":1176,"slug":1177,"type":15},"2026-05-13T06:14:17.582229",267]