[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-dotnet-workload-info":3,"mdc--eft75i-key":47,"related-org-dotnet-dotnet-workload-info":2356,"related-repo-dotnet-dotnet-workload-info":2518},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":42,"sourceUrl":45,"mdContent":46},"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},"dotnet",".NET (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdotnet.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"C#","csharp","tag",{"name":17,"slug":18,"type":15},"MAUI","maui",{"name":20,"slug":21,"type":15},"CLI","cli",{"name":23,"slug":24,"type":15},"Engineering","engineering",190,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmaui-labs","2026-07-12T08:22:46.318953",null,21,[31,32,33,8,34,35,18,36,37,38,39,40,41],"ai","android","desktop","ios","maccatalyst","mcp","microsoft","mobile","multi-platform","user-interface","winui",{"repoUrl":26,"stars":25,"forks":29,"topics":43,"description":44},[31,32,33,8,34,35,18,36,37,38,39,40,41],"Experimental and pre-release tools for .NET MAUI","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmaui-labs\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-maui\u002Fskills\u002Fdotnet-workload-info","---\nname: dotnet-workload-info\ndescription: >-\n  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.\n---\n\n# .NET Workload Info Discovery\n\nQuery live NuGet APIs to discover authoritative .NET SDK versions, workload sets, and dependency requirements.\n\n## Inputs\n\n| Parameter | Required | Example | Notes |\n|-----------|----------|---------|-------|\n| dotnetVersion | yes | 9.0, 10.0 | Major.minor format |\n| prerelease | no | true\u002Ffalse | Default false |\n| workload | no | ios, android, maui | Alias or full id |\n\n## Workload Aliases\n\n| Alias | Full ID |\n|-------|---------|\n| ios | microsoft.net.sdk.ios |\n| android | microsoft.net.sdk.android |\n| maccatalyst | microsoft.net.sdk.maccatalyst |\n| macos | microsoft.net.sdk.macos |\n| tvos | microsoft.net.sdk.tvos |\n| maui | microsoft.net.sdk.maui |\n\n---\n\n## Discovery Process\n\n### Step 1: Get Latest SDK Version\n\n```bash\ncurl -s \"https:\u002F\u002Fdotnetcli.blob.core.windows.net\u002Fdotnet\u002Frelease-metadata\u002Freleases-index.json\" | \\\n  jq '.[\"releases-index\"][] | select(.[\"channel-version\"]==\"{MAJOR}.0\")'\n```\n\nExtract `latest-sdk` and derive SDK band:\n- `10.0.103` → band `10.0.100` (hundreds digit)\n- `10.0.205` → band `10.0.200`\n\n### Step 2: Find Workload Set Package \u002F Version\n\nUse the `dotnet workload search version` command to discover the latest workload set version (requires .NET SDK 9.0.200+ with workload sets support):\n\n```bash\ndotnet workload search version\n# Returns: workload set version, e.g. 10.0.103\n```\n\n```powershell\ndotnet workload search version\n```\n\n> **Note**: This command requires .NET SDK 9.0.200 or later. If unavailable, use the NuGet API instead:\n> `https:\u002F\u002Fapi.nuget.org\u002Fv3\u002Fregistration5-gz-semver2\u002Fmicrosoft.net.workloads.10.0.100\u002Findex.json`\n\nThe returned workloadVersion is the CLI version to use with --version flag.\n\n**Version conversion**:\nTo convert this to the NuGet package version (needed for Steps 3-4):\n\nCLI 10.0.103 → NuGet 10.103.0 (remove middle .0., combine)\nDo not use the CLI version as the NuGet package version in flat-container URLs.\nThe NuGet package is `Microsoft.NET.Workloads.{band}` where `{band}` is the SDK band derived from the CLI version (for example, CLI 10.0.103 → package `Microsoft.NET.Workloads.10.0.100`, NuGet version `10.103.0`).\n\n\n### Step 3: Download Workload Set Manifest\n\n```bash\ncurl -o workloadset.nupkg \"https:\u002F\u002Fapi.nuget.org\u002Fv3-flatcontainer\u002Fmicrosoft.net.workloads.{band}\u002F{version}\u002Fmicrosoft.net.workloads.{band}.{version}.nupkg\"\nunzip -p workloadset.nupkg data\u002Fmicrosoft.net.workloads.workloadset.json\n```\n\nFormat: `\"{workload_id}\": \"{manifestVersion}\u002F{sdkBand}\"`\n\n### Step 4: Download Workload Manifest\n\nBuild package id: `{WorkloadId}.Manifest-{sdkBand}` (e.g., `Microsoft.NET.Sdk.iOS.Manifest-10.0.100`)\nUse the same SDK band discovered in Step 1 or extracted from the workload set entry. Do not hardcode `10.0.100` when the current SDK band is `10.0.200`, `10.0.300`, or another band.\n\n```bash\ncurl -o manifest.nupkg \"https:\u002F\u002Fapi.nuget.org\u002Fv3-flatcontainer\u002F{packageid}\u002F{version}\u002F{packageid}.{version}.nupkg\"\nunzip -p manifest.nupkg data\u002FWorkloadDependencies.json\n```\n\n### Step 5: Parse Dependencies\n\n**Android** (`microsoft.net.sdk.android`):\n```json\n{\n  \"jdk\": { \"version\": \"[17.0,22.0)\", \"recommendedVersion\": \"17.0.14\" },\n  \"androidsdk\": {\n    \"packages\": [\"build-tools;35.0.0\", \"platform-tools\", \"platforms;android-35\"],\n    \"apiLevel\": \"35\", \"buildToolsVersion\": \"35.0.0\"\n  }\n}\n```\n\nAfter extracting `androidsdk.packages`, show how to install them in CI:\n\n```bash\nsdkmanager --install \"platform-tools\" \"platforms;android-35\" \"build-tools;35.0.0\"\n```\n\nUse the exact package IDs from `WorkloadDependencies.json`; do not copy the sample\nAPI level or build-tools version blindly.\n\nWhen the user asks for CI-ready Android SDK package discovery, include this\nminimum flow in the answer:\n\n1. Download `Microsoft.NET.Workloads.{sdkBand}` and read\n   `data\u002Fmicrosoft.net.workloads.workloadset.json` (`workloadset.json`).\n2. Read the `microsoft.net.sdk.android` entry to get\n   `{manifestVersion}\u002F{manifestSdkBand}`.\n3. Download `Microsoft.NET.Sdk.Android.Manifest-{manifestSdkBand}` at that\n   manifest version and read `data\u002FWorkloadDependencies.json`.\n4. Extract `androidsdk.packages`, including `platform-tools`,\n   `platforms;android-*`, `build-tools;*`, and `cmdline-tools;*`. Filter by\n   `\"optional\": \"false\"` when the manifest marks packages optional.\n5. Feed the extracted package IDs to `sdkmanager --install`.\n\n**iOS\u002FmacOS** (`microsoft.net.sdk.ios`):\n```json\n{\n  \"xcode\": { \"version\": \"[26.2,)\", \"recommendedVersion\": \"26.2\" },\n  \"sdk\": { \"version\": \"26.2\" }\n}\n```\n\n**Version ranges**: `[17.0,22.0)` = >=17.0 AND \u003C22.0; `[26.2,)` = >=26.2\n\n---\n\n## MAUI NuGet Packages\n\nMAUI packages may be newer than workload versions. Query for latest:\n\n```bash\ncurl -s \"https:\u002F\u002Fazuresearch-usnc.nuget.org\u002Fquery?q=packageid:Microsoft.Maui.Controls&prerelease=false\" | \\\n  jq '.data[0].versions | map(select(.version | startswith(\"{MAJOR}.\"))) | last'\n```\n\nWhen the user asks for the NuGet search API or an exact package ID filter, use\n`https:\u002F\u002Fazuresearch-usnc.nuget.org\u002Fquery?q=packageid:\u003CPackageId>` and show the\n`packageid:` filter. Do not answer with only the flat-container or registration\nendpoints; those are useful follow-up APIs but they are not the search API.\n\nKey packages: `Microsoft.Maui.Controls`, `Microsoft.Maui.Essentials`, `Microsoft.Maui.Graphics`\n\nTo use newer version than workload:\n```xml\n\u003CPackageReference Include=\"Microsoft.Maui.Controls\" Version=\"10.0.30\" \u002F>\n```\n\n---\n\n## Output Format\n\n```json\n{\n  \"dotnetVersion\": \"10.0\",\n  \"latestSdk\": \"10.0.102\",\n  \"sdkBand\": \"10.0.100\",\n  \"workloadSet\": { \"packageId\": \"...\", \"nugetVersion\": \"10.102.0\", \"cliVersion\": \"10.0.102\" },\n  \"workloads\": [{\n    \"workloadId\": \"microsoft.net.sdk.ios\",\n    \"manifestVersion\": \"26.2.10191\",\n    \"sdkBand\": \"10.0.100\",\n    \"dependencies\": { \"xcode\": { \"versionRange\": \"[26.2,)\", \"recommendedVersion\": \"26.2\" } }\n  }],\n  \"mauiNugets\": [{ \"packageId\": \"Microsoft.Maui.Controls\", \"latestVersion\": \"10.0.30\" }]\n}\n```\n\n---\n\n## Error Handling\n\n- No results → retry with `prerelease=true`\n- Missing WorkloadDependencies.json → report explicitly\n- Missing dependency key → note which keys absent\n\n## Best Practices\n\n- ALWAYS fetch live data; never hardcode versions\n- ALWAYS include sdkBand with manifest versions\n- Show exact URLs used for transparency\n\n## Reference\n\nSee `references\u002Fworkload-discovery-process.md` for detailed NuGet API documentation and complete examples.\n",{"data":48,"body":49},{"name":4,"description":6},{"type":50,"children":51},"root",[52,61,67,74,180,186,282,286,292,299,380,393,433,439,452,490,506,527,532,542,579,585,645,656,662,705,761,767,784,1090,1103,1159,1172,1177,1308,1323,1491,1515,1518,1524,1529,1588,1609,1634,1639,1655,1658,1664,2274,2277,2283,2307,2313,2331,2337,2350],{"type":53,"tag":54,"props":55,"children":57},"element","h1",{"id":56},"net-workload-info-discovery",[58],{"type":59,"value":60},"text",".NET Workload Info Discovery",{"type":53,"tag":62,"props":63,"children":64},"p",{},[65],{"type":59,"value":66},"Query live NuGet APIs to discover authoritative .NET SDK versions, workload sets, and dependency requirements.",{"type":53,"tag":68,"props":69,"children":71},"h2",{"id":70},"inputs",[72],{"type":59,"value":73},"Inputs",{"type":53,"tag":75,"props":76,"children":77},"table",{},[78,107],{"type":53,"tag":79,"props":80,"children":81},"thead",{},[82],{"type":53,"tag":83,"props":84,"children":85},"tr",{},[86,92,97,102],{"type":53,"tag":87,"props":88,"children":89},"th",{},[90],{"type":59,"value":91},"Parameter",{"type":53,"tag":87,"props":93,"children":94},{},[95],{"type":59,"value":96},"Required",{"type":53,"tag":87,"props":98,"children":99},{},[100],{"type":59,"value":101},"Example",{"type":53,"tag":87,"props":103,"children":104},{},[105],{"type":59,"value":106},"Notes",{"type":53,"tag":108,"props":109,"children":110},"tbody",{},[111,135,158],{"type":53,"tag":83,"props":112,"children":113},{},[114,120,125,130],{"type":53,"tag":115,"props":116,"children":117},"td",{},[118],{"type":59,"value":119},"dotnetVersion",{"type":53,"tag":115,"props":121,"children":122},{},[123],{"type":59,"value":124},"yes",{"type":53,"tag":115,"props":126,"children":127},{},[128],{"type":59,"value":129},"9.0, 10.0",{"type":53,"tag":115,"props":131,"children":132},{},[133],{"type":59,"value":134},"Major.minor format",{"type":53,"tag":83,"props":136,"children":137},{},[138,143,148,153],{"type":53,"tag":115,"props":139,"children":140},{},[141],{"type":59,"value":142},"prerelease",{"type":53,"tag":115,"props":144,"children":145},{},[146],{"type":59,"value":147},"no",{"type":53,"tag":115,"props":149,"children":150},{},[151],{"type":59,"value":152},"true\u002Ffalse",{"type":53,"tag":115,"props":154,"children":155},{},[156],{"type":59,"value":157},"Default false",{"type":53,"tag":83,"props":159,"children":160},{},[161,166,170,175],{"type":53,"tag":115,"props":162,"children":163},{},[164],{"type":59,"value":165},"workload",{"type":53,"tag":115,"props":167,"children":168},{},[169],{"type":59,"value":147},{"type":53,"tag":115,"props":171,"children":172},{},[173],{"type":59,"value":174},"ios, android, maui",{"type":53,"tag":115,"props":176,"children":177},{},[178],{"type":59,"value":179},"Alias or full id",{"type":53,"tag":68,"props":181,"children":183},{"id":182},"workload-aliases",[184],{"type":59,"value":185},"Workload Aliases",{"type":53,"tag":75,"props":187,"children":188},{},[189,205],{"type":53,"tag":79,"props":190,"children":191},{},[192],{"type":53,"tag":83,"props":193,"children":194},{},[195,200],{"type":53,"tag":87,"props":196,"children":197},{},[198],{"type":59,"value":199},"Alias",{"type":53,"tag":87,"props":201,"children":202},{},[203],{"type":59,"value":204},"Full ID",{"type":53,"tag":108,"props":206,"children":207},{},[208,220,232,244,257,270],{"type":53,"tag":83,"props":209,"children":210},{},[211,215],{"type":53,"tag":115,"props":212,"children":213},{},[214],{"type":59,"value":34},{"type":53,"tag":115,"props":216,"children":217},{},[218],{"type":59,"value":219},"microsoft.net.sdk.ios",{"type":53,"tag":83,"props":221,"children":222},{},[223,227],{"type":53,"tag":115,"props":224,"children":225},{},[226],{"type":59,"value":32},{"type":53,"tag":115,"props":228,"children":229},{},[230],{"type":59,"value":231},"microsoft.net.sdk.android",{"type":53,"tag":83,"props":233,"children":234},{},[235,239],{"type":53,"tag":115,"props":236,"children":237},{},[238],{"type":59,"value":35},{"type":53,"tag":115,"props":240,"children":241},{},[242],{"type":59,"value":243},"microsoft.net.sdk.maccatalyst",{"type":53,"tag":83,"props":245,"children":246},{},[247,252],{"type":53,"tag":115,"props":248,"children":249},{},[250],{"type":59,"value":251},"macos",{"type":53,"tag":115,"props":253,"children":254},{},[255],{"type":59,"value":256},"microsoft.net.sdk.macos",{"type":53,"tag":83,"props":258,"children":259},{},[260,265],{"type":53,"tag":115,"props":261,"children":262},{},[263],{"type":59,"value":264},"tvos",{"type":53,"tag":115,"props":266,"children":267},{},[268],{"type":59,"value":269},"microsoft.net.sdk.tvos",{"type":53,"tag":83,"props":271,"children":272},{},[273,277],{"type":53,"tag":115,"props":274,"children":275},{},[276],{"type":59,"value":18},{"type":53,"tag":115,"props":278,"children":279},{},[280],{"type":59,"value":281},"microsoft.net.sdk.maui",{"type":53,"tag":283,"props":284,"children":285},"hr",{},[],{"type":53,"tag":68,"props":287,"children":289},{"id":288},"discovery-process",[290],{"type":59,"value":291},"Discovery Process",{"type":53,"tag":293,"props":294,"children":296},"h3",{"id":295},"step-1-get-latest-sdk-version",[297],{"type":59,"value":298},"Step 1: Get Latest SDK Version",{"type":53,"tag":300,"props":301,"children":306},"pre",{"className":302,"code":303,"language":304,"meta":305,"style":305},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s \"https:\u002F\u002Fdotnetcli.blob.core.windows.net\u002Fdotnet\u002Frelease-metadata\u002Freleases-index.json\" | \\\n  jq '.[\"releases-index\"][] | select(.[\"channel-version\"]==\"{MAJOR}.0\")'\n","bash","",[307],{"type":53,"tag":308,"props":309,"children":310},"code",{"__ignoreMap":305},[311,356],{"type":53,"tag":312,"props":313,"children":316},"span",{"class":314,"line":315},"line",1,[317,323,329,335,340,345,350],{"type":53,"tag":312,"props":318,"children":320},{"style":319},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[321],{"type":59,"value":322},"curl",{"type":53,"tag":312,"props":324,"children":326},{"style":325},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[327],{"type":59,"value":328}," -s",{"type":53,"tag":312,"props":330,"children":332},{"style":331},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[333],{"type":59,"value":334}," \"",{"type":53,"tag":312,"props":336,"children":337},{"style":325},[338],{"type":59,"value":339},"https:\u002F\u002Fdotnetcli.blob.core.windows.net\u002Fdotnet\u002Frelease-metadata\u002Freleases-index.json",{"type":53,"tag":312,"props":341,"children":342},{"style":331},[343],{"type":59,"value":344},"\"",{"type":53,"tag":312,"props":346,"children":347},{"style":331},[348],{"type":59,"value":349}," |",{"type":53,"tag":312,"props":351,"children":353},{"style":352},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[354],{"type":59,"value":355}," \\\n",{"type":53,"tag":312,"props":357,"children":359},{"class":314,"line":358},2,[360,365,370,375],{"type":53,"tag":312,"props":361,"children":362},{"style":319},[363],{"type":59,"value":364},"  jq",{"type":53,"tag":312,"props":366,"children":367},{"style":331},[368],{"type":59,"value":369}," '",{"type":53,"tag":312,"props":371,"children":372},{"style":325},[373],{"type":59,"value":374},".[\"releases-index\"][] | select(.[\"channel-version\"]==\"{MAJOR}.0\")",{"type":53,"tag":312,"props":376,"children":377},{"style":331},[378],{"type":59,"value":379},"'\n",{"type":53,"tag":62,"props":381,"children":382},{},[383,385,391],{"type":59,"value":384},"Extract ",{"type":53,"tag":308,"props":386,"children":388},{"className":387},[],[389],{"type":59,"value":390},"latest-sdk",{"type":59,"value":392}," and derive SDK band:",{"type":53,"tag":394,"props":395,"children":396},"ul",{},[397,417],{"type":53,"tag":398,"props":399,"children":400},"li",{},[401,407,409,415],{"type":53,"tag":308,"props":402,"children":404},{"className":403},[],[405],{"type":59,"value":406},"10.0.103",{"type":59,"value":408}," → band ",{"type":53,"tag":308,"props":410,"children":412},{"className":411},[],[413],{"type":59,"value":414},"10.0.100",{"type":59,"value":416}," (hundreds digit)",{"type":53,"tag":398,"props":418,"children":419},{},[420,426,427],{"type":53,"tag":308,"props":421,"children":423},{"className":422},[],[424],{"type":59,"value":425},"10.0.205",{"type":59,"value":408},{"type":53,"tag":308,"props":428,"children":430},{"className":429},[],[431],{"type":59,"value":432},"10.0.200",{"type":53,"tag":293,"props":434,"children":436},{"id":435},"step-2-find-workload-set-package-version",[437],{"type":59,"value":438},"Step 2: Find Workload Set Package \u002F Version",{"type":53,"tag":62,"props":440,"children":441},{},[442,444,450],{"type":59,"value":443},"Use the ",{"type":53,"tag":308,"props":445,"children":447},{"className":446},[],[448],{"type":59,"value":449},"dotnet workload search version",{"type":59,"value":451}," command to discover the latest workload set version (requires .NET SDK 9.0.200+ with workload sets support):",{"type":53,"tag":300,"props":453,"children":455},{"className":302,"code":454,"language":304,"meta":305,"style":305},"dotnet workload search version\n# Returns: workload set version, e.g. 10.0.103\n",[456],{"type":53,"tag":308,"props":457,"children":458},{"__ignoreMap":305},[459,481],{"type":53,"tag":312,"props":460,"children":461},{"class":314,"line":315},[462,466,471,476],{"type":53,"tag":312,"props":463,"children":464},{"style":319},[465],{"type":59,"value":8},{"type":53,"tag":312,"props":467,"children":468},{"style":325},[469],{"type":59,"value":470}," workload",{"type":53,"tag":312,"props":472,"children":473},{"style":325},[474],{"type":59,"value":475}," search",{"type":53,"tag":312,"props":477,"children":478},{"style":325},[479],{"type":59,"value":480}," version\n",{"type":53,"tag":312,"props":482,"children":483},{"class":314,"line":358},[484],{"type":53,"tag":312,"props":485,"children":487},{"style":486},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[488],{"type":59,"value":489},"# Returns: workload set version, e.g. 10.0.103\n",{"type":53,"tag":300,"props":491,"children":495},{"className":492,"code":493,"language":494,"meta":305,"style":305},"language-powershell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dotnet workload search version\n","powershell",[496],{"type":53,"tag":308,"props":497,"children":498},{"__ignoreMap":305},[499],{"type":53,"tag":312,"props":500,"children":501},{"class":314,"line":315},[502],{"type":53,"tag":312,"props":503,"children":504},{},[505],{"type":59,"value":493},{"type":53,"tag":507,"props":508,"children":509},"blockquote",{},[510],{"type":53,"tag":62,"props":511,"children":512},{},[513,519,521],{"type":53,"tag":514,"props":515,"children":516},"strong",{},[517],{"type":59,"value":518},"Note",{"type":59,"value":520},": This command requires .NET SDK 9.0.200 or later. If unavailable, use the NuGet API instead:\n",{"type":53,"tag":308,"props":522,"children":524},{"className":523},[],[525],{"type":59,"value":526},"https:\u002F\u002Fapi.nuget.org\u002Fv3\u002Fregistration5-gz-semver2\u002Fmicrosoft.net.workloads.10.0.100\u002Findex.json",{"type":53,"tag":62,"props":528,"children":529},{},[530],{"type":59,"value":531},"The returned workloadVersion is the CLI version to use with --version flag.",{"type":53,"tag":62,"props":533,"children":534},{},[535,540],{"type":53,"tag":514,"props":536,"children":537},{},[538],{"type":59,"value":539},"Version conversion",{"type":59,"value":541},":\nTo convert this to the NuGet package version (needed for Steps 3-4):",{"type":53,"tag":62,"props":543,"children":544},{},[545,547,553,555,561,563,569,571,577],{"type":59,"value":546},"CLI 10.0.103 → NuGet 10.103.0 (remove middle .0., combine)\nDo not use the CLI version as the NuGet package version in flat-container URLs.\nThe NuGet package is ",{"type":53,"tag":308,"props":548,"children":550},{"className":549},[],[551],{"type":59,"value":552},"Microsoft.NET.Workloads.{band}",{"type":59,"value":554}," where ",{"type":53,"tag":308,"props":556,"children":558},{"className":557},[],[559],{"type":59,"value":560},"{band}",{"type":59,"value":562}," is the SDK band derived from the CLI version (for example, CLI 10.0.103 → package ",{"type":53,"tag":308,"props":564,"children":566},{"className":565},[],[567],{"type":59,"value":568},"Microsoft.NET.Workloads.10.0.100",{"type":59,"value":570},", NuGet version ",{"type":53,"tag":308,"props":572,"children":574},{"className":573},[],[575],{"type":59,"value":576},"10.103.0",{"type":59,"value":578},").",{"type":53,"tag":293,"props":580,"children":582},{"id":581},"step-3-download-workload-set-manifest",[583],{"type":59,"value":584},"Step 3: Download Workload Set Manifest",{"type":53,"tag":300,"props":586,"children":588},{"className":302,"code":587,"language":304,"meta":305,"style":305},"curl -o workloadset.nupkg \"https:\u002F\u002Fapi.nuget.org\u002Fv3-flatcontainer\u002Fmicrosoft.net.workloads.{band}\u002F{version}\u002Fmicrosoft.net.workloads.{band}.{version}.nupkg\"\nunzip -p workloadset.nupkg data\u002Fmicrosoft.net.workloads.workloadset.json\n",[589],{"type":53,"tag":308,"props":590,"children":591},{"__ignoreMap":305},[592,623],{"type":53,"tag":312,"props":593,"children":594},{"class":314,"line":315},[595,599,604,609,613,618],{"type":53,"tag":312,"props":596,"children":597},{"style":319},[598],{"type":59,"value":322},{"type":53,"tag":312,"props":600,"children":601},{"style":325},[602],{"type":59,"value":603}," -o",{"type":53,"tag":312,"props":605,"children":606},{"style":325},[607],{"type":59,"value":608}," workloadset.nupkg",{"type":53,"tag":312,"props":610,"children":611},{"style":331},[612],{"type":59,"value":334},{"type":53,"tag":312,"props":614,"children":615},{"style":325},[616],{"type":59,"value":617},"https:\u002F\u002Fapi.nuget.org\u002Fv3-flatcontainer\u002Fmicrosoft.net.workloads.{band}\u002F{version}\u002Fmicrosoft.net.workloads.{band}.{version}.nupkg",{"type":53,"tag":312,"props":619,"children":620},{"style":331},[621],{"type":59,"value":622},"\"\n",{"type":53,"tag":312,"props":624,"children":625},{"class":314,"line":358},[626,631,636,640],{"type":53,"tag":312,"props":627,"children":628},{"style":319},[629],{"type":59,"value":630},"unzip",{"type":53,"tag":312,"props":632,"children":633},{"style":325},[634],{"type":59,"value":635}," -p",{"type":53,"tag":312,"props":637,"children":638},{"style":325},[639],{"type":59,"value":608},{"type":53,"tag":312,"props":641,"children":642},{"style":325},[643],{"type":59,"value":644}," data\u002Fmicrosoft.net.workloads.workloadset.json\n",{"type":53,"tag":62,"props":646,"children":647},{},[648,650],{"type":59,"value":649},"Format: ",{"type":53,"tag":308,"props":651,"children":653},{"className":652},[],[654],{"type":59,"value":655},"\"{workload_id}\": \"{manifestVersion}\u002F{sdkBand}\"",{"type":53,"tag":293,"props":657,"children":659},{"id":658},"step-4-download-workload-manifest",[660],{"type":59,"value":661},"Step 4: Download Workload Manifest",{"type":53,"tag":62,"props":663,"children":664},{},[665,667,673,675,681,683,688,690,695,697,703],{"type":59,"value":666},"Build package id: ",{"type":53,"tag":308,"props":668,"children":670},{"className":669},[],[671],{"type":59,"value":672},"{WorkloadId}.Manifest-{sdkBand}",{"type":59,"value":674}," (e.g., ",{"type":53,"tag":308,"props":676,"children":678},{"className":677},[],[679],{"type":59,"value":680},"Microsoft.NET.Sdk.iOS.Manifest-10.0.100",{"type":59,"value":682},")\nUse the same SDK band discovered in Step 1 or extracted from the workload set entry. Do not hardcode ",{"type":53,"tag":308,"props":684,"children":686},{"className":685},[],[687],{"type":59,"value":414},{"type":59,"value":689}," when the current SDK band is ",{"type":53,"tag":308,"props":691,"children":693},{"className":692},[],[694],{"type":59,"value":432},{"type":59,"value":696},", ",{"type":53,"tag":308,"props":698,"children":700},{"className":699},[],[701],{"type":59,"value":702},"10.0.300",{"type":59,"value":704},", or another band.",{"type":53,"tag":300,"props":706,"children":708},{"className":302,"code":707,"language":304,"meta":305,"style":305},"curl -o manifest.nupkg \"https:\u002F\u002Fapi.nuget.org\u002Fv3-flatcontainer\u002F{packageid}\u002F{version}\u002F{packageid}.{version}.nupkg\"\nunzip -p manifest.nupkg data\u002FWorkloadDependencies.json\n",[709],{"type":53,"tag":308,"props":710,"children":711},{"__ignoreMap":305},[712,741],{"type":53,"tag":312,"props":713,"children":714},{"class":314,"line":315},[715,719,723,728,732,737],{"type":53,"tag":312,"props":716,"children":717},{"style":319},[718],{"type":59,"value":322},{"type":53,"tag":312,"props":720,"children":721},{"style":325},[722],{"type":59,"value":603},{"type":53,"tag":312,"props":724,"children":725},{"style":325},[726],{"type":59,"value":727}," manifest.nupkg",{"type":53,"tag":312,"props":729,"children":730},{"style":331},[731],{"type":59,"value":334},{"type":53,"tag":312,"props":733,"children":734},{"style":325},[735],{"type":59,"value":736},"https:\u002F\u002Fapi.nuget.org\u002Fv3-flatcontainer\u002F{packageid}\u002F{version}\u002F{packageid}.{version}.nupkg",{"type":53,"tag":312,"props":738,"children":739},{"style":331},[740],{"type":59,"value":622},{"type":53,"tag":312,"props":742,"children":743},{"class":314,"line":358},[744,748,752,756],{"type":53,"tag":312,"props":745,"children":746},{"style":319},[747],{"type":59,"value":630},{"type":53,"tag":312,"props":749,"children":750},{"style":325},[751],{"type":59,"value":635},{"type":53,"tag":312,"props":753,"children":754},{"style":325},[755],{"type":59,"value":727},{"type":53,"tag":312,"props":757,"children":758},{"style":325},[759],{"type":59,"value":760}," data\u002FWorkloadDependencies.json\n",{"type":53,"tag":293,"props":762,"children":764},{"id":763},"step-5-parse-dependencies",[765],{"type":59,"value":766},"Step 5: Parse Dependencies",{"type":53,"tag":62,"props":768,"children":769},{},[770,775,777,782],{"type":53,"tag":514,"props":771,"children":772},{},[773],{"type":59,"value":774},"Android",{"type":59,"value":776}," (",{"type":53,"tag":308,"props":778,"children":780},{"className":779},[],[781],{"type":59,"value":231},{"type":59,"value":783},"):",{"type":53,"tag":300,"props":785,"children":789},{"className":786,"code":787,"language":788,"meta":305,"style":305},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"jdk\": { \"version\": \"[17.0,22.0)\", \"recommendedVersion\": \"17.0.14\" },\n  \"androidsdk\": {\n    \"packages\": [\"build-tools;35.0.0\", \"platform-tools\", \"platforms;android-35\"],\n    \"apiLevel\": \"35\", \"buildToolsVersion\": \"35.0.0\"\n  }\n}\n","json",[790],{"type":53,"tag":308,"props":791,"children":792},{"__ignoreMap":305},[793,801,899,925,1004,1072,1081],{"type":53,"tag":312,"props":794,"children":795},{"class":314,"line":315},[796],{"type":53,"tag":312,"props":797,"children":798},{"style":331},[799],{"type":59,"value":800},"{\n",{"type":53,"tag":312,"props":802,"children":803},{"class":314,"line":358},[804,809,815,819,824,829,833,838,842,846,850,855,859,864,868,873,877,881,885,890,894],{"type":53,"tag":312,"props":805,"children":806},{"style":331},[807],{"type":59,"value":808},"  \"",{"type":53,"tag":312,"props":810,"children":812},{"style":811},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[813],{"type":59,"value":814},"jdk",{"type":53,"tag":312,"props":816,"children":817},{"style":331},[818],{"type":59,"value":344},{"type":53,"tag":312,"props":820,"children":821},{"style":331},[822],{"type":59,"value":823},":",{"type":53,"tag":312,"props":825,"children":826},{"style":331},[827],{"type":59,"value":828}," {",{"type":53,"tag":312,"props":830,"children":831},{"style":331},[832],{"type":59,"value":334},{"type":53,"tag":312,"props":834,"children":835},{"style":319},[836],{"type":59,"value":837},"version",{"type":53,"tag":312,"props":839,"children":840},{"style":331},[841],{"type":59,"value":344},{"type":53,"tag":312,"props":843,"children":844},{"style":331},[845],{"type":59,"value":823},{"type":53,"tag":312,"props":847,"children":848},{"style":331},[849],{"type":59,"value":334},{"type":53,"tag":312,"props":851,"children":852},{"style":325},[853],{"type":59,"value":854},"[17.0,22.0)",{"type":53,"tag":312,"props":856,"children":857},{"style":331},[858],{"type":59,"value":344},{"type":53,"tag":312,"props":860,"children":861},{"style":331},[862],{"type":59,"value":863},",",{"type":53,"tag":312,"props":865,"children":866},{"style":331},[867],{"type":59,"value":334},{"type":53,"tag":312,"props":869,"children":870},{"style":319},[871],{"type":59,"value":872},"recommendedVersion",{"type":53,"tag":312,"props":874,"children":875},{"style":331},[876],{"type":59,"value":344},{"type":53,"tag":312,"props":878,"children":879},{"style":331},[880],{"type":59,"value":823},{"type":53,"tag":312,"props":882,"children":883},{"style":331},[884],{"type":59,"value":334},{"type":53,"tag":312,"props":886,"children":887},{"style":325},[888],{"type":59,"value":889},"17.0.14",{"type":53,"tag":312,"props":891,"children":892},{"style":331},[893],{"type":59,"value":344},{"type":53,"tag":312,"props":895,"children":896},{"style":331},[897],{"type":59,"value":898}," },\n",{"type":53,"tag":312,"props":900,"children":902},{"class":314,"line":901},3,[903,907,912,916,920],{"type":53,"tag":312,"props":904,"children":905},{"style":331},[906],{"type":59,"value":808},{"type":53,"tag":312,"props":908,"children":909},{"style":811},[910],{"type":59,"value":911},"androidsdk",{"type":53,"tag":312,"props":913,"children":914},{"style":331},[915],{"type":59,"value":344},{"type":53,"tag":312,"props":917,"children":918},{"style":331},[919],{"type":59,"value":823},{"type":53,"tag":312,"props":921,"children":922},{"style":331},[923],{"type":59,"value":924}," {\n",{"type":53,"tag":312,"props":926,"children":928},{"class":314,"line":927},4,[929,934,939,943,947,952,956,961,965,969,973,978,982,986,990,995,999],{"type":53,"tag":312,"props":930,"children":931},{"style":331},[932],{"type":59,"value":933},"    \"",{"type":53,"tag":312,"props":935,"children":936},{"style":319},[937],{"type":59,"value":938},"packages",{"type":53,"tag":312,"props":940,"children":941},{"style":331},[942],{"type":59,"value":344},{"type":53,"tag":312,"props":944,"children":945},{"style":331},[946],{"type":59,"value":823},{"type":53,"tag":312,"props":948,"children":949},{"style":331},[950],{"type":59,"value":951}," [",{"type":53,"tag":312,"props":953,"children":954},{"style":331},[955],{"type":59,"value":344},{"type":53,"tag":312,"props":957,"children":958},{"style":325},[959],{"type":59,"value":960},"build-tools;35.0.0",{"type":53,"tag":312,"props":962,"children":963},{"style":331},[964],{"type":59,"value":344},{"type":53,"tag":312,"props":966,"children":967},{"style":331},[968],{"type":59,"value":863},{"type":53,"tag":312,"props":970,"children":971},{"style":331},[972],{"type":59,"value":334},{"type":53,"tag":312,"props":974,"children":975},{"style":325},[976],{"type":59,"value":977},"platform-tools",{"type":53,"tag":312,"props":979,"children":980},{"style":331},[981],{"type":59,"value":344},{"type":53,"tag":312,"props":983,"children":984},{"style":331},[985],{"type":59,"value":863},{"type":53,"tag":312,"props":987,"children":988},{"style":331},[989],{"type":59,"value":334},{"type":53,"tag":312,"props":991,"children":992},{"style":325},[993],{"type":59,"value":994},"platforms;android-35",{"type":53,"tag":312,"props":996,"children":997},{"style":331},[998],{"type":59,"value":344},{"type":53,"tag":312,"props":1000,"children":1001},{"style":331},[1002],{"type":59,"value":1003},"],\n",{"type":53,"tag":312,"props":1005,"children":1007},{"class":314,"line":1006},5,[1008,1012,1017,1021,1025,1029,1034,1038,1042,1046,1051,1055,1059,1063,1068],{"type":53,"tag":312,"props":1009,"children":1010},{"style":331},[1011],{"type":59,"value":933},{"type":53,"tag":312,"props":1013,"children":1014},{"style":319},[1015],{"type":59,"value":1016},"apiLevel",{"type":53,"tag":312,"props":1018,"children":1019},{"style":331},[1020],{"type":59,"value":344},{"type":53,"tag":312,"props":1022,"children":1023},{"style":331},[1024],{"type":59,"value":823},{"type":53,"tag":312,"props":1026,"children":1027},{"style":331},[1028],{"type":59,"value":334},{"type":53,"tag":312,"props":1030,"children":1031},{"style":325},[1032],{"type":59,"value":1033},"35",{"type":53,"tag":312,"props":1035,"children":1036},{"style":331},[1037],{"type":59,"value":344},{"type":53,"tag":312,"props":1039,"children":1040},{"style":331},[1041],{"type":59,"value":863},{"type":53,"tag":312,"props":1043,"children":1044},{"style":331},[1045],{"type":59,"value":334},{"type":53,"tag":312,"props":1047,"children":1048},{"style":319},[1049],{"type":59,"value":1050},"buildToolsVersion",{"type":53,"tag":312,"props":1052,"children":1053},{"style":331},[1054],{"type":59,"value":344},{"type":53,"tag":312,"props":1056,"children":1057},{"style":331},[1058],{"type":59,"value":823},{"type":53,"tag":312,"props":1060,"children":1061},{"style":331},[1062],{"type":59,"value":334},{"type":53,"tag":312,"props":1064,"children":1065},{"style":325},[1066],{"type":59,"value":1067},"35.0.0",{"type":53,"tag":312,"props":1069,"children":1070},{"style":331},[1071],{"type":59,"value":622},{"type":53,"tag":312,"props":1073,"children":1075},{"class":314,"line":1074},6,[1076],{"type":53,"tag":312,"props":1077,"children":1078},{"style":331},[1079],{"type":59,"value":1080},"  }\n",{"type":53,"tag":312,"props":1082,"children":1084},{"class":314,"line":1083},7,[1085],{"type":53,"tag":312,"props":1086,"children":1087},{"style":331},[1088],{"type":59,"value":1089},"}\n",{"type":53,"tag":62,"props":1091,"children":1092},{},[1093,1095,1101],{"type":59,"value":1094},"After extracting ",{"type":53,"tag":308,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":59,"value":1100},"androidsdk.packages",{"type":59,"value":1102},", show how to install them in CI:",{"type":53,"tag":300,"props":1104,"children":1106},{"className":302,"code":1105,"language":304,"meta":305,"style":305},"sdkmanager --install \"platform-tools\" \"platforms;android-35\" \"build-tools;35.0.0\"\n",[1107],{"type":53,"tag":308,"props":1108,"children":1109},{"__ignoreMap":305},[1110],{"type":53,"tag":312,"props":1111,"children":1112},{"class":314,"line":315},[1113,1118,1123,1127,1131,1135,1139,1143,1147,1151,1155],{"type":53,"tag":312,"props":1114,"children":1115},{"style":319},[1116],{"type":59,"value":1117},"sdkmanager",{"type":53,"tag":312,"props":1119,"children":1120},{"style":325},[1121],{"type":59,"value":1122}," --install",{"type":53,"tag":312,"props":1124,"children":1125},{"style":331},[1126],{"type":59,"value":334},{"type":53,"tag":312,"props":1128,"children":1129},{"style":325},[1130],{"type":59,"value":977},{"type":53,"tag":312,"props":1132,"children":1133},{"style":331},[1134],{"type":59,"value":344},{"type":53,"tag":312,"props":1136,"children":1137},{"style":331},[1138],{"type":59,"value":334},{"type":53,"tag":312,"props":1140,"children":1141},{"style":325},[1142],{"type":59,"value":994},{"type":53,"tag":312,"props":1144,"children":1145},{"style":331},[1146],{"type":59,"value":344},{"type":53,"tag":312,"props":1148,"children":1149},{"style":331},[1150],{"type":59,"value":334},{"type":53,"tag":312,"props":1152,"children":1153},{"style":325},[1154],{"type":59,"value":960},{"type":53,"tag":312,"props":1156,"children":1157},{"style":331},[1158],{"type":59,"value":622},{"type":53,"tag":62,"props":1160,"children":1161},{},[1162,1164,1170],{"type":59,"value":1163},"Use the exact package IDs from ",{"type":53,"tag":308,"props":1165,"children":1167},{"className":1166},[],[1168],{"type":59,"value":1169},"WorkloadDependencies.json",{"type":59,"value":1171},"; do not copy the sample\nAPI level or build-tools version blindly.",{"type":53,"tag":62,"props":1173,"children":1174},{},[1175],{"type":59,"value":1176},"When the user asks for CI-ready Android SDK package discovery, include this\nminimum flow in the answer:",{"type":53,"tag":1178,"props":1179,"children":1180},"ol",{},[1181,1208,1228,1247,1296],{"type":53,"tag":398,"props":1182,"children":1183},{},[1184,1186,1192,1194,1200,1201,1207],{"type":59,"value":1185},"Download ",{"type":53,"tag":308,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":59,"value":1191},"Microsoft.NET.Workloads.{sdkBand}",{"type":59,"value":1193}," and read\n",{"type":53,"tag":308,"props":1195,"children":1197},{"className":1196},[],[1198],{"type":59,"value":1199},"data\u002Fmicrosoft.net.workloads.workloadset.json",{"type":59,"value":776},{"type":53,"tag":308,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":59,"value":1206},"workloadset.json",{"type":59,"value":578},{"type":53,"tag":398,"props":1209,"children":1210},{},[1211,1213,1218,1220,1226],{"type":59,"value":1212},"Read the ",{"type":53,"tag":308,"props":1214,"children":1216},{"className":1215},[],[1217],{"type":59,"value":231},{"type":59,"value":1219}," entry to get\n",{"type":53,"tag":308,"props":1221,"children":1223},{"className":1222},[],[1224],{"type":59,"value":1225},"{manifestVersion}\u002F{manifestSdkBand}",{"type":59,"value":1227},".",{"type":53,"tag":398,"props":1229,"children":1230},{},[1231,1232,1238,1240,1246],{"type":59,"value":1185},{"type":53,"tag":308,"props":1233,"children":1235},{"className":1234},[],[1236],{"type":59,"value":1237},"Microsoft.NET.Sdk.Android.Manifest-{manifestSdkBand}",{"type":59,"value":1239}," at that\nmanifest version and read ",{"type":53,"tag":308,"props":1241,"children":1243},{"className":1242},[],[1244],{"type":59,"value":1245},"data\u002FWorkloadDependencies.json",{"type":59,"value":1227},{"type":53,"tag":398,"props":1248,"children":1249},{},[1250,1251,1256,1258,1263,1265,1271,1272,1278,1280,1286,1288,1294],{"type":59,"value":384},{"type":53,"tag":308,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":59,"value":1100},{"type":59,"value":1257},", including ",{"type":53,"tag":308,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":59,"value":977},{"type":59,"value":1264},",\n",{"type":53,"tag":308,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":59,"value":1270},"platforms;android-*",{"type":59,"value":696},{"type":53,"tag":308,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":59,"value":1277},"build-tools;*",{"type":59,"value":1279},", and ",{"type":53,"tag":308,"props":1281,"children":1283},{"className":1282},[],[1284],{"type":59,"value":1285},"cmdline-tools;*",{"type":59,"value":1287},". Filter by\n",{"type":53,"tag":308,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":59,"value":1293},"\"optional\": \"false\"",{"type":59,"value":1295}," when the manifest marks packages optional.",{"type":53,"tag":398,"props":1297,"children":1298},{},[1299,1301,1307],{"type":59,"value":1300},"Feed the extracted package IDs to ",{"type":53,"tag":308,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":59,"value":1306},"sdkmanager --install",{"type":59,"value":1227},{"type":53,"tag":62,"props":1309,"children":1310},{},[1311,1316,1317,1322],{"type":53,"tag":514,"props":1312,"children":1313},{},[1314],{"type":59,"value":1315},"iOS\u002FmacOS",{"type":59,"value":776},{"type":53,"tag":308,"props":1318,"children":1320},{"className":1319},[],[1321],{"type":59,"value":219},{"type":59,"value":783},{"type":53,"tag":300,"props":1324,"children":1326},{"className":786,"code":1325,"language":788,"meta":305,"style":305},"{\n  \"xcode\": { \"version\": \"[26.2,)\", \"recommendedVersion\": \"26.2\" },\n  \"sdk\": { \"version\": \"26.2\" }\n}\n",[1327],{"type":53,"tag":308,"props":1328,"children":1329},{"__ignoreMap":305},[1330,1337,1427,1484],{"type":53,"tag":312,"props":1331,"children":1332},{"class":314,"line":315},[1333],{"type":53,"tag":312,"props":1334,"children":1335},{"style":331},[1336],{"type":59,"value":800},{"type":53,"tag":312,"props":1338,"children":1339},{"class":314,"line":358},[1340,1344,1349,1353,1357,1361,1365,1369,1373,1377,1381,1386,1390,1394,1398,1402,1406,1410,1414,1419,1423],{"type":53,"tag":312,"props":1341,"children":1342},{"style":331},[1343],{"type":59,"value":808},{"type":53,"tag":312,"props":1345,"children":1346},{"style":811},[1347],{"type":59,"value":1348},"xcode",{"type":53,"tag":312,"props":1350,"children":1351},{"style":331},[1352],{"type":59,"value":344},{"type":53,"tag":312,"props":1354,"children":1355},{"style":331},[1356],{"type":59,"value":823},{"type":53,"tag":312,"props":1358,"children":1359},{"style":331},[1360],{"type":59,"value":828},{"type":53,"tag":312,"props":1362,"children":1363},{"style":331},[1364],{"type":59,"value":334},{"type":53,"tag":312,"props":1366,"children":1367},{"style":319},[1368],{"type":59,"value":837},{"type":53,"tag":312,"props":1370,"children":1371},{"style":331},[1372],{"type":59,"value":344},{"type":53,"tag":312,"props":1374,"children":1375},{"style":331},[1376],{"type":59,"value":823},{"type":53,"tag":312,"props":1378,"children":1379},{"style":331},[1380],{"type":59,"value":334},{"type":53,"tag":312,"props":1382,"children":1383},{"style":325},[1384],{"type":59,"value":1385},"[26.2,)",{"type":53,"tag":312,"props":1387,"children":1388},{"style":331},[1389],{"type":59,"value":344},{"type":53,"tag":312,"props":1391,"children":1392},{"style":331},[1393],{"type":59,"value":863},{"type":53,"tag":312,"props":1395,"children":1396},{"style":331},[1397],{"type":59,"value":334},{"type":53,"tag":312,"props":1399,"children":1400},{"style":319},[1401],{"type":59,"value":872},{"type":53,"tag":312,"props":1403,"children":1404},{"style":331},[1405],{"type":59,"value":344},{"type":53,"tag":312,"props":1407,"children":1408},{"style":331},[1409],{"type":59,"value":823},{"type":53,"tag":312,"props":1411,"children":1412},{"style":331},[1413],{"type":59,"value":334},{"type":53,"tag":312,"props":1415,"children":1416},{"style":325},[1417],{"type":59,"value":1418},"26.2",{"type":53,"tag":312,"props":1420,"children":1421},{"style":331},[1422],{"type":59,"value":344},{"type":53,"tag":312,"props":1424,"children":1425},{"style":331},[1426],{"type":59,"value":898},{"type":53,"tag":312,"props":1428,"children":1429},{"class":314,"line":901},[1430,1434,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479],{"type":53,"tag":312,"props":1431,"children":1432},{"style":331},[1433],{"type":59,"value":808},{"type":53,"tag":312,"props":1435,"children":1436},{"style":811},[1437],{"type":59,"value":1438},"sdk",{"type":53,"tag":312,"props":1440,"children":1441},{"style":331},[1442],{"type":59,"value":344},{"type":53,"tag":312,"props":1444,"children":1445},{"style":331},[1446],{"type":59,"value":823},{"type":53,"tag":312,"props":1448,"children":1449},{"style":331},[1450],{"type":59,"value":828},{"type":53,"tag":312,"props":1452,"children":1453},{"style":331},[1454],{"type":59,"value":334},{"type":53,"tag":312,"props":1456,"children":1457},{"style":319},[1458],{"type":59,"value":837},{"type":53,"tag":312,"props":1460,"children":1461},{"style":331},[1462],{"type":59,"value":344},{"type":53,"tag":312,"props":1464,"children":1465},{"style":331},[1466],{"type":59,"value":823},{"type":53,"tag":312,"props":1468,"children":1469},{"style":331},[1470],{"type":59,"value":334},{"type":53,"tag":312,"props":1472,"children":1473},{"style":325},[1474],{"type":59,"value":1418},{"type":53,"tag":312,"props":1476,"children":1477},{"style":331},[1478],{"type":59,"value":344},{"type":53,"tag":312,"props":1480,"children":1481},{"style":331},[1482],{"type":59,"value":1483}," }\n",{"type":53,"tag":312,"props":1485,"children":1486},{"class":314,"line":927},[1487],{"type":53,"tag":312,"props":1488,"children":1489},{"style":331},[1490],{"type":59,"value":1089},{"type":53,"tag":62,"props":1492,"children":1493},{},[1494,1499,1501,1506,1508,1513],{"type":53,"tag":514,"props":1495,"children":1496},{},[1497],{"type":59,"value":1498},"Version ranges",{"type":59,"value":1500},": ",{"type":53,"tag":308,"props":1502,"children":1504},{"className":1503},[],[1505],{"type":59,"value":854},{"type":59,"value":1507}," = >=17.0 AND \u003C22.0; ",{"type":53,"tag":308,"props":1509,"children":1511},{"className":1510},[],[1512],{"type":59,"value":1385},{"type":59,"value":1514}," = >=26.2",{"type":53,"tag":283,"props":1516,"children":1517},{},[],{"type":53,"tag":68,"props":1519,"children":1521},{"id":1520},"maui-nuget-packages",[1522],{"type":59,"value":1523},"MAUI NuGet Packages",{"type":53,"tag":62,"props":1525,"children":1526},{},[1527],{"type":59,"value":1528},"MAUI packages may be newer than workload versions. Query for latest:",{"type":53,"tag":300,"props":1530,"children":1532},{"className":302,"code":1531,"language":304,"meta":305,"style":305},"curl -s \"https:\u002F\u002Fazuresearch-usnc.nuget.org\u002Fquery?q=packageid:Microsoft.Maui.Controls&prerelease=false\" | \\\n  jq '.data[0].versions | map(select(.version | startswith(\"{MAJOR}.\"))) | last'\n",[1533],{"type":53,"tag":308,"props":1534,"children":1535},{"__ignoreMap":305},[1536,1568],{"type":53,"tag":312,"props":1537,"children":1538},{"class":314,"line":315},[1539,1543,1547,1551,1556,1560,1564],{"type":53,"tag":312,"props":1540,"children":1541},{"style":319},[1542],{"type":59,"value":322},{"type":53,"tag":312,"props":1544,"children":1545},{"style":325},[1546],{"type":59,"value":328},{"type":53,"tag":312,"props":1548,"children":1549},{"style":331},[1550],{"type":59,"value":334},{"type":53,"tag":312,"props":1552,"children":1553},{"style":325},[1554],{"type":59,"value":1555},"https:\u002F\u002Fazuresearch-usnc.nuget.org\u002Fquery?q=packageid:Microsoft.Maui.Controls&prerelease=false",{"type":53,"tag":312,"props":1557,"children":1558},{"style":331},[1559],{"type":59,"value":344},{"type":53,"tag":312,"props":1561,"children":1562},{"style":331},[1563],{"type":59,"value":349},{"type":53,"tag":312,"props":1565,"children":1566},{"style":352},[1567],{"type":59,"value":355},{"type":53,"tag":312,"props":1569,"children":1570},{"class":314,"line":358},[1571,1575,1579,1584],{"type":53,"tag":312,"props":1572,"children":1573},{"style":319},[1574],{"type":59,"value":364},{"type":53,"tag":312,"props":1576,"children":1577},{"style":331},[1578],{"type":59,"value":369},{"type":53,"tag":312,"props":1580,"children":1581},{"style":325},[1582],{"type":59,"value":1583},".data[0].versions | map(select(.version | startswith(\"{MAJOR}.\"))) | last",{"type":53,"tag":312,"props":1585,"children":1586},{"style":331},[1587],{"type":59,"value":379},{"type":53,"tag":62,"props":1589,"children":1590},{},[1591,1593,1599,1601,1607],{"type":59,"value":1592},"When the user asks for the NuGet search API or an exact package ID filter, use\n",{"type":53,"tag":308,"props":1594,"children":1596},{"className":1595},[],[1597],{"type":59,"value":1598},"https:\u002F\u002Fazuresearch-usnc.nuget.org\u002Fquery?q=packageid:\u003CPackageId>",{"type":59,"value":1600}," and show the\n",{"type":53,"tag":308,"props":1602,"children":1604},{"className":1603},[],[1605],{"type":59,"value":1606},"packageid:",{"type":59,"value":1608}," filter. Do not answer with only the flat-container or registration\nendpoints; those are useful follow-up APIs but they are not the search API.",{"type":53,"tag":62,"props":1610,"children":1611},{},[1612,1614,1620,1621,1627,1628],{"type":59,"value":1613},"Key packages: ",{"type":53,"tag":308,"props":1615,"children":1617},{"className":1616},[],[1618],{"type":59,"value":1619},"Microsoft.Maui.Controls",{"type":59,"value":696},{"type":53,"tag":308,"props":1622,"children":1624},{"className":1623},[],[1625],{"type":59,"value":1626},"Microsoft.Maui.Essentials",{"type":59,"value":696},{"type":53,"tag":308,"props":1629,"children":1631},{"className":1630},[],[1632],{"type":59,"value":1633},"Microsoft.Maui.Graphics",{"type":53,"tag":62,"props":1635,"children":1636},{},[1637],{"type":59,"value":1638},"To use newer version than workload:",{"type":53,"tag":300,"props":1640,"children":1644},{"className":1641,"code":1642,"language":1643,"meta":305,"style":305},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CPackageReference Include=\"Microsoft.Maui.Controls\" Version=\"10.0.30\" \u002F>\n","xml",[1645],{"type":53,"tag":308,"props":1646,"children":1647},{"__ignoreMap":305},[1648],{"type":53,"tag":312,"props":1649,"children":1650},{"class":314,"line":315},[1651],{"type":53,"tag":312,"props":1652,"children":1653},{},[1654],{"type":59,"value":1642},{"type":53,"tag":283,"props":1656,"children":1657},{},[],{"type":53,"tag":68,"props":1659,"children":1661},{"id":1660},"output-format",[1662],{"type":59,"value":1663},"Output Format",{"type":53,"tag":300,"props":1665,"children":1667},{"className":786,"code":1666,"language":788,"meta":305,"style":305},"{\n  \"dotnetVersion\": \"10.0\",\n  \"latestSdk\": \"10.0.102\",\n  \"sdkBand\": \"10.0.100\",\n  \"workloadSet\": { \"packageId\": \"...\", \"nugetVersion\": \"10.102.0\", \"cliVersion\": \"10.0.102\" },\n  \"workloads\": [{\n    \"workloadId\": \"microsoft.net.sdk.ios\",\n    \"manifestVersion\": \"26.2.10191\",\n    \"sdkBand\": \"10.0.100\",\n    \"dependencies\": { \"xcode\": { \"versionRange\": \"[26.2,)\", \"recommendedVersion\": \"26.2\" } }\n  }],\n  \"mauiNugets\": [{ \"packageId\": \"Microsoft.Maui.Controls\", \"latestVersion\": \"10.0.30\" }]\n}\n",[1668],{"type":53,"tag":308,"props":1669,"children":1670},{"__ignoreMap":305},[1671,1678,1714,1751,1787,1912,1937,1973,2011,2047,2164,2173,2266],{"type":53,"tag":312,"props":1672,"children":1673},{"class":314,"line":315},[1674],{"type":53,"tag":312,"props":1675,"children":1676},{"style":331},[1677],{"type":59,"value":800},{"type":53,"tag":312,"props":1679,"children":1680},{"class":314,"line":358},[1681,1685,1689,1693,1697,1701,1706,1710],{"type":53,"tag":312,"props":1682,"children":1683},{"style":331},[1684],{"type":59,"value":808},{"type":53,"tag":312,"props":1686,"children":1687},{"style":811},[1688],{"type":59,"value":119},{"type":53,"tag":312,"props":1690,"children":1691},{"style":331},[1692],{"type":59,"value":344},{"type":53,"tag":312,"props":1694,"children":1695},{"style":331},[1696],{"type":59,"value":823},{"type":53,"tag":312,"props":1698,"children":1699},{"style":331},[1700],{"type":59,"value":334},{"type":53,"tag":312,"props":1702,"children":1703},{"style":325},[1704],{"type":59,"value":1705},"10.0",{"type":53,"tag":312,"props":1707,"children":1708},{"style":331},[1709],{"type":59,"value":344},{"type":53,"tag":312,"props":1711,"children":1712},{"style":331},[1713],{"type":59,"value":1264},{"type":53,"tag":312,"props":1715,"children":1716},{"class":314,"line":901},[1717,1721,1726,1730,1734,1738,1743,1747],{"type":53,"tag":312,"props":1718,"children":1719},{"style":331},[1720],{"type":59,"value":808},{"type":53,"tag":312,"props":1722,"children":1723},{"style":811},[1724],{"type":59,"value":1725},"latestSdk",{"type":53,"tag":312,"props":1727,"children":1728},{"style":331},[1729],{"type":59,"value":344},{"type":53,"tag":312,"props":1731,"children":1732},{"style":331},[1733],{"type":59,"value":823},{"type":53,"tag":312,"props":1735,"children":1736},{"style":331},[1737],{"type":59,"value":334},{"type":53,"tag":312,"props":1739,"children":1740},{"style":325},[1741],{"type":59,"value":1742},"10.0.102",{"type":53,"tag":312,"props":1744,"children":1745},{"style":331},[1746],{"type":59,"value":344},{"type":53,"tag":312,"props":1748,"children":1749},{"style":331},[1750],{"type":59,"value":1264},{"type":53,"tag":312,"props":1752,"children":1753},{"class":314,"line":927},[1754,1758,1763,1767,1771,1775,1779,1783],{"type":53,"tag":312,"props":1755,"children":1756},{"style":331},[1757],{"type":59,"value":808},{"type":53,"tag":312,"props":1759,"children":1760},{"style":811},[1761],{"type":59,"value":1762},"sdkBand",{"type":53,"tag":312,"props":1764,"children":1765},{"style":331},[1766],{"type":59,"value":344},{"type":53,"tag":312,"props":1768,"children":1769},{"style":331},[1770],{"type":59,"value":823},{"type":53,"tag":312,"props":1772,"children":1773},{"style":331},[1774],{"type":59,"value":334},{"type":53,"tag":312,"props":1776,"children":1777},{"style":325},[1778],{"type":59,"value":414},{"type":53,"tag":312,"props":1780,"children":1781},{"style":331},[1782],{"type":59,"value":344},{"type":53,"tag":312,"props":1784,"children":1785},{"style":331},[1786],{"type":59,"value":1264},{"type":53,"tag":312,"props":1788,"children":1789},{"class":314,"line":1006},[1790,1794,1799,1803,1807,1811,1815,1820,1824,1828,1832,1837,1841,1845,1849,1854,1858,1862,1866,1871,1875,1879,1883,1888,1892,1896,1900,1904,1908],{"type":53,"tag":312,"props":1791,"children":1792},{"style":331},[1793],{"type":59,"value":808},{"type":53,"tag":312,"props":1795,"children":1796},{"style":811},[1797],{"type":59,"value":1798},"workloadSet",{"type":53,"tag":312,"props":1800,"children":1801},{"style":331},[1802],{"type":59,"value":344},{"type":53,"tag":312,"props":1804,"children":1805},{"style":331},[1806],{"type":59,"value":823},{"type":53,"tag":312,"props":1808,"children":1809},{"style":331},[1810],{"type":59,"value":828},{"type":53,"tag":312,"props":1812,"children":1813},{"style":331},[1814],{"type":59,"value":334},{"type":53,"tag":312,"props":1816,"children":1817},{"style":319},[1818],{"type":59,"value":1819},"packageId",{"type":53,"tag":312,"props":1821,"children":1822},{"style":331},[1823],{"type":59,"value":344},{"type":53,"tag":312,"props":1825,"children":1826},{"style":331},[1827],{"type":59,"value":823},{"type":53,"tag":312,"props":1829,"children":1830},{"style":331},[1831],{"type":59,"value":334},{"type":53,"tag":312,"props":1833,"children":1834},{"style":325},[1835],{"type":59,"value":1836},"...",{"type":53,"tag":312,"props":1838,"children":1839},{"style":331},[1840],{"type":59,"value":344},{"type":53,"tag":312,"props":1842,"children":1843},{"style":331},[1844],{"type":59,"value":863},{"type":53,"tag":312,"props":1846,"children":1847},{"style":331},[1848],{"type":59,"value":334},{"type":53,"tag":312,"props":1850,"children":1851},{"style":319},[1852],{"type":59,"value":1853},"nugetVersion",{"type":53,"tag":312,"props":1855,"children":1856},{"style":331},[1857],{"type":59,"value":344},{"type":53,"tag":312,"props":1859,"children":1860},{"style":331},[1861],{"type":59,"value":823},{"type":53,"tag":312,"props":1863,"children":1864},{"style":331},[1865],{"type":59,"value":334},{"type":53,"tag":312,"props":1867,"children":1868},{"style":325},[1869],{"type":59,"value":1870},"10.102.0",{"type":53,"tag":312,"props":1872,"children":1873},{"style":331},[1874],{"type":59,"value":344},{"type":53,"tag":312,"props":1876,"children":1877},{"style":331},[1878],{"type":59,"value":863},{"type":53,"tag":312,"props":1880,"children":1881},{"style":331},[1882],{"type":59,"value":334},{"type":53,"tag":312,"props":1884,"children":1885},{"style":319},[1886],{"type":59,"value":1887},"cliVersion",{"type":53,"tag":312,"props":1889,"children":1890},{"style":331},[1891],{"type":59,"value":344},{"type":53,"tag":312,"props":1893,"children":1894},{"style":331},[1895],{"type":59,"value":823},{"type":53,"tag":312,"props":1897,"children":1898},{"style":331},[1899],{"type":59,"value":334},{"type":53,"tag":312,"props":1901,"children":1902},{"style":325},[1903],{"type":59,"value":1742},{"type":53,"tag":312,"props":1905,"children":1906},{"style":331},[1907],{"type":59,"value":344},{"type":53,"tag":312,"props":1909,"children":1910},{"style":331},[1911],{"type":59,"value":898},{"type":53,"tag":312,"props":1913,"children":1914},{"class":314,"line":1074},[1915,1919,1924,1928,1932],{"type":53,"tag":312,"props":1916,"children":1917},{"style":331},[1918],{"type":59,"value":808},{"type":53,"tag":312,"props":1920,"children":1921},{"style":811},[1922],{"type":59,"value":1923},"workloads",{"type":53,"tag":312,"props":1925,"children":1926},{"style":331},[1927],{"type":59,"value":344},{"type":53,"tag":312,"props":1929,"children":1930},{"style":331},[1931],{"type":59,"value":823},{"type":53,"tag":312,"props":1933,"children":1934},{"style":331},[1935],{"type":59,"value":1936}," [{\n",{"type":53,"tag":312,"props":1938,"children":1939},{"class":314,"line":1083},[1940,1944,1949,1953,1957,1961,1965,1969],{"type":53,"tag":312,"props":1941,"children":1942},{"style":331},[1943],{"type":59,"value":933},{"type":53,"tag":312,"props":1945,"children":1946},{"style":319},[1947],{"type":59,"value":1948},"workloadId",{"type":53,"tag":312,"props":1950,"children":1951},{"style":331},[1952],{"type":59,"value":344},{"type":53,"tag":312,"props":1954,"children":1955},{"style":331},[1956],{"type":59,"value":823},{"type":53,"tag":312,"props":1958,"children":1959},{"style":331},[1960],{"type":59,"value":334},{"type":53,"tag":312,"props":1962,"children":1963},{"style":325},[1964],{"type":59,"value":219},{"type":53,"tag":312,"props":1966,"children":1967},{"style":331},[1968],{"type":59,"value":344},{"type":53,"tag":312,"props":1970,"children":1971},{"style":331},[1972],{"type":59,"value":1264},{"type":53,"tag":312,"props":1974,"children":1976},{"class":314,"line":1975},8,[1977,1981,1986,1990,1994,1998,2003,2007],{"type":53,"tag":312,"props":1978,"children":1979},{"style":331},[1980],{"type":59,"value":933},{"type":53,"tag":312,"props":1982,"children":1983},{"style":319},[1984],{"type":59,"value":1985},"manifestVersion",{"type":53,"tag":312,"props":1987,"children":1988},{"style":331},[1989],{"type":59,"value":344},{"type":53,"tag":312,"props":1991,"children":1992},{"style":331},[1993],{"type":59,"value":823},{"type":53,"tag":312,"props":1995,"children":1996},{"style":331},[1997],{"type":59,"value":334},{"type":53,"tag":312,"props":1999,"children":2000},{"style":325},[2001],{"type":59,"value":2002},"26.2.10191",{"type":53,"tag":312,"props":2004,"children":2005},{"style":331},[2006],{"type":59,"value":344},{"type":53,"tag":312,"props":2008,"children":2009},{"style":331},[2010],{"type":59,"value":1264},{"type":53,"tag":312,"props":2012,"children":2014},{"class":314,"line":2013},9,[2015,2019,2023,2027,2031,2035,2039,2043],{"type":53,"tag":312,"props":2016,"children":2017},{"style":331},[2018],{"type":59,"value":933},{"type":53,"tag":312,"props":2020,"children":2021},{"style":319},[2022],{"type":59,"value":1762},{"type":53,"tag":312,"props":2024,"children":2025},{"style":331},[2026],{"type":59,"value":344},{"type":53,"tag":312,"props":2028,"children":2029},{"style":331},[2030],{"type":59,"value":823},{"type":53,"tag":312,"props":2032,"children":2033},{"style":331},[2034],{"type":59,"value":334},{"type":53,"tag":312,"props":2036,"children":2037},{"style":325},[2038],{"type":59,"value":414},{"type":53,"tag":312,"props":2040,"children":2041},{"style":331},[2042],{"type":59,"value":344},{"type":53,"tag":312,"props":2044,"children":2045},{"style":331},[2046],{"type":59,"value":1264},{"type":53,"tag":312,"props":2048,"children":2050},{"class":314,"line":2049},10,[2051,2055,2060,2064,2068,2072,2076,2081,2085,2089,2093,2097,2103,2107,2111,2115,2119,2123,2127,2131,2135,2139,2143,2147,2151,2155,2160],{"type":53,"tag":312,"props":2052,"children":2053},{"style":331},[2054],{"type":59,"value":933},{"type":53,"tag":312,"props":2056,"children":2057},{"style":319},[2058],{"type":59,"value":2059},"dependencies",{"type":53,"tag":312,"props":2061,"children":2062},{"style":331},[2063],{"type":59,"value":344},{"type":53,"tag":312,"props":2065,"children":2066},{"style":331},[2067],{"type":59,"value":823},{"type":53,"tag":312,"props":2069,"children":2070},{"style":331},[2071],{"type":59,"value":828},{"type":53,"tag":312,"props":2073,"children":2074},{"style":331},[2075],{"type":59,"value":334},{"type":53,"tag":312,"props":2077,"children":2079},{"style":2078},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2080],{"type":59,"value":1348},{"type":53,"tag":312,"props":2082,"children":2083},{"style":331},[2084],{"type":59,"value":344},{"type":53,"tag":312,"props":2086,"children":2087},{"style":331},[2088],{"type":59,"value":823},{"type":53,"tag":312,"props":2090,"children":2091},{"style":331},[2092],{"type":59,"value":828},{"type":53,"tag":312,"props":2094,"children":2095},{"style":331},[2096],{"type":59,"value":334},{"type":53,"tag":312,"props":2098,"children":2100},{"style":2099},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2101],{"type":59,"value":2102},"versionRange",{"type":53,"tag":312,"props":2104,"children":2105},{"style":331},[2106],{"type":59,"value":344},{"type":53,"tag":312,"props":2108,"children":2109},{"style":331},[2110],{"type":59,"value":823},{"type":53,"tag":312,"props":2112,"children":2113},{"style":331},[2114],{"type":59,"value":334},{"type":53,"tag":312,"props":2116,"children":2117},{"style":325},[2118],{"type":59,"value":1385},{"type":53,"tag":312,"props":2120,"children":2121},{"style":331},[2122],{"type":59,"value":344},{"type":53,"tag":312,"props":2124,"children":2125},{"style":331},[2126],{"type":59,"value":863},{"type":53,"tag":312,"props":2128,"children":2129},{"style":331},[2130],{"type":59,"value":334},{"type":53,"tag":312,"props":2132,"children":2133},{"style":2099},[2134],{"type":59,"value":872},{"type":53,"tag":312,"props":2136,"children":2137},{"style":331},[2138],{"type":59,"value":344},{"type":53,"tag":312,"props":2140,"children":2141},{"style":331},[2142],{"type":59,"value":823},{"type":53,"tag":312,"props":2144,"children":2145},{"style":331},[2146],{"type":59,"value":334},{"type":53,"tag":312,"props":2148,"children":2149},{"style":325},[2150],{"type":59,"value":1418},{"type":53,"tag":312,"props":2152,"children":2153},{"style":331},[2154],{"type":59,"value":344},{"type":53,"tag":312,"props":2156,"children":2157},{"style":331},[2158],{"type":59,"value":2159}," }",{"type":53,"tag":312,"props":2161,"children":2162},{"style":331},[2163],{"type":59,"value":1483},{"type":53,"tag":312,"props":2165,"children":2167},{"class":314,"line":2166},11,[2168],{"type":53,"tag":312,"props":2169,"children":2170},{"style":331},[2171],{"type":59,"value":2172},"  }],\n",{"type":53,"tag":312,"props":2174,"children":2176},{"class":314,"line":2175},12,[2177,2181,2186,2190,2194,2199,2203,2207,2211,2215,2219,2223,2227,2231,2235,2240,2244,2248,2252,2257,2261],{"type":53,"tag":312,"props":2178,"children":2179},{"style":331},[2180],{"type":59,"value":808},{"type":53,"tag":312,"props":2182,"children":2183},{"style":811},[2184],{"type":59,"value":2185},"mauiNugets",{"type":53,"tag":312,"props":2187,"children":2188},{"style":331},[2189],{"type":59,"value":344},{"type":53,"tag":312,"props":2191,"children":2192},{"style":331},[2193],{"type":59,"value":823},{"type":53,"tag":312,"props":2195,"children":2196},{"style":331},[2197],{"type":59,"value":2198}," [{",{"type":53,"tag":312,"props":2200,"children":2201},{"style":331},[2202],{"type":59,"value":334},{"type":53,"tag":312,"props":2204,"children":2205},{"style":319},[2206],{"type":59,"value":1819},{"type":53,"tag":312,"props":2208,"children":2209},{"style":331},[2210],{"type":59,"value":344},{"type":53,"tag":312,"props":2212,"children":2213},{"style":331},[2214],{"type":59,"value":823},{"type":53,"tag":312,"props":2216,"children":2217},{"style":331},[2218],{"type":59,"value":334},{"type":53,"tag":312,"props":2220,"children":2221},{"style":325},[2222],{"type":59,"value":1619},{"type":53,"tag":312,"props":2224,"children":2225},{"style":331},[2226],{"type":59,"value":344},{"type":53,"tag":312,"props":2228,"children":2229},{"style":331},[2230],{"type":59,"value":863},{"type":53,"tag":312,"props":2232,"children":2233},{"style":331},[2234],{"type":59,"value":334},{"type":53,"tag":312,"props":2236,"children":2237},{"style":319},[2238],{"type":59,"value":2239},"latestVersion",{"type":53,"tag":312,"props":2241,"children":2242},{"style":331},[2243],{"type":59,"value":344},{"type":53,"tag":312,"props":2245,"children":2246},{"style":331},[2247],{"type":59,"value":823},{"type":53,"tag":312,"props":2249,"children":2250},{"style":331},[2251],{"type":59,"value":334},{"type":53,"tag":312,"props":2253,"children":2254},{"style":325},[2255],{"type":59,"value":2256},"10.0.30",{"type":53,"tag":312,"props":2258,"children":2259},{"style":331},[2260],{"type":59,"value":344},{"type":53,"tag":312,"props":2262,"children":2263},{"style":331},[2264],{"type":59,"value":2265}," }]\n",{"type":53,"tag":312,"props":2267,"children":2269},{"class":314,"line":2268},13,[2270],{"type":53,"tag":312,"props":2271,"children":2272},{"style":331},[2273],{"type":59,"value":1089},{"type":53,"tag":283,"props":2275,"children":2276},{},[],{"type":53,"tag":68,"props":2278,"children":2280},{"id":2279},"error-handling",[2281],{"type":59,"value":2282},"Error Handling",{"type":53,"tag":394,"props":2284,"children":2285},{},[2286,2297,2302],{"type":53,"tag":398,"props":2287,"children":2288},{},[2289,2291],{"type":59,"value":2290},"No results → retry with ",{"type":53,"tag":308,"props":2292,"children":2294},{"className":2293},[],[2295],{"type":59,"value":2296},"prerelease=true",{"type":53,"tag":398,"props":2298,"children":2299},{},[2300],{"type":59,"value":2301},"Missing WorkloadDependencies.json → report explicitly",{"type":53,"tag":398,"props":2303,"children":2304},{},[2305],{"type":59,"value":2306},"Missing dependency key → note which keys absent",{"type":53,"tag":68,"props":2308,"children":2310},{"id":2309},"best-practices",[2311],{"type":59,"value":2312},"Best Practices",{"type":53,"tag":394,"props":2314,"children":2315},{},[2316,2321,2326],{"type":53,"tag":398,"props":2317,"children":2318},{},[2319],{"type":59,"value":2320},"ALWAYS fetch live data; never hardcode versions",{"type":53,"tag":398,"props":2322,"children":2323},{},[2324],{"type":59,"value":2325},"ALWAYS include sdkBand with manifest versions",{"type":53,"tag":398,"props":2327,"children":2328},{},[2329],{"type":59,"value":2330},"Show exact URLs used for transparency",{"type":53,"tag":68,"props":2332,"children":2334},{"id":2333},"reference",[2335],{"type":59,"value":2336},"Reference",{"type":53,"tag":62,"props":2338,"children":2339},{},[2340,2342,2348],{"type":59,"value":2341},"See ",{"type":53,"tag":308,"props":2343,"children":2345},{"className":2344},[],[2346],{"type":59,"value":2347},"references\u002Fworkload-discovery-process.md",{"type":59,"value":2349}," for detailed NuGet API documentation and complete examples.",{"type":53,"tag":2351,"props":2352,"children":2353},"style",{},[2354],{"type":59,"value":2355},"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":2357,"total":2517},[2358,2374,2391,2403,2419,2433,2451,2461,2473,2483,2496,2507],{"slug":2359,"name":2359,"fn":2360,"description":2361,"org":2362,"tags":2363,"stars":2371,"repoUrl":2372,"updatedAt":2373},"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},[2364,2367,2368],{"name":2365,"slug":2366,"type":15},".NET","net",{"name":23,"slug":24,"type":15},{"name":2369,"slug":2370,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":2375,"name":2375,"fn":2376,"description":2377,"org":2378,"tags":2379,"stars":2388,"repoUrl":2389,"updatedAt":2390},"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},[2380,2381,2384,2387],{"name":2365,"slug":2366,"type":15},{"name":2382,"slug":2383,"type":15},"Code Analysis","code-analysis",{"name":2385,"slug":2386,"type":15},"Debugging","debugging",{"name":2369,"slug":2370,"type":15},4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:23:25.400375",{"slug":2392,"name":2392,"fn":2393,"description":2394,"org":2395,"tags":2396,"stars":2388,"repoUrl":2389,"updatedAt":2402},"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},[2397,2398,2399,2400],{"name":2365,"slug":2366,"type":15},{"name":774,"slug":32,"type":15},{"name":2385,"slug":2386,"type":15},{"name":2401,"slug":37,"type":15},"Microsoft","2026-07-12T08:23:21.595572",{"slug":2404,"name":2404,"fn":2405,"description":2406,"org":2407,"tags":2408,"stars":2388,"repoUrl":2389,"updatedAt":2418},"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},[2409,2410,2411,2413,2415],{"name":2365,"slug":2366,"type":15},{"name":2385,"slug":2386,"type":15},{"name":2412,"slug":34,"type":15},"iOS",{"name":2414,"slug":251,"type":15},"macOS",{"name":2416,"slug":2417,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":2420,"name":2420,"fn":2421,"description":2422,"org":2423,"tags":2424,"stars":2388,"repoUrl":2389,"updatedAt":2432},"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},[2425,2426,2429],{"name":2382,"slug":2383,"type":15},{"name":2427,"slug":2428,"type":15},"QA","qa",{"name":2430,"slug":2431,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":2434,"name":2434,"fn":2435,"description":2436,"org":2437,"tags":2438,"stars":2388,"repoUrl":2389,"updatedAt":2450},"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},[2439,2440,2443,2444,2447],{"name":2365,"slug":2366,"type":15},{"name":2441,"slug":2442,"type":15},"Blazor","blazor",{"name":13,"slug":14,"type":15},{"name":2445,"slug":2446,"type":15},"UI Components","ui-components",{"name":2448,"slug":2449,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":2452,"name":2452,"fn":2453,"description":2454,"org":2455,"tags":2456,"stars":2388,"repoUrl":2389,"updatedAt":2460},"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},[2457,2458,2459],{"name":2382,"slug":2383,"type":15},{"name":2385,"slug":2386,"type":15},{"name":2401,"slug":37,"type":15},"2026-07-12T08:21:34.637923",{"slug":2462,"name":2462,"fn":2463,"description":2464,"org":2465,"tags":2466,"stars":2388,"repoUrl":2389,"updatedAt":2472},"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},[2467,2470,2471],{"name":2468,"slug":2469,"type":15},"Build","build",{"name":2385,"slug":2386,"type":15},{"name":23,"slug":24,"type":15},"2026-07-19T05:38:19.340791",{"slug":2474,"name":2474,"fn":2475,"description":2476,"org":2477,"tags":2478,"stars":2388,"repoUrl":2389,"updatedAt":2482},"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},[2479,2480,2481],{"name":2365,"slug":2366,"type":15},{"name":23,"slug":24,"type":15},{"name":2369,"slug":2370,"type":15},"2026-07-19T05:38:18.364937",{"slug":2484,"name":2484,"fn":2485,"description":2486,"org":2487,"tags":2488,"stars":2388,"repoUrl":2389,"updatedAt":2495},"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},[2489,2490,2493,2494],{"name":23,"slug":24,"type":15},{"name":2491,"slug":2492,"type":15},"Monitoring","monitoring",{"name":2369,"slug":2370,"type":15},{"name":2430,"slug":2431,"type":15},"2026-07-12T08:21:35.865649",{"slug":2497,"name":2497,"fn":2498,"description":2499,"org":2500,"tags":2501,"stars":2388,"repoUrl":2389,"updatedAt":2506},"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},[2502,2503,2504,2505],{"name":2365,"slug":2366,"type":15},{"name":2385,"slug":2386,"type":15},{"name":23,"slug":24,"type":15},{"name":2369,"slug":2370,"type":15},"2026-07-12T08:21:40.961722",{"slug":2508,"name":2508,"fn":2509,"description":2510,"org":2511,"tags":2512,"stars":2388,"repoUrl":2389,"updatedAt":2516},"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},[2513,2514,2515],{"name":2385,"slug":2386,"type":15},{"name":23,"slug":24,"type":15},{"name":2427,"slug":2428,"type":15},"2026-07-19T05:38:14.336279",144,{"items":2519,"total":2611},[2520,2537,2550,2562,2569,2584,2600],{"slug":2521,"name":2521,"fn":2522,"description":2523,"org":2524,"tags":2525,"stars":25,"repoUrl":26,"updatedAt":2536},"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},[2526,2527,2528,2531,2534],{"name":2365,"slug":2366,"type":15},{"name":774,"slug":32,"type":15},{"name":2529,"slug":2530,"type":15},"Java","java",{"name":2532,"slug":2533,"type":15},"Kotlin","kotlin",{"name":2535,"slug":38,"type":15},"Mobile","2026-07-12T08:22:54.006105",{"slug":2538,"name":2538,"fn":2539,"description":2540,"org":2541,"tags":2542,"stars":25,"repoUrl":26,"updatedAt":2549},"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},[2543,2544,2547,2548],{"name":2365,"slug":2366,"type":15},{"name":2545,"slug":2546,"type":15},"Automation","automation",{"name":17,"slug":18,"type":15},{"name":2535,"slug":38,"type":15},"2026-07-12T08:22:56.616564",{"slug":2551,"name":2551,"fn":2552,"description":2553,"org":2554,"tags":2555,"stars":25,"repoUrl":26,"updatedAt":2561},"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},[2556,2557,2558],{"name":2385,"slug":2386,"type":15},{"name":17,"slug":18,"type":15},{"name":2559,"slug":2560,"type":15},"Networking","networking","2026-07-12T08:22:48.847431",{"slug":4,"name":4,"fn":5,"description":6,"org":2563,"tags":2564,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2565,2566,2567,2568],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":17,"slug":18,"type":15},{"slug":2570,"name":2570,"fn":2571,"description":2572,"org":2573,"tags":2574,"stars":25,"repoUrl":26,"updatedAt":2583},"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},[2575,2576,2577,2578,2581],{"name":2365,"slug":2366,"type":15},{"name":2412,"slug":34,"type":15},{"name":17,"slug":18,"type":15},{"name":2579,"slug":2580,"type":15},"Swift","swift",{"name":2582,"slug":1348,"type":15},"Xcode","2026-07-12T08:22:50.128667",{"slug":2585,"name":2585,"fn":2586,"description":2587,"org":2588,"tags":2589,"stars":25,"repoUrl":26,"updatedAt":2599},"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},[2590,2591,2594,2595,2596],{"name":2365,"slug":2366,"type":15},{"name":2592,"slug":2593,"type":15},"Accessibility","accessibility",{"name":17,"slug":18,"type":15},{"name":2535,"slug":38,"type":15},{"name":2597,"slug":2598,"type":15},"WCAG","wcag","2026-07-12T08:22:17.823583",{"slug":2601,"name":2601,"fn":2602,"description":2603,"org":2604,"tags":2605,"stars":25,"repoUrl":26,"updatedAt":2610},"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},[2606,2607,2608,2609],{"name":2365,"slug":2366,"type":15},{"name":2385,"slug":2386,"type":15},{"name":17,"slug":18,"type":15},{"name":2535,"slug":38,"type":15},"2026-07-12T08:22:52.634889",32]