[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-maui-custom-handlers":3,"mdc-m2x3us-key":43,"related-org-dotnet-maui-custom-handlers":1173,"related-repo-dotnet-maui-custom-handlers":1338},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":38,"sourceUrl":41,"mdContent":42},"maui-custom-handlers","implement and migrate MAUI visual handlers","Implement\u002Fmigrate MAUI visual handlers. USE FOR: `EntryHandler.Mapper.AppendToMapping`, scoped `BorderlessEntry` type guards, unique mapper keys, repeated mapper callbacks, renderer-to-handler migration, `ConnectHandler`\u002F`DisconnectHandler` cleanup, `PropertyMapper`, `CommandMapper`, custom `ViewHandler`, platform partial handlers, conflicting partial base classes, `CreatePlatformView`, native namespace leaks, `ConfigureMauiHandlers`. DO NOT USE FOR: non-visual platform APIs, full Xamarin migration, native SDK bindings, or backend code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"dotnet",".NET (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdotnet.png",[12,16,19],{"name":13,"slug":14,"type":15},"MAUI","maui","tag",{"name":17,"slug":18,"type":15},"Mobile","mobile",{"name":20,"slug":21,"type":15},"UI Components","ui-components",190,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmaui-labs","2026-07-12T08:22:24.206767",null,21,[28,29,30,8,31,32,14,33,34,18,35,36,37],"ai","android","desktop","ios","maccatalyst","mcp","microsoft","multi-platform","user-interface","winui",{"repoUrl":23,"stars":22,"forks":26,"topics":39,"description":40},[28,29,30,8,31,32,14,33,34,18,35,36,37],"Experimental and pre-release tools for .NET MAUI","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmaui-labs\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-maui-app\u002Fskills\u002Fmaui-custom-handlers","---\nname: maui-custom-handlers\ndescription: >-\n  Implement\u002Fmigrate MAUI visual handlers. USE FOR: `EntryHandler.Mapper.AppendToMapping`, scoped `BorderlessEntry` type guards, unique mapper keys, repeated mapper callbacks, renderer-to-handler migration, `ConnectHandler`\u002F`DisconnectHandler` cleanup, `PropertyMapper`, `CommandMapper`, custom `ViewHandler`, platform partial handlers, conflicting partial base classes, `CreatePlatformView`, native namespace leaks, `ConfigureMauiHandlers`. DO NOT USE FOR: non-visual platform APIs, full Xamarin migration, native SDK bindings, or backend code.\n---\n\n# MAUI Custom Handlers\n\nUse this skill when a MAUI visual element needs native platform behavior. Keep\nhandlers focused on views. Route non-visual APIs to platform services and route\nlarge native SDK surfaces to slim bindings.\n\n## Response Checklist\n\n- Use handler language explicitly: `AppendToMapping`, `PropertyMapper`,\n  `CommandMapper`, and `ViewHandler`.\n- For renderer migration, map subscription\u002Fsetup to `ConnectHandler` and cleanup\n  to `DisconnectHandler`.\n- Keep mapper changes scoped to the intended control type, not all controls.\n\n## Decision Tree\n\n| Need | Prefer |\n| --- | --- |\n| Tweak an existing control for the whole app | `EntryHandler.Mapper.AppendToMapping` in `MauiProgram.cs` (or the matching concrete control handler mapper) |\n| Tweak only specific control instances | Subclass the control and guard mapper logic with `if (view is MyControl)` |\n| Add a reusable cross-platform control | Custom `ViewHandler\u003CTVirtualView,TPlatformView>` |\n| Map bindable properties to native properties | `PropertyMapper` entries |\n| Invoke actions such as play\u002Fpause\u002Fscroll | `CommandMapper` entries |\n| Use camera, sensors, payment, health, or background APIs | Platform service through DI |\n| Wrap a third-party Android\u002FiOS\u002FmacOS SDK | Slim binding plus a platform service facade |\n\n## Workflow\n\n1. Inspect the target frameworks and existing UI architecture.\n2. Define the cross-platform view API first: bindable properties, commands, and\n   events that make sense to app code.\n3. Choose global mapper customization, subclass-scoped mapper customization, or a\n   full custom handler.\n4. Put native implementation in partial handler files or `#if` guarded blocks for\n   the exact platforms supported by the project.\n5. Register handlers in `MauiProgram.cs`:\n\n   ```csharp\n   builder.ConfigureMauiHandlers(handlers =>\n   {\n       handlers.AddHandler\u003CCameraPreview, CameraPreviewHandler>();\n   });\n   ```\n\n6. Use `ConnectHandler` to subscribe native events and allocate native resources.\n7. Use `DisconnectHandler` to unsubscribe, stop timers, clear delegates, and\n   dispose only native objects owned by the handler. Call\n   `base.DisconnectHandler(platformView)` as the final statement so the base\n   handler clears its own state.\n8. Build each targeted platform and verify the behavior with UI automation or\n   DevFlow when available.\n\n## Scoped Mapper Customization\n\nFor an existing MAUI control, avoid an unscoped global mapper when only one\ncontrol instance should change:\n\n```csharp\npublic class BorderlessEntry : Entry\n{\n}\n\nEntryHandler.Mapper.AppendToMapping(\"Borderless\", (handler, view) =>\n{\n    if (view is not BorderlessEntry)\n        return;\n\n#if ANDROID\n    handler.PlatformView.Background = null;\n#elif IOS || MACCATALYST\n    handler.PlatformView.BorderStyle = UIKit.UITextBorderStyle.None;\n#elif WINDOWS\n    handler.PlatformView.BorderThickness = new Microsoft.UI.Xaml.Thickness(0);\n#endif\n});\n```\n\nUse a unique mapping key. Do not repeatedly append the same mapping from page\nconstructors; register once during app startup or from a guarded initialization\npath.\n\n## Custom Handler Shape\n\n```csharp\npublic class MeterView : View\n{\n    public static readonly BindableProperty ValueProperty =\n        BindableProperty.Create(nameof(Value), typeof(double), typeof(MeterView), 0d);\n\n    public double Value\n    {\n        get => (double)GetValue(ValueProperty);\n        set => SetValue(ValueProperty, value);\n    }\n}\n\npublic partial class MeterViewHandler\n{\n    public static readonly IPropertyMapper\u003CMeterView, MeterViewHandler> Mapper =\n        new PropertyMapper\u003CMeterView, MeterViewHandler>(ViewHandler.ViewMapper)\n        {\n            [nameof(MeterView.Value)] = MapValue\n        };\n\n    public MeterViewHandler() : base(Mapper)\n    {\n    }\n\n    public static partial void MapValue(MeterViewHandler handler, MeterView view);\n}\n```\n\nImplement `CreatePlatformView`, `ConnectHandler`, `DisconnectHandler`, and\nmapping partials per platform. Put the `ViewHandler\u003CTVirtualView, TPlatformView>`\nbase class on the platform partial so native types stay out of shared files:\n\n```csharp\n\u002F\u002F Platforms\u002FAndroid\u002FMeterViewHandler.android.cs\npublic partial class MeterViewHandler : ViewHandler\u003CMeterView, Android.Widget.FrameLayout>\n{\n    protected override Android.Widget.FrameLayout CreatePlatformView() => new(Context);\n\n    public static partial void MapValue(MeterViewHandler handler, MeterView view)\n    {\n        \u002F\u002F Update handler.PlatformView from view.Value.\n    }\n}\n```\n\n## Property and Command Mappers\n\n- Use `PropertyMapper` for state that should update when a bindable property\n  changes.\n- Use `CommandMapper` for imperative requests such as `Play`, `Pause`,\n  `ScrollTo`, or `Reload`.\n- Mapper methods should be idempotent. They may be called more than once.\n- Validate `handler.PlatformView` and `handler.VirtualView` assumptions through\n  types, not broad try\u002Fcatch blocks.\n\n## Renderer Migration Notes\n\nWhen replacing Xamarin.Forms renderers:\n\n1. Move renderer logic that creates native controls into `CreatePlatformView`.\n2. Move `OnElementChanged` subscriptions into `ConnectHandler`.\n3. Move renderer cleanup into `DisconnectHandler`, and end with\n   `base.DisconnectHandler(platformView)`.\n4. Replace `OnElementPropertyChanged` switch statements with `PropertyMapper`\n   entries.\n5. Replace renderer actions with `CommandMapper` entries or view methods that\n   call `Handler?.Invoke`.\n\n## Validation Checklist\n\n- The handler is registered in one startup location.\n- Mapper keys are unique and scoped when customization should not be global.\n- Native event subscriptions are unsubscribed in `DisconnectHandler`.\n- No platform namespace leaks into shared code unintentionally.\n- The implementation builds for every target framework it is included in.\n- Non-visual SDK work is not hidden in a handler.\n",{"data":44,"body":45},{"name":4,"description":6},{"type":46,"children":47},"root",[48,56,62,69,137,143,297,303,432,438,443,596,601,607,820,853,935,941,1021,1027,1032,1122,1128,1167],{"type":49,"tag":50,"props":51,"children":52},"element","h1",{"id":4},[53],{"type":54,"value":55},"text","MAUI Custom Handlers",{"type":49,"tag":57,"props":58,"children":59},"p",{},[60],{"type":54,"value":61},"Use this skill when a MAUI visual element needs native platform behavior. Keep\nhandlers focused on views. Route non-visual APIs to platform services and route\nlarge native SDK surfaces to slim bindings.",{"type":49,"tag":63,"props":64,"children":66},"h2",{"id":65},"response-checklist",[67],{"type":54,"value":68},"Response Checklist",{"type":49,"tag":70,"props":71,"children":72},"ul",{},[73,112,132],{"type":49,"tag":74,"props":75,"children":76},"li",{},[77,79,86,88,94,96,102,104,110],{"type":54,"value":78},"Use handler language explicitly: ",{"type":49,"tag":80,"props":81,"children":83},"code",{"className":82},[],[84],{"type":54,"value":85},"AppendToMapping",{"type":54,"value":87},", ",{"type":49,"tag":80,"props":89,"children":91},{"className":90},[],[92],{"type":54,"value":93},"PropertyMapper",{"type":54,"value":95},",\n",{"type":49,"tag":80,"props":97,"children":99},{"className":98},[],[100],{"type":54,"value":101},"CommandMapper",{"type":54,"value":103},", and ",{"type":49,"tag":80,"props":105,"children":107},{"className":106},[],[108],{"type":54,"value":109},"ViewHandler",{"type":54,"value":111},".",{"type":49,"tag":74,"props":113,"children":114},{},[115,117,123,125,131],{"type":54,"value":116},"For renderer migration, map subscription\u002Fsetup to ",{"type":49,"tag":80,"props":118,"children":120},{"className":119},[],[121],{"type":54,"value":122},"ConnectHandler",{"type":54,"value":124}," and cleanup\nto ",{"type":49,"tag":80,"props":126,"children":128},{"className":127},[],[129],{"type":54,"value":130},"DisconnectHandler",{"type":54,"value":111},{"type":49,"tag":74,"props":133,"children":134},{},[135],{"type":54,"value":136},"Keep mapper changes scoped to the intended control type, not all controls.",{"type":49,"tag":63,"props":138,"children":140},{"id":139},"decision-tree",[141],{"type":54,"value":142},"Decision Tree",{"type":49,"tag":144,"props":145,"children":146},"table",{},[147,166],{"type":49,"tag":148,"props":149,"children":150},"thead",{},[151],{"type":49,"tag":152,"props":153,"children":154},"tr",{},[155,161],{"type":49,"tag":156,"props":157,"children":158},"th",{},[159],{"type":54,"value":160},"Need",{"type":49,"tag":156,"props":162,"children":163},{},[164],{"type":54,"value":165},"Prefer",{"type":49,"tag":167,"props":168,"children":169},"tbody",{},[170,198,217,236,254,271,284],{"type":49,"tag":152,"props":171,"children":172},{},[173,179],{"type":49,"tag":174,"props":175,"children":176},"td",{},[177],{"type":54,"value":178},"Tweak an existing control for the whole app",{"type":49,"tag":174,"props":180,"children":181},{},[182,188,190,196],{"type":49,"tag":80,"props":183,"children":185},{"className":184},[],[186],{"type":54,"value":187},"EntryHandler.Mapper.AppendToMapping",{"type":54,"value":189}," in ",{"type":49,"tag":80,"props":191,"children":193},{"className":192},[],[194],{"type":54,"value":195},"MauiProgram.cs",{"type":54,"value":197}," (or the matching concrete control handler mapper)",{"type":49,"tag":152,"props":199,"children":200},{},[201,206],{"type":49,"tag":174,"props":202,"children":203},{},[204],{"type":54,"value":205},"Tweak only specific control instances",{"type":49,"tag":174,"props":207,"children":208},{},[209,211],{"type":54,"value":210},"Subclass the control and guard mapper logic with ",{"type":49,"tag":80,"props":212,"children":214},{"className":213},[],[215],{"type":54,"value":216},"if (view is MyControl)",{"type":49,"tag":152,"props":218,"children":219},{},[220,225],{"type":49,"tag":174,"props":221,"children":222},{},[223],{"type":54,"value":224},"Add a reusable cross-platform control",{"type":49,"tag":174,"props":226,"children":227},{},[228,230],{"type":54,"value":229},"Custom ",{"type":49,"tag":80,"props":231,"children":233},{"className":232},[],[234],{"type":54,"value":235},"ViewHandler\u003CTVirtualView,TPlatformView>",{"type":49,"tag":152,"props":237,"children":238},{},[239,244],{"type":49,"tag":174,"props":240,"children":241},{},[242],{"type":54,"value":243},"Map bindable properties to native properties",{"type":49,"tag":174,"props":245,"children":246},{},[247,252],{"type":49,"tag":80,"props":248,"children":250},{"className":249},[],[251],{"type":54,"value":93},{"type":54,"value":253}," entries",{"type":49,"tag":152,"props":255,"children":256},{},[257,262],{"type":49,"tag":174,"props":258,"children":259},{},[260],{"type":54,"value":261},"Invoke actions such as play\u002Fpause\u002Fscroll",{"type":49,"tag":174,"props":263,"children":264},{},[265,270],{"type":49,"tag":80,"props":266,"children":268},{"className":267},[],[269],{"type":54,"value":101},{"type":54,"value":253},{"type":49,"tag":152,"props":272,"children":273},{},[274,279],{"type":49,"tag":174,"props":275,"children":276},{},[277],{"type":54,"value":278},"Use camera, sensors, payment, health, or background APIs",{"type":49,"tag":174,"props":280,"children":281},{},[282],{"type":54,"value":283},"Platform service through DI",{"type":49,"tag":152,"props":285,"children":286},{},[287,292],{"type":49,"tag":174,"props":288,"children":289},{},[290],{"type":54,"value":291},"Wrap a third-party Android\u002FiOS\u002FmacOS SDK",{"type":49,"tag":174,"props":293,"children":294},{},[295],{"type":54,"value":296},"Slim binding plus a platform service facade",{"type":49,"tag":63,"props":298,"children":300},{"id":299},"workflow",[301],{"type":54,"value":302},"Workflow",{"type":49,"tag":304,"props":305,"children":306},"ol",{},[307,312,317,322,335,396,408,427],{"type":49,"tag":74,"props":308,"children":309},{},[310],{"type":54,"value":311},"Inspect the target frameworks and existing UI architecture.",{"type":49,"tag":74,"props":313,"children":314},{},[315],{"type":54,"value":316},"Define the cross-platform view API first: bindable properties, commands, and\nevents that make sense to app code.",{"type":49,"tag":74,"props":318,"children":319},{},[320],{"type":54,"value":321},"Choose global mapper customization, subclass-scoped mapper customization, or a\nfull custom handler.",{"type":49,"tag":74,"props":323,"children":324},{},[325,327,333],{"type":54,"value":326},"Put native implementation in partial handler files or ",{"type":49,"tag":80,"props":328,"children":330},{"className":329},[],[331],{"type":54,"value":332},"#if",{"type":54,"value":334}," guarded blocks for\nthe exact platforms supported by the project.",{"type":49,"tag":74,"props":336,"children":337},{},[338,340,345,347],{"type":54,"value":339},"Register handlers in ",{"type":49,"tag":80,"props":341,"children":343},{"className":342},[],[344],{"type":54,"value":195},{"type":54,"value":346},":",{"type":49,"tag":348,"props":349,"children":354},"pre",{"className":350,"code":351,"language":352,"meta":353,"style":353},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","builder.ConfigureMauiHandlers(handlers =>\n{\n    handlers.AddHandler\u003CCameraPreview, CameraPreviewHandler>();\n});\n","csharp","",[355],{"type":49,"tag":80,"props":356,"children":357},{"__ignoreMap":353},[358,369,378,387],{"type":49,"tag":359,"props":360,"children":363},"span",{"class":361,"line":362},"line",1,[364],{"type":49,"tag":359,"props":365,"children":366},{},[367],{"type":54,"value":368},"builder.ConfigureMauiHandlers(handlers =>\n",{"type":49,"tag":359,"props":370,"children":372},{"class":361,"line":371},2,[373],{"type":49,"tag":359,"props":374,"children":375},{},[376],{"type":54,"value":377},"{\n",{"type":49,"tag":359,"props":379,"children":381},{"class":361,"line":380},3,[382],{"type":49,"tag":359,"props":383,"children":384},{},[385],{"type":54,"value":386},"    handlers.AddHandler\u003CCameraPreview, CameraPreviewHandler>();\n",{"type":49,"tag":359,"props":388,"children":390},{"class":361,"line":389},4,[391],{"type":49,"tag":359,"props":392,"children":393},{},[394],{"type":54,"value":395},"});\n",{"type":49,"tag":74,"props":397,"children":398},{},[399,401,406],{"type":54,"value":400},"Use ",{"type":49,"tag":80,"props":402,"children":404},{"className":403},[],[405],{"type":54,"value":122},{"type":54,"value":407}," to subscribe native events and allocate native resources.",{"type":49,"tag":74,"props":409,"children":410},{},[411,412,417,419,425],{"type":54,"value":400},{"type":49,"tag":80,"props":413,"children":415},{"className":414},[],[416],{"type":54,"value":130},{"type":54,"value":418}," to unsubscribe, stop timers, clear delegates, and\ndispose only native objects owned by the handler. Call\n",{"type":49,"tag":80,"props":420,"children":422},{"className":421},[],[423],{"type":54,"value":424},"base.DisconnectHandler(platformView)",{"type":54,"value":426}," as the final statement so the base\nhandler clears its own state.",{"type":49,"tag":74,"props":428,"children":429},{},[430],{"type":54,"value":431},"Build each targeted platform and verify the behavior with UI automation or\nDevFlow when available.",{"type":49,"tag":63,"props":433,"children":435},{"id":434},"scoped-mapper-customization",[436],{"type":54,"value":437},"Scoped Mapper Customization",{"type":49,"tag":57,"props":439,"children":440},{},[441],{"type":54,"value":442},"For an existing MAUI control, avoid an unscoped global mapper when only one\ncontrol instance should change:",{"type":49,"tag":348,"props":444,"children":446},{"className":350,"code":445,"language":352,"meta":353,"style":353},"public class BorderlessEntry : Entry\n{\n}\n\nEntryHandler.Mapper.AppendToMapping(\"Borderless\", (handler, view) =>\n{\n    if (view is not BorderlessEntry)\n        return;\n\n#if ANDROID\n    handler.PlatformView.Background = null;\n#elif IOS || MACCATALYST\n    handler.PlatformView.BorderStyle = UIKit.UITextBorderStyle.None;\n#elif WINDOWS\n    handler.PlatformView.BorderThickness = new Microsoft.UI.Xaml.Thickness(0);\n#endif\n});\n",[447],{"type":49,"tag":80,"props":448,"children":449},{"__ignoreMap":353},[450,458,465,473,482,491,499,508,517,525,534,543,552,561,570,579,588],{"type":49,"tag":359,"props":451,"children":452},{"class":361,"line":362},[453],{"type":49,"tag":359,"props":454,"children":455},{},[456],{"type":54,"value":457},"public class BorderlessEntry : Entry\n",{"type":49,"tag":359,"props":459,"children":460},{"class":361,"line":371},[461],{"type":49,"tag":359,"props":462,"children":463},{},[464],{"type":54,"value":377},{"type":49,"tag":359,"props":466,"children":467},{"class":361,"line":380},[468],{"type":49,"tag":359,"props":469,"children":470},{},[471],{"type":54,"value":472},"}\n",{"type":49,"tag":359,"props":474,"children":475},{"class":361,"line":389},[476],{"type":49,"tag":359,"props":477,"children":479},{"emptyLinePlaceholder":478},true,[480],{"type":54,"value":481},"\n",{"type":49,"tag":359,"props":483,"children":485},{"class":361,"line":484},5,[486],{"type":49,"tag":359,"props":487,"children":488},{},[489],{"type":54,"value":490},"EntryHandler.Mapper.AppendToMapping(\"Borderless\", (handler, view) =>\n",{"type":49,"tag":359,"props":492,"children":494},{"class":361,"line":493},6,[495],{"type":49,"tag":359,"props":496,"children":497},{},[498],{"type":54,"value":377},{"type":49,"tag":359,"props":500,"children":502},{"class":361,"line":501},7,[503],{"type":49,"tag":359,"props":504,"children":505},{},[506],{"type":54,"value":507},"    if (view is not BorderlessEntry)\n",{"type":49,"tag":359,"props":509,"children":511},{"class":361,"line":510},8,[512],{"type":49,"tag":359,"props":513,"children":514},{},[515],{"type":54,"value":516},"        return;\n",{"type":49,"tag":359,"props":518,"children":520},{"class":361,"line":519},9,[521],{"type":49,"tag":359,"props":522,"children":523},{"emptyLinePlaceholder":478},[524],{"type":54,"value":481},{"type":49,"tag":359,"props":526,"children":528},{"class":361,"line":527},10,[529],{"type":49,"tag":359,"props":530,"children":531},{},[532],{"type":54,"value":533},"#if ANDROID\n",{"type":49,"tag":359,"props":535,"children":537},{"class":361,"line":536},11,[538],{"type":49,"tag":359,"props":539,"children":540},{},[541],{"type":54,"value":542},"    handler.PlatformView.Background = null;\n",{"type":49,"tag":359,"props":544,"children":546},{"class":361,"line":545},12,[547],{"type":49,"tag":359,"props":548,"children":549},{},[550],{"type":54,"value":551},"#elif IOS || MACCATALYST\n",{"type":49,"tag":359,"props":553,"children":555},{"class":361,"line":554},13,[556],{"type":49,"tag":359,"props":557,"children":558},{},[559],{"type":54,"value":560},"    handler.PlatformView.BorderStyle = UIKit.UITextBorderStyle.None;\n",{"type":49,"tag":359,"props":562,"children":564},{"class":361,"line":563},14,[565],{"type":49,"tag":359,"props":566,"children":567},{},[568],{"type":54,"value":569},"#elif WINDOWS\n",{"type":49,"tag":359,"props":571,"children":573},{"class":361,"line":572},15,[574],{"type":49,"tag":359,"props":575,"children":576},{},[577],{"type":54,"value":578},"    handler.PlatformView.BorderThickness = new Microsoft.UI.Xaml.Thickness(0);\n",{"type":49,"tag":359,"props":580,"children":582},{"class":361,"line":581},16,[583],{"type":49,"tag":359,"props":584,"children":585},{},[586],{"type":54,"value":587},"#endif\n",{"type":49,"tag":359,"props":589,"children":591},{"class":361,"line":590},17,[592],{"type":49,"tag":359,"props":593,"children":594},{},[595],{"type":54,"value":395},{"type":49,"tag":57,"props":597,"children":598},{},[599],{"type":54,"value":600},"Use a unique mapping key. Do not repeatedly append the same mapping from page\nconstructors; register once during app startup or from a guarded initialization\npath.",{"type":49,"tag":63,"props":602,"children":604},{"id":603},"custom-handler-shape",[605],{"type":54,"value":606},"Custom Handler Shape",{"type":49,"tag":348,"props":608,"children":610},{"className":350,"code":609,"language":352,"meta":353,"style":353},"public class MeterView : View\n{\n    public static readonly BindableProperty ValueProperty =\n        BindableProperty.Create(nameof(Value), typeof(double), typeof(MeterView), 0d);\n\n    public double Value\n    {\n        get => (double)GetValue(ValueProperty);\n        set => SetValue(ValueProperty, value);\n    }\n}\n\npublic partial class MeterViewHandler\n{\n    public static readonly IPropertyMapper\u003CMeterView, MeterViewHandler> Mapper =\n        new PropertyMapper\u003CMeterView, MeterViewHandler>(ViewHandler.ViewMapper)\n        {\n            [nameof(MeterView.Value)] = MapValue\n        };\n\n    public MeterViewHandler() : base(Mapper)\n    {\n    }\n\n    public static partial void MapValue(MeterViewHandler handler, MeterView view);\n}\n",[611],{"type":49,"tag":80,"props":612,"children":613},{"__ignoreMap":353},[614,622,629,637,645,652,660,668,676,684,692,699,706,714,721,729,737,745,754,763,771,779,787,795,803,812],{"type":49,"tag":359,"props":615,"children":616},{"class":361,"line":362},[617],{"type":49,"tag":359,"props":618,"children":619},{},[620],{"type":54,"value":621},"public class MeterView : View\n",{"type":49,"tag":359,"props":623,"children":624},{"class":361,"line":371},[625],{"type":49,"tag":359,"props":626,"children":627},{},[628],{"type":54,"value":377},{"type":49,"tag":359,"props":630,"children":631},{"class":361,"line":380},[632],{"type":49,"tag":359,"props":633,"children":634},{},[635],{"type":54,"value":636},"    public static readonly BindableProperty ValueProperty =\n",{"type":49,"tag":359,"props":638,"children":639},{"class":361,"line":389},[640],{"type":49,"tag":359,"props":641,"children":642},{},[643],{"type":54,"value":644},"        BindableProperty.Create(nameof(Value), typeof(double), typeof(MeterView), 0d);\n",{"type":49,"tag":359,"props":646,"children":647},{"class":361,"line":484},[648],{"type":49,"tag":359,"props":649,"children":650},{"emptyLinePlaceholder":478},[651],{"type":54,"value":481},{"type":49,"tag":359,"props":653,"children":654},{"class":361,"line":493},[655],{"type":49,"tag":359,"props":656,"children":657},{},[658],{"type":54,"value":659},"    public double Value\n",{"type":49,"tag":359,"props":661,"children":662},{"class":361,"line":501},[663],{"type":49,"tag":359,"props":664,"children":665},{},[666],{"type":54,"value":667},"    {\n",{"type":49,"tag":359,"props":669,"children":670},{"class":361,"line":510},[671],{"type":49,"tag":359,"props":672,"children":673},{},[674],{"type":54,"value":675},"        get => (double)GetValue(ValueProperty);\n",{"type":49,"tag":359,"props":677,"children":678},{"class":361,"line":519},[679],{"type":49,"tag":359,"props":680,"children":681},{},[682],{"type":54,"value":683},"        set => SetValue(ValueProperty, value);\n",{"type":49,"tag":359,"props":685,"children":686},{"class":361,"line":527},[687],{"type":49,"tag":359,"props":688,"children":689},{},[690],{"type":54,"value":691},"    }\n",{"type":49,"tag":359,"props":693,"children":694},{"class":361,"line":536},[695],{"type":49,"tag":359,"props":696,"children":697},{},[698],{"type":54,"value":472},{"type":49,"tag":359,"props":700,"children":701},{"class":361,"line":545},[702],{"type":49,"tag":359,"props":703,"children":704},{"emptyLinePlaceholder":478},[705],{"type":54,"value":481},{"type":49,"tag":359,"props":707,"children":708},{"class":361,"line":554},[709],{"type":49,"tag":359,"props":710,"children":711},{},[712],{"type":54,"value":713},"public partial class MeterViewHandler\n",{"type":49,"tag":359,"props":715,"children":716},{"class":361,"line":563},[717],{"type":49,"tag":359,"props":718,"children":719},{},[720],{"type":54,"value":377},{"type":49,"tag":359,"props":722,"children":723},{"class":361,"line":572},[724],{"type":49,"tag":359,"props":725,"children":726},{},[727],{"type":54,"value":728},"    public static readonly IPropertyMapper\u003CMeterView, MeterViewHandler> Mapper =\n",{"type":49,"tag":359,"props":730,"children":731},{"class":361,"line":581},[732],{"type":49,"tag":359,"props":733,"children":734},{},[735],{"type":54,"value":736},"        new PropertyMapper\u003CMeterView, MeterViewHandler>(ViewHandler.ViewMapper)\n",{"type":49,"tag":359,"props":738,"children":739},{"class":361,"line":590},[740],{"type":49,"tag":359,"props":741,"children":742},{},[743],{"type":54,"value":744},"        {\n",{"type":49,"tag":359,"props":746,"children":748},{"class":361,"line":747},18,[749],{"type":49,"tag":359,"props":750,"children":751},{},[752],{"type":54,"value":753},"            [nameof(MeterView.Value)] = MapValue\n",{"type":49,"tag":359,"props":755,"children":757},{"class":361,"line":756},19,[758],{"type":49,"tag":359,"props":759,"children":760},{},[761],{"type":54,"value":762},"        };\n",{"type":49,"tag":359,"props":764,"children":766},{"class":361,"line":765},20,[767],{"type":49,"tag":359,"props":768,"children":769},{"emptyLinePlaceholder":478},[770],{"type":54,"value":481},{"type":49,"tag":359,"props":772,"children":773},{"class":361,"line":26},[774],{"type":49,"tag":359,"props":775,"children":776},{},[777],{"type":54,"value":778},"    public MeterViewHandler() : base(Mapper)\n",{"type":49,"tag":359,"props":780,"children":782},{"class":361,"line":781},22,[783],{"type":49,"tag":359,"props":784,"children":785},{},[786],{"type":54,"value":667},{"type":49,"tag":359,"props":788,"children":790},{"class":361,"line":789},23,[791],{"type":49,"tag":359,"props":792,"children":793},{},[794],{"type":54,"value":691},{"type":49,"tag":359,"props":796,"children":798},{"class":361,"line":797},24,[799],{"type":49,"tag":359,"props":800,"children":801},{"emptyLinePlaceholder":478},[802],{"type":54,"value":481},{"type":49,"tag":359,"props":804,"children":806},{"class":361,"line":805},25,[807],{"type":49,"tag":359,"props":808,"children":809},{},[810],{"type":54,"value":811},"    public static partial void MapValue(MeterViewHandler handler, MeterView view);\n",{"type":49,"tag":359,"props":813,"children":815},{"class":361,"line":814},26,[816],{"type":49,"tag":359,"props":817,"children":818},{},[819],{"type":54,"value":472},{"type":49,"tag":57,"props":821,"children":822},{},[823,825,831,832,837,838,843,845,851],{"type":54,"value":824},"Implement ",{"type":49,"tag":80,"props":826,"children":828},{"className":827},[],[829],{"type":54,"value":830},"CreatePlatformView",{"type":54,"value":87},{"type":49,"tag":80,"props":833,"children":835},{"className":834},[],[836],{"type":54,"value":122},{"type":54,"value":87},{"type":49,"tag":80,"props":839,"children":841},{"className":840},[],[842],{"type":54,"value":130},{"type":54,"value":844},", and\nmapping partials per platform. Put the ",{"type":49,"tag":80,"props":846,"children":848},{"className":847},[],[849],{"type":54,"value":850},"ViewHandler\u003CTVirtualView, TPlatformView>",{"type":54,"value":852},"\nbase class on the platform partial so native types stay out of shared files:",{"type":49,"tag":348,"props":854,"children":856},{"className":350,"code":855,"language":352,"meta":353,"style":353},"\u002F\u002F Platforms\u002FAndroid\u002FMeterViewHandler.android.cs\npublic partial class MeterViewHandler : ViewHandler\u003CMeterView, Android.Widget.FrameLayout>\n{\n    protected override Android.Widget.FrameLayout CreatePlatformView() => new(Context);\n\n    public static partial void MapValue(MeterViewHandler handler, MeterView view)\n    {\n        \u002F\u002F Update handler.PlatformView from view.Value.\n    }\n}\n",[857],{"type":49,"tag":80,"props":858,"children":859},{"__ignoreMap":353},[860,868,876,883,891,898,906,913,921,928],{"type":49,"tag":359,"props":861,"children":862},{"class":361,"line":362},[863],{"type":49,"tag":359,"props":864,"children":865},{},[866],{"type":54,"value":867},"\u002F\u002F Platforms\u002FAndroid\u002FMeterViewHandler.android.cs\n",{"type":49,"tag":359,"props":869,"children":870},{"class":361,"line":371},[871],{"type":49,"tag":359,"props":872,"children":873},{},[874],{"type":54,"value":875},"public partial class MeterViewHandler : ViewHandler\u003CMeterView, Android.Widget.FrameLayout>\n",{"type":49,"tag":359,"props":877,"children":878},{"class":361,"line":380},[879],{"type":49,"tag":359,"props":880,"children":881},{},[882],{"type":54,"value":377},{"type":49,"tag":359,"props":884,"children":885},{"class":361,"line":389},[886],{"type":49,"tag":359,"props":887,"children":888},{},[889],{"type":54,"value":890},"    protected override Android.Widget.FrameLayout CreatePlatformView() => new(Context);\n",{"type":49,"tag":359,"props":892,"children":893},{"class":361,"line":484},[894],{"type":49,"tag":359,"props":895,"children":896},{"emptyLinePlaceholder":478},[897],{"type":54,"value":481},{"type":49,"tag":359,"props":899,"children":900},{"class":361,"line":493},[901],{"type":49,"tag":359,"props":902,"children":903},{},[904],{"type":54,"value":905},"    public static partial void MapValue(MeterViewHandler handler, MeterView view)\n",{"type":49,"tag":359,"props":907,"children":908},{"class":361,"line":501},[909],{"type":49,"tag":359,"props":910,"children":911},{},[912],{"type":54,"value":667},{"type":49,"tag":359,"props":914,"children":915},{"class":361,"line":510},[916],{"type":49,"tag":359,"props":917,"children":918},{},[919],{"type":54,"value":920},"        \u002F\u002F Update handler.PlatformView from view.Value.\n",{"type":49,"tag":359,"props":922,"children":923},{"class":361,"line":519},[924],{"type":49,"tag":359,"props":925,"children":926},{},[927],{"type":54,"value":691},{"type":49,"tag":359,"props":929,"children":930},{"class":361,"line":527},[931],{"type":49,"tag":359,"props":932,"children":933},{},[934],{"type":54,"value":472},{"type":49,"tag":63,"props":936,"children":938},{"id":937},"property-and-command-mappers",[939],{"type":54,"value":940},"Property and Command Mappers",{"type":49,"tag":70,"props":942,"children":943},{},[944,955,995,1000],{"type":49,"tag":74,"props":945,"children":946},{},[947,948,953],{"type":54,"value":400},{"type":49,"tag":80,"props":949,"children":951},{"className":950},[],[952],{"type":54,"value":93},{"type":54,"value":954}," for state that should update when a bindable property\nchanges.",{"type":49,"tag":74,"props":956,"children":957},{},[958,959,964,966,972,973,979,980,986,988,994],{"type":54,"value":400},{"type":49,"tag":80,"props":960,"children":962},{"className":961},[],[963],{"type":54,"value":101},{"type":54,"value":965}," for imperative requests such as ",{"type":49,"tag":80,"props":967,"children":969},{"className":968},[],[970],{"type":54,"value":971},"Play",{"type":54,"value":87},{"type":49,"tag":80,"props":974,"children":976},{"className":975},[],[977],{"type":54,"value":978},"Pause",{"type":54,"value":95},{"type":49,"tag":80,"props":981,"children":983},{"className":982},[],[984],{"type":54,"value":985},"ScrollTo",{"type":54,"value":987},", or ",{"type":49,"tag":80,"props":989,"children":991},{"className":990},[],[992],{"type":54,"value":993},"Reload",{"type":54,"value":111},{"type":49,"tag":74,"props":996,"children":997},{},[998],{"type":54,"value":999},"Mapper methods should be idempotent. They may be called more than once.",{"type":49,"tag":74,"props":1001,"children":1002},{},[1003,1005,1011,1013,1019],{"type":54,"value":1004},"Validate ",{"type":49,"tag":80,"props":1006,"children":1008},{"className":1007},[],[1009],{"type":54,"value":1010},"handler.PlatformView",{"type":54,"value":1012}," and ",{"type":49,"tag":80,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":54,"value":1018},"handler.VirtualView",{"type":54,"value":1020}," assumptions through\ntypes, not broad try\u002Fcatch blocks.",{"type":49,"tag":63,"props":1022,"children":1024},{"id":1023},"renderer-migration-notes",[1025],{"type":54,"value":1026},"Renderer Migration Notes",{"type":49,"tag":57,"props":1028,"children":1029},{},[1030],{"type":54,"value":1031},"When replacing Xamarin.Forms renderers:",{"type":49,"tag":304,"props":1033,"children":1034},{},[1035,1046,1065,1083,1103],{"type":49,"tag":74,"props":1036,"children":1037},{},[1038,1040,1045],{"type":54,"value":1039},"Move renderer logic that creates native controls into ",{"type":49,"tag":80,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":54,"value":830},{"type":54,"value":111},{"type":49,"tag":74,"props":1047,"children":1048},{},[1049,1051,1057,1059,1064],{"type":54,"value":1050},"Move ",{"type":49,"tag":80,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":54,"value":1056},"OnElementChanged",{"type":54,"value":1058}," subscriptions into ",{"type":49,"tag":80,"props":1060,"children":1062},{"className":1061},[],[1063],{"type":54,"value":122},{"type":54,"value":111},{"type":49,"tag":74,"props":1066,"children":1067},{},[1068,1070,1075,1077,1082],{"type":54,"value":1069},"Move renderer cleanup into ",{"type":49,"tag":80,"props":1071,"children":1073},{"className":1072},[],[1074],{"type":54,"value":130},{"type":54,"value":1076},", and end with\n",{"type":49,"tag":80,"props":1078,"children":1080},{"className":1079},[],[1081],{"type":54,"value":424},{"type":54,"value":111},{"type":49,"tag":74,"props":1084,"children":1085},{},[1086,1088,1094,1096,1101],{"type":54,"value":1087},"Replace ",{"type":49,"tag":80,"props":1089,"children":1091},{"className":1090},[],[1092],{"type":54,"value":1093},"OnElementPropertyChanged",{"type":54,"value":1095}," switch statements with ",{"type":49,"tag":80,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":54,"value":93},{"type":54,"value":1102},"\nentries.",{"type":49,"tag":74,"props":1104,"children":1105},{},[1106,1108,1113,1115,1121],{"type":54,"value":1107},"Replace renderer actions with ",{"type":49,"tag":80,"props":1109,"children":1111},{"className":1110},[],[1112],{"type":54,"value":101},{"type":54,"value":1114}," entries or view methods that\ncall ",{"type":49,"tag":80,"props":1116,"children":1118},{"className":1117},[],[1119],{"type":54,"value":1120},"Handler?.Invoke",{"type":54,"value":111},{"type":49,"tag":63,"props":1123,"children":1125},{"id":1124},"validation-checklist",[1126],{"type":54,"value":1127},"Validation Checklist",{"type":49,"tag":70,"props":1129,"children":1130},{},[1131,1136,1141,1152,1157,1162],{"type":49,"tag":74,"props":1132,"children":1133},{},[1134],{"type":54,"value":1135},"The handler is registered in one startup location.",{"type":49,"tag":74,"props":1137,"children":1138},{},[1139],{"type":54,"value":1140},"Mapper keys are unique and scoped when customization should not be global.",{"type":49,"tag":74,"props":1142,"children":1143},{},[1144,1146,1151],{"type":54,"value":1145},"Native event subscriptions are unsubscribed in ",{"type":49,"tag":80,"props":1147,"children":1149},{"className":1148},[],[1150],{"type":54,"value":130},{"type":54,"value":111},{"type":49,"tag":74,"props":1153,"children":1154},{},[1155],{"type":54,"value":1156},"No platform namespace leaks into shared code unintentionally.",{"type":49,"tag":74,"props":1158,"children":1159},{},[1160],{"type":54,"value":1161},"The implementation builds for every target framework it is included in.",{"type":49,"tag":74,"props":1163,"children":1164},{},[1165],{"type":54,"value":1166},"Non-visual SDK work is not hidden in a handler.",{"type":49,"tag":1168,"props":1169,"children":1170},"style",{},[1171],{"type":54,"value":1172},"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":1174,"total":1337},[1175,1193,1210,1223,1240,1254,1271,1281,1293,1303,1316,1327],{"slug":1176,"name":1176,"fn":1177,"description":1178,"org":1179,"tags":1180,"stars":1190,"repoUrl":1191,"updatedAt":1192},"multithreaded-task-migration","migrate MSBuild tasks to multithreaded mode","Guide for migrating MSBuild tasks to multithreaded mode support, including compatibility red-team review. Use this when converting tasks to thread-safe versions, implementing IMultiThreadableTask, adding TaskEnvironment support, or auditing migrations for behavioral compatibility.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1181,1184,1187],{"name":1182,"slug":1183,"type":15},".NET","net",{"name":1185,"slug":1186,"type":15},"Engineering","engineering",{"name":1188,"slug":1189,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":1207,"repoUrl":1208,"updatedAt":1209},"analyzing-dotnet-performance","analyze .NET code for performance anti-patterns","Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I\u002FO with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1199,1200,1203,1206],{"name":1182,"slug":1183,"type":15},{"name":1201,"slug":1202,"type":15},"Code Analysis","code-analysis",{"name":1204,"slug":1205,"type":15},"Debugging","debugging",{"name":1188,"slug":1189,"type":15},4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:23:25.400375",{"slug":1211,"name":1211,"fn":1212,"description":1213,"org":1214,"tags":1215,"stars":1207,"repoUrl":1208,"updatedAt":1222},"android-tombstone-symbolication","symbolicate .NET runtime frames in Android tombstones","Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app crash from a tombstone, resolving native backtrace frames in libmonosgen-2.0.so or libcoreclr.so to .NET runtime source code, or investigating SIGABRT, SIGSEGV, or other native signals originating from the .NET runtime on Android. DO NOT USE FOR pure Java\u002FKotlin crashes, managed .NET exceptions that are already captured in logcat, or iOS crash logs. INVOKES Symbolicate-Tombstone.ps1 script, llvm-symbolizer, Microsoft symbol server.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1216,1217,1219,1220],{"name":1182,"slug":1183,"type":15},{"name":1218,"slug":29,"type":15},"Android",{"name":1204,"slug":1205,"type":15},{"name":1221,"slug":34,"type":15},"Microsoft","2026-07-12T08:23:21.595572",{"slug":1224,"name":1224,"fn":1225,"description":1226,"org":1227,"tags":1228,"stars":1207,"repoUrl":1208,"updatedAt":1239},"apple-crash-symbolication","symbolicate .NET runtime frames in crash logs","Symbolicate .NET runtime frames in Apple platform .ips crash logs (iOS, tvOS, Mac Catalyst, macOS). Extracts UUIDs and addresses from the native backtrace, locates dSYM debug symbols, and runs atos to produce function names with source file and line numbers. Automatically downloads .dwarf symbols from the Microsoft symbol server using Mach-O UUIDs. USE FOR triaging a .NET MAUI or Mono app crash from an .ips file on any Apple platform, resolving native backtrace frames in libcoreclr or libmonosgen-2.0 to .NET runtime source code, retrieving .ips crash logs from a connected iOS device or iPhone, or investigating EXC_CRASH, EXC_BAD_ACCESS, SIGABRT, or SIGSEGV originating from the .NET runtime. DO NOT USE FOR pure Swift\u002FObjective-C crashes with no .NET components, or Android tombstone files. INVOKES Symbolicate-Crash.ps1 script, atos, dwarfdump, idevicecrashreport.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1229,1230,1231,1233,1236],{"name":1182,"slug":1183,"type":15},{"name":1204,"slug":1205,"type":15},{"name":1232,"slug":31,"type":15},"iOS",{"name":1234,"slug":1235,"type":15},"macOS","macos",{"name":1237,"slug":1238,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":1241,"name":1241,"fn":1242,"description":1243,"org":1244,"tags":1245,"stars":1207,"repoUrl":1208,"updatedAt":1253},"assertion-quality","evaluate assertion quality in test suites","Analyzes the variety and depth of assertions across test suites in any language. Use when the user asks to evaluate assertion quality, find shallow tests, identify assertion-free tests (no assertions or only trivial ones like Assert.IsNotNull \u002F toBeTruthy()), flag self-referential or tautological assertions, measure assertion diversity, or audit whether tests verify different facets of behavior. Polyglot: .NET, Python, TS\u002FJS, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, C++. DO NOT USE FOR: writing new tests (use code-testing-agent \u002F writing-mstest-tests), mutation reasoning about whether tests would catch a bug (use test-gap-analysis), or a general severity-ranked anti-pattern audit (use test-anti-patterns), fixing or rewriting assertions, or writing, fixing, or modernizing MSTest tests, assertions, or attributes (use writing-mstest-tests).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1246,1247,1250],{"name":1201,"slug":1202,"type":15},{"name":1248,"slug":1249,"type":15},"QA","qa",{"name":1251,"slug":1252,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":1255,"name":1255,"fn":1256,"description":1257,"org":1258,"tags":1259,"stars":1207,"repoUrl":1208,"updatedAt":1270},"author-component","create and review Blazor components","Create or review Blazor components (.razor files) with correct architecture. USE FOR: writing new Blazor components that do NOT involve JavaScript interop, implementing parameters and EventCallback, RenderFragment slots, component lifecycle (OnInitializedAsync, OnParametersSet), async patterns, IAsyncDisposable, CancellationToken, CSS isolation, code-behind. DO NOT USE FOR: creating new projects (use create-blazor-project), JavaScript interop or calling browser APIs from Blazor (use use-js-interop), forms and validation (use collect-user-input), prerendering issues (use support-prerendering), HTTP data fetching patterns (use fetch-and-send-data), coordinating state between unrelated components (use coordinate-components).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1260,1261,1264,1266,1267],{"name":1182,"slug":1183,"type":15},{"name":1262,"slug":1263,"type":15},"Blazor","blazor",{"name":1265,"slug":352,"type":15},"C#",{"name":20,"slug":21,"type":15},{"name":1268,"slug":1269,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":1272,"name":1272,"fn":1273,"description":1274,"org":1275,"tags":1276,"stars":1207,"repoUrl":1208,"updatedAt":1280},"binlog-failure-analysis","analyze MSBuild binary logs","Analyze MSBuild binary logs to diagnose build failures. USE FOR: build errors that are unclear from console output, diagnosing cascading failures across multi-project builds, tracing MSBuild target execution order, and generally any MSBuild build issues. Requires an existing .binlog file. DO NOT USE FOR: generating binlogs (use binlog-generation), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1277,1278,1279],{"name":1201,"slug":1202,"type":15},{"name":1204,"slug":1205,"type":15},{"name":1221,"slug":34,"type":15},"2026-07-12T08:21:34.637923",{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1285,"tags":1286,"stars":1207,"repoUrl":1208,"updatedAt":1292},"binlog-generation","generate MSBuild binary logs for diagnostics","Generate MSBuild binary logs (binlogs) for build diagnostics and analysis. USE FOR: adding \u002Fbl:{} to any dotnet build, test, pack, publish, or restore command to capture a full build execution trace, prerequisite for binlog-failure-analysis and build-perf-diagnostics skills, enabling post-build investigation of errors or performance. Requires MSBuild 17.8+ \u002F .NET 8 SDK+ for {} placeholder; PowerShell needs -bl:{{}}. DO NOT USE FOR: non-MSBuild build systems (npm, Maven, CMake), analyzing an existing binlog (use binlog-failure-analysis instead).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1287,1290,1291],{"name":1288,"slug":1289,"type":15},"Build","build",{"name":1204,"slug":1205,"type":15},{"name":1185,"slug":1186,"type":15},"2026-07-19T05:38:19.340791",{"slug":1294,"name":1294,"fn":1295,"description":1296,"org":1297,"tags":1298,"stars":1207,"repoUrl":1208,"updatedAt":1302},"build-parallelism","optimize MSBuild build parallelism","Diagnose and fix under-parallelized MSBuild builds. USE WHEN a multi-project solution build is slower than expected, doesn't speed up when you add cores, pegs a single core while others idle, or you want to know why `-m` isn't helping. Note: `\u002Fmaxcpucount` default is 1 (sequential) — always pass `-m` for parallel builds. Covers finding the critical path (longest serial ProjectReference chain), graph build (`\u002Fgraph`), BuildInParallel, and solution filters (`.slnf`). DO NOT USE FOR: single-project builds, incremental issues (use incremental-build), compilation slowness inside one project (use build-perf-diagnostics), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1299,1300,1301],{"name":1182,"slug":1183,"type":15},{"name":1185,"slug":1186,"type":15},{"name":1188,"slug":1189,"type":15},"2026-07-19T05:38:18.364937",{"slug":1304,"name":1304,"fn":1305,"description":1306,"org":1307,"tags":1308,"stars":1207,"repoUrl":1208,"updatedAt":1315},"build-perf-baseline","establish and optimize build performance baselines","Establish build performance baselines and apply systematic optimization techniques. USE FOR: diagnosing slow builds, establishing before\u002Fafter measurements (cold, warm, no-op scenarios), applying optimization strategies like MSBuild Server, static graph builds, artifacts output, and dependency graph trimming. Start here before diving into build-perf-diagnostics, incremental-build, or build-parallelism. DO NOT USE FOR: non-MSBuild build systems, detailed bottleneck analysis (use build-perf-diagnostics after baselining).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1309,1310,1313,1314],{"name":1185,"slug":1186,"type":15},{"name":1311,"slug":1312,"type":15},"Monitoring","monitoring",{"name":1188,"slug":1189,"type":15},{"name":1251,"slug":1252,"type":15},"2026-07-12T08:21:35.865649",{"slug":1317,"name":1317,"fn":1318,"description":1319,"org":1320,"tags":1321,"stars":1207,"repoUrl":1208,"updatedAt":1326},"build-perf-diagnostics","diagnose MSBuild build performance bottlenecks","Diagnose MSBuild build performance bottlenecks using binary log analysis. USE FOR: identifying why builds are slow by analyzing binlog performance summaries, detecting ResolveAssemblyReference (RAR) taking >5s, Roslyn analyzers consuming >30% of Csc time, single targets dominating >50% of build time, node utilization below 80%, excessive Copy tasks, NuGet restore running every build. Covers timeline analysis, Target\u002FTask Performance Summary interpretation, and 7 common bottleneck categories. Use after build-perf-baseline has established measurements. DO NOT USE FOR: establishing initial baselines (use build-perf-baseline first), fixing incremental build issues (use incremental-build), parallelism tuning (use build-parallelism), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1322,1323,1324,1325],{"name":1182,"slug":1183,"type":15},{"name":1204,"slug":1205,"type":15},{"name":1185,"slug":1186,"type":15},{"name":1188,"slug":1189,"type":15},"2026-07-12T08:21:40.961722",{"slug":1328,"name":1328,"fn":1329,"description":1330,"org":1331,"tags":1332,"stars":1207,"repoUrl":1208,"updatedAt":1336},"check-bin-obj-clash","detect MSBuild output path conflicts","Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. USE FOR: builds failing with 'Cannot create a file when that file already exists', 'The process cannot access the file because it is being used by another process', intermittent build failures that succeed on retry, or missing\u002Foverwritten outputs in multi-project or multi-targeting builds where bin\u002Fobj (or project.assets.json) collide. Common causes: shared OutputPath, missing AppendTargetFrameworkToOutputPath, extra global properties (e.g. PublishReadyToRun), or SetTargetFramework on a ProjectReference to a single-targeting project. DO NOT USE FOR: file access errors unrelated to MSBuild (OS-level locking), single-project single-TFM builds, non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1333,1334,1335],{"name":1204,"slug":1205,"type":15},{"name":1185,"slug":1186,"type":15},{"name":1248,"slug":1249,"type":15},"2026-07-19T05:38:14.336279",144,{"items":1339,"total":1437},[1340,1356,1369,1381,1394,1410,1426],{"slug":1341,"name":1341,"fn":1342,"description":1343,"org":1344,"tags":1345,"stars":22,"repoUrl":23,"updatedAt":1355},"android-slim-bindings","create Android slim bindings for .NET","Create Android slim bindings for MAUI\u002F.NET Android. USE FOR: slim Android binding, Kotlin\u002FJava wrappers, build.gradle.kts, Maven, AAR\u002FJAR, AndroidMavenLibrary, AndroidLibrary, @JvmStatic, XA4241\u002FXA4242, Xamarin.AndroidX\u002FKotlin NuGets. DO NOT USE FOR: iOS\u002FmacOS bindings, general MAUI apps, or NuGet packaging.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1346,1347,1348,1351,1354],{"name":1182,"slug":1183,"type":15},{"name":1218,"slug":29,"type":15},{"name":1349,"slug":1350,"type":15},"Java","java",{"name":1352,"slug":1353,"type":15},"Kotlin","kotlin",{"name":17,"slug":18,"type":15},"2026-07-12T08:22:54.006105",{"slug":1357,"name":1357,"fn":1358,"description":1359,"org":1360,"tags":1361,"stars":22,"repoUrl":23,"updatedAt":1368},"devflow-automation","automate .NET MAUI app state","Automate MAUI app state through DevFlow Actions. USE FOR: `[DevFlowAction]` shortcuts, login, seed data, deep screens. DO NOT USE FOR: arbitrary methods, DI internals, UI MCP tools, connectivity, or build\u002Fdeploy issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1362,1363,1366,1367],{"name":1182,"slug":1183,"type":15},{"name":1364,"slug":1365,"type":15},"Automation","automation",{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-07-12T08:22:56.616564",{"slug":1370,"name":1370,"fn":1371,"description":1372,"org":1373,"tags":1374,"stars":22,"repoUrl":23,"updatedAt":1380},"devflow-connect","diagnose DevFlow agent connectivity issues","Diagnose DevFlow agent connectivity. USE FOR: `maui devflow` connection failures, agent not found, ports, adb forwarding, broker. DO NOT USE FOR: build failures, setup, visual tree, or Blazor CDP.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1375,1376,1377],{"name":1204,"slug":1205,"type":15},{"name":13,"slug":14,"type":15},{"name":1378,"slug":1379,"type":15},"Networking","networking","2026-07-12T08:22:48.847431",{"slug":1382,"name":1382,"fn":1383,"description":1384,"org":1385,"tags":1386,"stars":22,"repoUrl":23,"updatedAt":1393},"dotnet-workload-info","discover MAUI workload metadata","Discover MAUI workload metadata from live NuGet APIs. USE FOR: workload manifest lookup, WorkloadDependencies.json, v3-flatcontainer, CLI-to-NuGet version conversion, Xcode\u002FJDK\u002FAndroid SDK requirements, CI sdkmanager packages, `packageid:Microsoft.Maui.Controls`. DO NOT USE FOR: installing workloads, build debugging, or app version edits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1387,1388,1391,1392],{"name":1265,"slug":352,"type":15},{"name":1389,"slug":1390,"type":15},"CLI","cli",{"name":1185,"slug":1186,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T08:22:46.318953",{"slug":1395,"name":1395,"fn":1396,"description":1397,"org":1398,"tags":1399,"stars":22,"repoUrl":23,"updatedAt":1409},"ios-slim-bindings","create iOS slim bindings for MAUI","Create iOS slim bindings for MAUI. USE FOR: slim iOS binding, Native Library Interop, Swift\u002FObjective-C wrappers, XcodeGen project.yml, Podfile, CocoaPods static linking, BUILD_LIBRARY_FOR_DISTRIBUTION, XcodeProject MSBuild, `@objc`\u002F`[Export]` selector crashes, async completion handlers. DO NOT USE FOR: Android bindings, general MAUI apps, or NuGet packaging.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1400,1401,1402,1403,1406],{"name":1182,"slug":1183,"type":15},{"name":1232,"slug":31,"type":15},{"name":13,"slug":14,"type":15},{"name":1404,"slug":1405,"type":15},"Swift","swift",{"name":1407,"slug":1408,"type":15},"Xcode","xcode","2026-07-12T08:22:50.128667",{"slug":1411,"name":1411,"fn":1412,"description":1413,"org":1414,"tags":1415,"stars":22,"repoUrl":23,"updatedAt":1425},"maui-accessibility","implement accessibility in .NET MAUI apps","Make .NET MAUI apps accessible with semantic properties, screen reader labels\u002Fhints, heading levels, focus, announcements, AutomationProperties, touch targets, and platform checks. USE FOR: accessibility audits, WCAG UI fixes, TalkBack\u002FVoiceOver\u002FNarrator behavior, SemanticProperties.Description\u002FHint\u002FHeadingLevel, SemanticScreenReader.Announce, SetSemanticFocus, avoiding redundant Label metadata, hiding decorative content with IsInAccessibleTree=false, and CollectionView row semantics. DO NOT USE FOR: general layout, UI automation only, or performance tuning.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1416,1417,1420,1421,1422],{"name":1182,"slug":1183,"type":15},{"name":1418,"slug":1419,"type":15},"Accessibility","accessibility",{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":1423,"slug":1424,"type":15},"WCAG","wcag","2026-07-12T08:22:17.823583",{"slug":1427,"name":1427,"fn":1428,"description":1429,"org":1430,"tags":1431,"stars":22,"repoUrl":23,"updatedAt":1436},"maui-ai-debugging","debug .NET MAUI application issues","Legacy DevFlow debug skill. USE FOR: `maui-ai-debugging`, `maui devflow`, screenshots, visual tree, Blazor CDP, simulator\u002Femulator debugging. DO NOT USE FOR: setup, desktop automation, AppleScript, host `xdotool`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1432,1433,1434,1435],{"name":1182,"slug":1183,"type":15},{"name":1204,"slug":1205,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-07-12T08:22:52.634889",32]