[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-setup-local-sdk":3,"mdc--sec429-key":34,"related-repo-dotnet-setup-local-sdk":4445,"related-org-dotnet-setup-local-sdk":4556},{"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":29,"sourceUrl":32,"mdContent":33},"setup-local-sdk","install .NET SDKs for local development","Install a .NET SDK locally for safe preview testing, specific-version pinning, or reproducible team setups — without modifying the system-wide installation. USE FOR: trying .NET previews safely, testing specific SDK versions, installing MAUI or other workloads on a preview, updating or replacing an existing local SDK, creating reproducible team\u002FCI install scripts, configuring global.json paths. DO NOT USE FOR: system-wide SDK installs, .NET hosts older than 10, runtime-only installs, or projects not using SDK-style commands.\n",{"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},".NET","net","tag",{"name":17,"slug":18,"type":15},"Local Development","local-development",{"name":20,"slug":21,"type":15},"SDK","sdk",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:21:23.037054","MIT",332,[28],"agent-skills",{"repoUrl":23,"stars":22,"forks":26,"topics":30,"description":31},[28],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet\u002Fskills\u002Fsetup-local-sdk","---\nname: setup-local-sdk\nlicense: MIT\ndescription: >\n  Install a .NET SDK locally for safe preview testing, specific-version pinning, or\n  reproducible team setups — without modifying the system-wide installation.\n  USE FOR: trying .NET previews safely, testing specific SDK versions, installing MAUI\n  or other workloads on a preview, updating or replacing an existing local SDK,\n  creating reproducible team\u002FCI install scripts, configuring global.json paths.\n  DO NOT USE FOR: system-wide SDK installs, .NET hosts older than 10, runtime-only\n  installs, or projects not using SDK-style commands.\n---\n\n# setup-local-sdk\n\n## Purpose\n\nGuide the user through installing a .NET SDK into a project-local `.dotnet\u002F`\ndirectory and wiring it up via the `global.json` `paths` feature (.NET 10+).\nThe examples use .NET 11, but this works with any version — prerelease or stable.\n\nThe result is a fully isolated SDK that:\n- Does **not** modify the system-wide .NET installation.\n- Is picked up automatically by `dotnet` commands from the project root.\n- Can be deleted to revert (`rm -rf .dotnet\u002F` or `Remove-Item -Recurse -Force .\\.dotnet`).\n\n## When NOT to use\n\n- User wants a **system-wide** install — direct to the official installer.\n- Host `dotnet` is **older than v10** — `paths` doesn't exist; explain and stop.\n- User needs a **runtime-only** install — `paths` applies to SDK resolution only.\n\n## Inputs \u002F Prerequisites\n\n| Input | Required | Default | Notes |\n|---|---|---|---|\n| Channel or version | No | `11.0` | e.g. `11.0`, `STS`, `LTS`, or an exact version like `11.0.100-preview.2.26159.112` |\n| Quality | No | `preview` | One of: `daily`, `preview`, `ga` |\n| jq | No | — | Optional for bash team scripts when patching an existing `global.json`; without it, do not overwrite the file |\n\n### Prerequisites\n\n1. **A .NET 10+ SDK is installed globally** — run `dotnet --version`; major ≥ 10.\n2. **curl** (macOS\u002FLinux) or **PowerShell** (Windows) is available.\n\n## Workflow\n\n### Step 1 — Clarify what to install\n\nIf the user didn't specify, ask what .NET SDK version they want (e.g., \"latest\n.NET 11 preview\" or an exact version like `11.0.100-preview.2.26159.112`).\nMap the answer to `--channel`\u002F`--quality` or `--version` flags.\n\n### Step 2 — Verify .NET 10+ host\n\nIf the user already provided `dotnet --version` output, treat that as the\nauthoritative version for their machine. Do not override it with the agent\nworkspace's version; if the two differ, explain that the workspace differs and\ncontinue advising for the user's machine.\n\n```bash\ndotnet --version\n```\n\nIf major version \u003C 10, stop before downloading anything: the `paths` feature\nrequires a .NET 10+ host SDK. Tell the user to install .NET 10 or later\nsystem-wide first, then return to the local SDK setup.\n\n### Step 3 — Detect operating system\n\nRun `uname -s 2>\u002Fdev\u002Fnull`. If it succeeds (including `MINGW*`, `MSYS*`, `CYGWIN*` —\nthese are bash-capable environments like Git Bash) → use bash\u002F`dotnet-install.sh`.\nIf it fails (native Windows without Git Bash) → use PowerShell\u002F`dotnet-install.ps1`.\n\n### Step 4 — Check for existing local SDK\n\n**macOS \u002F Linux:**\n\n```bash\ntest -d .dotnet && echo \"exists\" || echo \"not found\"\n```\n\n**Windows (PowerShell):**\n\n```powershell\nif (Test-Path -LiteralPath .\\.dotnet) { \"exists\" } else { \"not found\" }\n```\n\nIf `.dotnet\u002F` exists, ask: update with the new version, or skip and keep it?\n\n### Step 5 — Download and run the install script\n\n**macOS \u002F Linux:**\n\n```bash\nINSTALL_SCRIPT=\"$(mktemp \"${TMPDIR:-\u002Ftmp}\u002Fdotnet-install.XXXXXX\")\"\ntrap 'rm -f \"$INSTALL_SCRIPT\"' EXIT\ncurl -fsSL https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.sh -o \"$INSTALL_SCRIPT\"\nbash \"$INSTALL_SCRIPT\" --channel \u003CCHANNEL> --quality \u003CQUALITY> --install-dir .dotnet\n```\n\n**Windows (PowerShell):**\n\n```powershell\n$installScript = Join-Path $env:TEMP \"dotnet-install-$([guid]::NewGuid()).ps1\"\ntry {\n    Invoke-WebRequest -Uri 'https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.ps1' -OutFile $installScript\n    & $installScript -Channel \u003CCHANNEL> -Quality \u003CQUALITY> -InstallDir .dotnet\n}\nfinally {\n    if (Test-Path -LiteralPath $installScript) {\n        Remove-Item -LiteralPath $installScript -Force\n    }\n}\n```\n\nFor exact versions: use `--version \u003CVERSION>` (bash) or `-Version \u003CVERSION>` (PowerShell)\ninstead of channel\u002Fquality flags. The install scripts are from Microsoft's official\nURLs: `https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.sh` and `https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.ps1`.\n\n### Step 6 — Identify the installed version\n\n```bash\n.\u002F.dotnet\u002Fdotnet --version          # macOS\u002FLinux\n.\\.dotnet\\dotnet.exe --version      # Windows\n```\n\nRecord the exact version string (e.g., `11.0.100-preview.2.26159.112`) for `global.json`.\n\n### Step 7 — Create or update global.json\n\n```json\n{\n  \"sdk\": {\n    \"version\": \"\u003CINSTALLED_VERSION>\",\n    \"allowPrerelease\": true,\n    \"rollForward\": \"latestFeature\",\n    \"paths\": [\".dotnet\", \"$host$\"],\n    \"errorMessage\": \"Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.\"\n  }\n}\n```\n\n- `paths`: `.dotnet` first (local priority), `$host$` = system-wide fallback.\n- `rollForward: \"latestFeature\"`: use for latest-preview or floating feature-band installs.\n- Exact version requests: use `rollForward: \"disable\"` so SDK resolution doesn't move to a different feature band.\n- `allowPrerelease`: set to `true` only when installing a prerelease SDK. Omit for stable versions.\n- `errorMessage`: include only when team install scripts are created (Step 10). Otherwise omit.\n\nIf `global.json` already exists, **merge** carefully: preserve existing properties (`msbuild-sdks`,\n`tools`, etc.) and only add\u002Fupdate the `sdk` section. Read the existing file first, update\u002Fadd\nthe `sdk` object, then write it back. This ensures cross-project config (e.g., MSBuild settings)\nisn't lost. Always back up the original file (e.g., `global.json.bak`) before modifying.\n\n**Minimal config** (when version pinning isn't needed):\n`{\"sdk\":{\"paths\":[\".dotnet\",\"$host$\"]}}`\n\n### Step 8 — Update .gitignore\n\n**macOS \u002F Linux (or Git Bash):**\n\n```bash\ngrep -qxF '.dotnet\u002F' .gitignore 2>\u002Fdev\u002Fnull || printf '\\n.dotnet\u002F\\n' >> .gitignore\n```\n\n**Windows (PowerShell):**\n\n```powershell\nif (-not (Test-Path .gitignore) -or -not (Select-String -Path .gitignore -Pattern '^\\.dotnet\u002F$' -Quiet)) {\n    Add-Content -Path .gitignore -Value '.dotnet\u002F'\n}\n```\n\n### Step 9 — Install workloads (if requested)\n\nOnly do this after `global.json` and `.gitignore` are complete, so a slow or\nplatform-limited workload install does not prevent the base local SDK setup from\nbeing usable.\n\nIf the user mentioned MAUI, mobile, workload, Blazor WASM, or cross-platform,\ninstall using the **local** binary (no sudo needed):\n\n```bash\n.\u002F.dotnet\u002Fdotnet workload install \u003Cworkload>       # macOS\u002FLinux\n.\\.dotnet\\dotnet.exe workload install \u003Cworkload>   # Windows\n```\n\nVerify: `.\u002F.dotnet\u002Fdotnet workload list` (or `.\\.dotnet\\dotnet.exe workload list`).\n\nFor MAUI, pick a workload supported by the current OS and target platform. On\nLinux, the full `maui` meta-workload is not available; use a supported workload\nsuch as `maui-android` when Android is the target, or explain the platform\nlimitation and ask which target to configure.\n\n> **Always use the local dotnet binary for workload commands.** Workload metadata\n> is stored relative to the host process's dotnet root. The system `dotnet` puts\n> metadata in the wrong location. (See [dotnet\u002Fsdk#49825](https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fsdk\u002Fissues\u002F49825).)\n\n### Step 10 — Create team install scripts\n\nCreate if user mentioned \"team\", \"share\", \"CI\", \"scripts\", etc. Otherwise offer.\nThese examples back up `global.json` and preserve existing settings. The bash script\nuses `jq` when an existing `global.json` must be patched; if `jq` is unavailable,\nit refuses to overwrite the file and prints the settings to merge manually.\nAdapt script variables to the install choice from Step 1: exact versions should\nuse `--version` \u002F `-Version` and `rollForward: \"disable\"`; channel installs should\nuse channel\u002Fquality and only set `allowPrerelease: true` for prerelease SDKs.\nIf `global.json` already pins `sdk.version` and the user mainly needs team\nscripts, reuse that version in the scripts and update `global.json` first; do\nnot start a long SDK download just to discover the version. When the user asks\nfor both setup and scripts, create the scripts\u002Fconfig before any long install so\nthe reproducible setup exists even if download or workload installation is slow.\n\n**install-dotnet.sh:**\n\n```bash\n#!\u002Fusr\u002Fbin\u002Fenv bash\nset -euo pipefail\nINSTALL_DIR=\".dotnet\"\nCHANNEL=\"11.0\"\nQUALITY=\"preview\"\nVERSION=\"\"\nROLL_FORWARD=\"latestFeature\"\nALLOW_PRERELEASE=\"true\"\nWORKLOADS=(\"${@}\")\nERROR_MESSAGE=\"Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.\"\nINSTALL_SCRIPT=\"$(mktemp \"${TMPDIR:-\u002Ftmp}\u002Fdotnet-install.XXXXXX\")\"\nGLOBAL_JSON_TMP=\"\"\ncleanup() {\n    rm -f \"$INSTALL_SCRIPT\"\n    [ -n \"$GLOBAL_JSON_TMP\" ] && rm -f \"$GLOBAL_JSON_TMP\"\n}\ntrap cleanup EXIT\ncurl -fsSL https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.sh -o \"$INSTALL_SCRIPT\"\nINSTALL_ARGS=(--install-dir \"$INSTALL_DIR\")\nif [ -n \"$VERSION\" ]; then\n    INSTALL_ARGS+=(--version \"$VERSION\")\n    ROLL_FORWARD=\"disable\"\nelse\n    INSTALL_ARGS+=(--channel \"$CHANNEL\" --quality \"$QUALITY\")\nfi\nbash \"$INSTALL_SCRIPT\" \"${INSTALL_ARGS[@]}\"\nSDK_VERSION=$(\"$INSTALL_DIR\u002Fdotnet\" --version)\nwrite_global_json() {\n    if [ -f global.json ]; then\n        cp global.json global.json.bak\n        if ! command -v jq >\u002Fdev\u002Fnull 2>&1; then\n            echo \"global.json exists; install succeeded, but this script will not overwrite it without jq.\" >&2\n            echo \"Merge these sdk settings manually so existing global.json properties are preserved:\" >&2\n            cat >&2 \u003C\u003CEOF\n{\n  \"sdk\": {\n    \"version\": \"$SDK_VERSION\",\n    \"allowPrerelease\": $ALLOW_PRERELEASE,\n    \"rollForward\": \"$ROLL_FORWARD\",\n    \"paths\": [\".dotnet\", \"\\$host\\$\"],\n    \"errorMessage\": \"$ERROR_MESSAGE\"\n  }\n}\nEOF\n            exit 1\n        fi\n        GLOBAL_JSON_TMP=\"$(mktemp \"${TMPDIR:-\u002Ftmp}\u002Fglobal-json.XXXXXX\")\"\n        jq --arg version \"$SDK_VERSION\" --arg rollForward \"$ROLL_FORWARD\" --argjson allowPrerelease \"$ALLOW_PRERELEASE\" --arg errorMessage \"$ERROR_MESSAGE\" '\n          .sdk = ((.sdk \u002F\u002F {}) + {\n            version: $version,\n            allowPrerelease: $allowPrerelease,\n            rollForward: $rollForward,\n            paths: [\".dotnet\", \"$host$\"],\n            errorMessage: $errorMessage\n          })\n        ' global.json > \"$GLOBAL_JSON_TMP\"\n        mv \"$GLOBAL_JSON_TMP\" global.json\n        GLOBAL_JSON_TMP=\"\"\n    else\n        cat > global.json \u003C\u003CEOF\n{\n  \"sdk\": {\n    \"version\": \"$SDK_VERSION\",\n    \"allowPrerelease\": $ALLOW_PRERELEASE,\n    \"rollForward\": \"$ROLL_FORWARD\",\n    \"paths\": [\".dotnet\", \"\\$host\\$\"],\n    \"errorMessage\": \"$ERROR_MESSAGE\"\n  }\n}\nEOF\n    fi\n}\nwrite_global_json\ngrep -qxF '.dotnet\u002F' .gitignore 2>\u002Fdev\u002Fnull || printf '\\n.dotnet\u002F\\n' >> .gitignore\n[ ${#WORKLOADS[@]} -gt 0 ] && \"$INSTALL_DIR\u002Fdotnet\" workload install \"${WORKLOADS[@]}\"\necho \"Done. SDK: $SDK_VERSION\"\n```\n\n```bash\nchmod +x install-dotnet.sh\n```\n\n**install-dotnet.ps1:**\n\n```powershell\nparam([string[]]$Workloads = @())\n$ErrorActionPreference = 'Stop'\n$installDir = '.dotnet'; $channel = '11.0'; $quality = 'preview'\n$version = ''; $rollForward = 'latestFeature'; $allowPrerelease = $true\n$errorMessage = 'Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.'\n$installScript = Join-Path $env:TEMP \"dotnet-install-$([guid]::NewGuid()).ps1\"\ntry {\n    Invoke-WebRequest -Uri 'https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.ps1' -OutFile $installScript\n    $installArgs = @('-InstallDir', $installDir)\n    if ($version) {\n        $installArgs += @('-Version', $version)\n        $rollForward = 'disable'\n    } else {\n        $installArgs += @('-Channel', $channel, '-Quality', $quality)\n    }\n    & $installScript @installArgs\n}\nfinally {\n    if (Test-Path -LiteralPath $installScript) {\n        Remove-Item -LiteralPath $installScript -Force\n    }\n}\n$sdkVersion = & \"$installDir\\dotnet.exe\" --version\n$globalJson = if (Test-Path 'global.json') {\n    Copy-Item 'global.json' 'global.json.bak'\n    Get-Content -Path 'global.json' -Raw | ConvertFrom-Json\n} else {\n    [pscustomobject]@{}\n}\nif (-not $globalJson.PSObject.Properties['sdk']) {\n    $globalJson | Add-Member -MemberType NoteProperty -Name 'sdk' -Value ([pscustomobject]@{})\n}\n$updates = [ordered]@{\n    version = $sdkVersion\n    allowPrerelease = $allowPrerelease\n    rollForward = $rollForward\n    paths = @('.dotnet', '$host$')\n    errorMessage = $errorMessage\n}\nforeach ($entry in $updates.GetEnumerator()) {\n    $property = $globalJson.sdk.PSObject.Properties[$entry.Key]\n    if ($property) {\n        $property.Value = $entry.Value\n    } else {\n        $globalJson.sdk | Add-Member -MemberType NoteProperty -Name $entry.Key -Value $entry.Value\n    }\n}\n$globalJson | ConvertTo-Json -Depth 10 | Set-Content -Path 'global.json' -Encoding UTF8\nif (-not (Test-Path .gitignore) -or -not (Select-String -Path .gitignore -Pattern '^\\.dotnet\u002F$' -Quiet)) {\n    Add-Content -Path .gitignore -Value '.dotnet\u002F'\n}\nif ($Workloads.Count -gt 0) { & \"$installDir\\dotnet.exe\" workload install @Workloads }\nWrite-Host \"Done. SDK: $sdkVersion\"\n```\n\nCommit these scripts to the repo so teammates can run them.\n\n### Step 11 — Verify SDK resolution\n\n```bash\ndotnet --version\n```\n\nOutput should match the locally installed version. If not, check: global.json\nlocation, `paths` array contents, host dotnet version ≥ 10.\n\n### Step 12 — Summarize and explain cleanup\n\nTell the user: SDK installed, global.json configured, .dotnet\u002F gitignored, system\ninstall untouched. Cleanup: delete `.dotnet\u002F`, remove `paths`\u002F`errorMessage` from\nglobal.json, optionally delete install scripts. Include the final `global.json`\n`sdk` values (or a short snippet) so the user can see the configured version,\n`paths`, and any `errorMessage`. If workloads were requested, include the local\n`dotnet workload install ...` command used and the workload verification result\nor the exact blocker if the workload could not be installed.\n\n## Common pitfalls\n\n| Pitfall | Cause | Fix |\n|---|---|---|\n| `paths` ignored | Host `dotnet` \u003C v10 | Install .NET 10+ system-wide |\n| Wrong SDK resolves | `global.json` in parent directory | Check for global.json up the tree |\n| Teammates get \"SDK not found\" | `.dotnet\u002F` gitignored, no install script run | Use `errorMessage` in global.json |\n| Workloads missing | Used system `dotnet` instead of local | Use `.\u002F.dotnet\u002Fdotnet workload install` |\n| `dotnet app.dll` wrong runtime | `paths` is SDK-only, not apphost | Use `dotnet run` or set `DOTNET_ROOT` |\n",{"data":35,"body":36},{"name":4,"license":25,"description":6},{"type":37,"children":38},"root",[39,46,53,84,89,140,146,206,212,379,386,425,431,437,472,478,490,518,530,536,587,593,601,676,684,700,712,718,725,934,941,1033,1069,1075,1136,1154,1160,1412,1491,1546,1562,1568,1576,1655,1662,1692,1698,1717,1729,1828,1848,1869,1901,1907,1991,1999,3702,3727,3735,4147,4152,4158,4175,4187,4193,4252,4258,4439],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":4},"text",{"type":40,"tag":47,"props":48,"children":50},"h2",{"id":49},"purpose",[51],{"type":45,"value":52},"Purpose",{"type":40,"tag":54,"props":55,"children":56},"p",{},[57,59,66,68,74,76,82],{"type":45,"value":58},"Guide the user through installing a .NET SDK into a project-local ",{"type":40,"tag":60,"props":61,"children":63},"code",{"className":62},[],[64],{"type":45,"value":65},".dotnet\u002F",{"type":45,"value":67},"\ndirectory and wiring it up via the ",{"type":40,"tag":60,"props":69,"children":71},{"className":70},[],[72],{"type":45,"value":73},"global.json",{"type":45,"value":75}," ",{"type":40,"tag":60,"props":77,"children":79},{"className":78},[],[80],{"type":45,"value":81},"paths",{"type":45,"value":83}," feature (.NET 10+).\nThe examples use .NET 11, but this works with any version — prerelease or stable.",{"type":40,"tag":54,"props":85,"children":86},{},[87],{"type":45,"value":88},"The result is a fully isolated SDK that:",{"type":40,"tag":90,"props":91,"children":92},"ul",{},[93,107,119],{"type":40,"tag":94,"props":95,"children":96},"li",{},[97,99,105],{"type":45,"value":98},"Does ",{"type":40,"tag":100,"props":101,"children":102},"strong",{},[103],{"type":45,"value":104},"not",{"type":45,"value":106}," modify the system-wide .NET installation.",{"type":40,"tag":94,"props":108,"children":109},{},[110,112,117],{"type":45,"value":111},"Is picked up automatically by ",{"type":40,"tag":60,"props":113,"children":115},{"className":114},[],[116],{"type":45,"value":8},{"type":45,"value":118}," commands from the project root.",{"type":40,"tag":94,"props":120,"children":121},{},[122,124,130,132,138],{"type":45,"value":123},"Can be deleted to revert (",{"type":40,"tag":60,"props":125,"children":127},{"className":126},[],[128],{"type":45,"value":129},"rm -rf .dotnet\u002F",{"type":45,"value":131}," or ",{"type":40,"tag":60,"props":133,"children":135},{"className":134},[],[136],{"type":45,"value":137},"Remove-Item -Recurse -Force .\\.dotnet",{"type":45,"value":139},").",{"type":40,"tag":47,"props":141,"children":143},{"id":142},"when-not-to-use",[144],{"type":45,"value":145},"When NOT to use",{"type":40,"tag":90,"props":147,"children":148},{},[149,161,187],{"type":40,"tag":94,"props":150,"children":151},{},[152,154,159],{"type":45,"value":153},"User wants a ",{"type":40,"tag":100,"props":155,"children":156},{},[157],{"type":45,"value":158},"system-wide",{"type":45,"value":160}," install — direct to the official installer.",{"type":40,"tag":94,"props":162,"children":163},{},[164,166,171,173,178,180,185],{"type":45,"value":165},"Host ",{"type":40,"tag":60,"props":167,"children":169},{"className":168},[],[170],{"type":45,"value":8},{"type":45,"value":172}," is ",{"type":40,"tag":100,"props":174,"children":175},{},[176],{"type":45,"value":177},"older than v10",{"type":45,"value":179}," — ",{"type":40,"tag":60,"props":181,"children":183},{"className":182},[],[184],{"type":45,"value":81},{"type":45,"value":186}," doesn't exist; explain and stop.",{"type":40,"tag":94,"props":188,"children":189},{},[190,192,197,199,204],{"type":45,"value":191},"User needs a ",{"type":40,"tag":100,"props":193,"children":194},{},[195],{"type":45,"value":196},"runtime-only",{"type":45,"value":198}," install — ",{"type":40,"tag":60,"props":200,"children":202},{"className":201},[],[203],{"type":45,"value":81},{"type":45,"value":205}," applies to SDK resolution only.",{"type":40,"tag":47,"props":207,"children":209},{"id":208},"inputs-prerequisites",[210],{"type":45,"value":211},"Inputs \u002F Prerequisites",{"type":40,"tag":213,"props":214,"children":215},"table",{},[216,245],{"type":40,"tag":217,"props":218,"children":219},"thead",{},[220],{"type":40,"tag":221,"props":222,"children":223},"tr",{},[224,230,235,240],{"type":40,"tag":225,"props":226,"children":227},"th",{},[228],{"type":45,"value":229},"Input",{"type":40,"tag":225,"props":231,"children":232},{},[233],{"type":45,"value":234},"Required",{"type":40,"tag":225,"props":236,"children":237},{},[238],{"type":45,"value":239},"Default",{"type":40,"tag":225,"props":241,"children":242},{},[243],{"type":45,"value":244},"Notes",{"type":40,"tag":246,"props":247,"children":248},"tbody",{},[249,305,350],{"type":40,"tag":221,"props":250,"children":251},{},[252,258,263,272],{"type":40,"tag":253,"props":254,"children":255},"td",{},[256],{"type":45,"value":257},"Channel or version",{"type":40,"tag":253,"props":259,"children":260},{},[261],{"type":45,"value":262},"No",{"type":40,"tag":253,"props":264,"children":265},{},[266],{"type":40,"tag":60,"props":267,"children":269},{"className":268},[],[270],{"type":45,"value":271},"11.0",{"type":40,"tag":253,"props":273,"children":274},{},[275,277,282,284,290,291,297,299],{"type":45,"value":276},"e.g. ",{"type":40,"tag":60,"props":278,"children":280},{"className":279},[],[281],{"type":45,"value":271},{"type":45,"value":283},", ",{"type":40,"tag":60,"props":285,"children":287},{"className":286},[],[288],{"type":45,"value":289},"STS",{"type":45,"value":283},{"type":40,"tag":60,"props":292,"children":294},{"className":293},[],[295],{"type":45,"value":296},"LTS",{"type":45,"value":298},", or an exact version like ",{"type":40,"tag":60,"props":300,"children":302},{"className":301},[],[303],{"type":45,"value":304},"11.0.100-preview.2.26159.112",{"type":40,"tag":221,"props":306,"children":307},{},[308,313,317,326],{"type":40,"tag":253,"props":309,"children":310},{},[311],{"type":45,"value":312},"Quality",{"type":40,"tag":253,"props":314,"children":315},{},[316],{"type":45,"value":262},{"type":40,"tag":253,"props":318,"children":319},{},[320],{"type":40,"tag":60,"props":321,"children":323},{"className":322},[],[324],{"type":45,"value":325},"preview",{"type":40,"tag":253,"props":327,"children":328},{},[329,331,337,338,343,344],{"type":45,"value":330},"One of: ",{"type":40,"tag":60,"props":332,"children":334},{"className":333},[],[335],{"type":45,"value":336},"daily",{"type":45,"value":283},{"type":40,"tag":60,"props":339,"children":341},{"className":340},[],[342],{"type":45,"value":325},{"type":45,"value":283},{"type":40,"tag":60,"props":345,"children":347},{"className":346},[],[348],{"type":45,"value":349},"ga",{"type":40,"tag":221,"props":351,"children":352},{},[353,358,362,367],{"type":40,"tag":253,"props":354,"children":355},{},[356],{"type":45,"value":357},"jq",{"type":40,"tag":253,"props":359,"children":360},{},[361],{"type":45,"value":262},{"type":40,"tag":253,"props":363,"children":364},{},[365],{"type":45,"value":366},"—",{"type":40,"tag":253,"props":368,"children":369},{},[370,372,377],{"type":45,"value":371},"Optional for bash team scripts when patching an existing ",{"type":40,"tag":60,"props":373,"children":375},{"className":374},[],[376],{"type":45,"value":73},{"type":45,"value":378},"; without it, do not overwrite the file",{"type":40,"tag":380,"props":381,"children":383},"h3",{"id":382},"prerequisites",[384],{"type":45,"value":385},"Prerequisites",{"type":40,"tag":387,"props":388,"children":389},"ol",{},[390,408],{"type":40,"tag":94,"props":391,"children":392},{},[393,398,400,406],{"type":40,"tag":100,"props":394,"children":395},{},[396],{"type":45,"value":397},"A .NET 10+ SDK is installed globally",{"type":45,"value":399}," — run ",{"type":40,"tag":60,"props":401,"children":403},{"className":402},[],[404],{"type":45,"value":405},"dotnet --version",{"type":45,"value":407},"; major ≥ 10.",{"type":40,"tag":94,"props":409,"children":410},{},[411,416,418,423],{"type":40,"tag":100,"props":412,"children":413},{},[414],{"type":45,"value":415},"curl",{"type":45,"value":417}," (macOS\u002FLinux) or ",{"type":40,"tag":100,"props":419,"children":420},{},[421],{"type":45,"value":422},"PowerShell",{"type":45,"value":424}," (Windows) is available.",{"type":40,"tag":47,"props":426,"children":428},{"id":427},"workflow",[429],{"type":45,"value":430},"Workflow",{"type":40,"tag":380,"props":432,"children":434},{"id":433},"step-1-clarify-what-to-install",[435],{"type":45,"value":436},"Step 1 — Clarify what to install",{"type":40,"tag":54,"props":438,"children":439},{},[440,442,447,449,455,457,463,464,470],{"type":45,"value":441},"If the user didn't specify, ask what .NET SDK version they want (e.g., \"latest\n.NET 11 preview\" or an exact version like ",{"type":40,"tag":60,"props":443,"children":445},{"className":444},[],[446],{"type":45,"value":304},{"type":45,"value":448},").\nMap the answer to ",{"type":40,"tag":60,"props":450,"children":452},{"className":451},[],[453],{"type":45,"value":454},"--channel",{"type":45,"value":456},"\u002F",{"type":40,"tag":60,"props":458,"children":460},{"className":459},[],[461],{"type":45,"value":462},"--quality",{"type":45,"value":131},{"type":40,"tag":60,"props":465,"children":467},{"className":466},[],[468],{"type":45,"value":469},"--version",{"type":45,"value":471}," flags.",{"type":40,"tag":380,"props":473,"children":475},{"id":474},"step-2-verify-net-10-host",[476],{"type":45,"value":477},"Step 2 — Verify .NET 10+ host",{"type":40,"tag":54,"props":479,"children":480},{},[481,483,488],{"type":45,"value":482},"If the user already provided ",{"type":40,"tag":60,"props":484,"children":486},{"className":485},[],[487],{"type":45,"value":405},{"type":45,"value":489}," output, treat that as the\nauthoritative version for their machine. Do not override it with the agent\nworkspace's version; if the two differ, explain that the workspace differs and\ncontinue advising for the user's machine.",{"type":40,"tag":491,"props":492,"children":497},"pre",{"className":493,"code":494,"language":495,"meta":496,"style":496},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dotnet --version\n","bash","",[498],{"type":40,"tag":60,"props":499,"children":500},{"__ignoreMap":496},[501],{"type":40,"tag":502,"props":503,"children":506},"span",{"class":504,"line":505},"line",1,[507,512],{"type":40,"tag":502,"props":508,"children":510},{"style":509},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[511],{"type":45,"value":8},{"type":40,"tag":502,"props":513,"children":515},{"style":514},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[516],{"type":45,"value":517}," --version\n",{"type":40,"tag":54,"props":519,"children":520},{},[521,523,528],{"type":45,"value":522},"If major version \u003C 10, stop before downloading anything: the ",{"type":40,"tag":60,"props":524,"children":526},{"className":525},[],[527],{"type":45,"value":81},{"type":45,"value":529}," feature\nrequires a .NET 10+ host SDK. Tell the user to install .NET 10 or later\nsystem-wide first, then return to the local SDK setup.",{"type":40,"tag":380,"props":531,"children":533},{"id":532},"step-3-detect-operating-system",[534],{"type":45,"value":535},"Step 3 — Detect operating system",{"type":40,"tag":54,"props":537,"children":538},{},[539,541,547,549,555,556,562,563,569,571,577,579,585],{"type":45,"value":540},"Run ",{"type":40,"tag":60,"props":542,"children":544},{"className":543},[],[545],{"type":45,"value":546},"uname -s 2>\u002Fdev\u002Fnull",{"type":45,"value":548},". If it succeeds (including ",{"type":40,"tag":60,"props":550,"children":552},{"className":551},[],[553],{"type":45,"value":554},"MINGW*",{"type":45,"value":283},{"type":40,"tag":60,"props":557,"children":559},{"className":558},[],[560],{"type":45,"value":561},"MSYS*",{"type":45,"value":283},{"type":40,"tag":60,"props":564,"children":566},{"className":565},[],[567],{"type":45,"value":568},"CYGWIN*",{"type":45,"value":570}," —\nthese are bash-capable environments like Git Bash) → use bash\u002F",{"type":40,"tag":60,"props":572,"children":574},{"className":573},[],[575],{"type":45,"value":576},"dotnet-install.sh",{"type":45,"value":578},".\nIf it fails (native Windows without Git Bash) → use PowerShell\u002F",{"type":40,"tag":60,"props":580,"children":582},{"className":581},[],[583],{"type":45,"value":584},"dotnet-install.ps1",{"type":45,"value":586},".",{"type":40,"tag":380,"props":588,"children":590},{"id":589},"step-4-check-for-existing-local-sdk",[591],{"type":45,"value":592},"Step 4 — Check for existing local SDK",{"type":40,"tag":54,"props":594,"children":595},{},[596],{"type":40,"tag":100,"props":597,"children":598},{},[599],{"type":45,"value":600},"macOS \u002F Linux:",{"type":40,"tag":491,"props":602,"children":604},{"className":493,"code":603,"language":495,"meta":496,"style":496},"test -d .dotnet && echo \"exists\" || echo \"not found\"\n",[605],{"type":40,"tag":60,"props":606,"children":607},{"__ignoreMap":496},[608],{"type":40,"tag":502,"props":609,"children":610},{"class":504,"line":505},[611,617,622,627,633,638,643,648,653,658,662,666,671],{"type":40,"tag":502,"props":612,"children":614},{"style":613},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[615],{"type":45,"value":616},"test",{"type":40,"tag":502,"props":618,"children":619},{"style":514},[620],{"type":45,"value":621}," -d",{"type":40,"tag":502,"props":623,"children":624},{"style":514},[625],{"type":45,"value":626}," .dotnet",{"type":40,"tag":502,"props":628,"children":630},{"style":629},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[631],{"type":45,"value":632}," &&",{"type":40,"tag":502,"props":634,"children":635},{"style":613},[636],{"type":45,"value":637}," echo",{"type":40,"tag":502,"props":639,"children":640},{"style":629},[641],{"type":45,"value":642}," \"",{"type":40,"tag":502,"props":644,"children":645},{"style":514},[646],{"type":45,"value":647},"exists",{"type":40,"tag":502,"props":649,"children":650},{"style":629},[651],{"type":45,"value":652},"\"",{"type":40,"tag":502,"props":654,"children":655},{"style":629},[656],{"type":45,"value":657}," ||",{"type":40,"tag":502,"props":659,"children":660},{"style":613},[661],{"type":45,"value":637},{"type":40,"tag":502,"props":663,"children":664},{"style":629},[665],{"type":45,"value":642},{"type":40,"tag":502,"props":667,"children":668},{"style":514},[669],{"type":45,"value":670},"not found",{"type":40,"tag":502,"props":672,"children":673},{"style":629},[674],{"type":45,"value":675},"\"\n",{"type":40,"tag":54,"props":677,"children":678},{},[679],{"type":40,"tag":100,"props":680,"children":681},{},[682],{"type":45,"value":683},"Windows (PowerShell):",{"type":40,"tag":491,"props":685,"children":689},{"className":686,"code":687,"language":688,"meta":496,"style":496},"language-powershell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","if (Test-Path -LiteralPath .\\.dotnet) { \"exists\" } else { \"not found\" }\n","powershell",[690],{"type":40,"tag":60,"props":691,"children":692},{"__ignoreMap":496},[693],{"type":40,"tag":502,"props":694,"children":695},{"class":504,"line":505},[696],{"type":40,"tag":502,"props":697,"children":698},{},[699],{"type":45,"value":687},{"type":40,"tag":54,"props":701,"children":702},{},[703,705,710],{"type":45,"value":704},"If ",{"type":40,"tag":60,"props":706,"children":708},{"className":707},[],[709],{"type":45,"value":65},{"type":45,"value":711}," exists, ask: update with the new version, or skip and keep it?",{"type":40,"tag":380,"props":713,"children":715},{"id":714},"step-5-download-and-run-the-install-script",[716],{"type":45,"value":717},"Step 5 — Download and run the install script",{"type":40,"tag":54,"props":719,"children":720},{},[721],{"type":40,"tag":100,"props":722,"children":723},{},[724],{"type":45,"value":600},{"type":40,"tag":491,"props":726,"children":728},{"className":493,"code":727,"language":495,"meta":496,"style":496},"INSTALL_SCRIPT=\"$(mktemp \"${TMPDIR:-\u002Ftmp}\u002Fdotnet-install.XXXXXX\")\"\ntrap 'rm -f \"$INSTALL_SCRIPT\"' EXIT\ncurl -fsSL https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.sh -o \"$INSTALL_SCRIPT\"\nbash \"$INSTALL_SCRIPT\" --channel \u003CCHANNEL> --quality \u003CQUALITY> --install-dir .dotnet\n",[729],{"type":40,"tag":60,"props":730,"children":731},{"__ignoreMap":496},[732,791,820,856],{"type":40,"tag":502,"props":733,"children":734},{"class":504,"line":505},[735,741,746,751,756,761,766,771,776,781,786],{"type":40,"tag":502,"props":736,"children":738},{"style":737},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[739],{"type":45,"value":740},"INSTALL_SCRIPT",{"type":40,"tag":502,"props":742,"children":743},{"style":629},[744],{"type":45,"value":745},"=",{"type":40,"tag":502,"props":747,"children":748},{"style":629},[749],{"type":45,"value":750},"\"$(",{"type":40,"tag":502,"props":752,"children":753},{"style":509},[754],{"type":45,"value":755},"mktemp",{"type":40,"tag":502,"props":757,"children":758},{"style":629},[759],{"type":45,"value":760}," \"${",{"type":40,"tag":502,"props":762,"children":763},{"style":737},[764],{"type":45,"value":765},"TMPDIR",{"type":40,"tag":502,"props":767,"children":768},{"style":629},[769],{"type":45,"value":770},":-\u002F",{"type":40,"tag":502,"props":772,"children":773},{"style":737},[774],{"type":45,"value":775},"tmp",{"type":40,"tag":502,"props":777,"children":778},{"style":629},[779],{"type":45,"value":780},"}",{"type":40,"tag":502,"props":782,"children":783},{"style":514},[784],{"type":45,"value":785},"\u002Fdotnet-install.XXXXXX",{"type":40,"tag":502,"props":787,"children":788},{"style":629},[789],{"type":45,"value":790},"\")\"\n",{"type":40,"tag":502,"props":792,"children":794},{"class":504,"line":793},2,[795,800,805,810,815],{"type":40,"tag":502,"props":796,"children":797},{"style":613},[798],{"type":45,"value":799},"trap",{"type":40,"tag":502,"props":801,"children":802},{"style":629},[803],{"type":45,"value":804}," '",{"type":40,"tag":502,"props":806,"children":807},{"style":514},[808],{"type":45,"value":809},"rm -f \"$INSTALL_SCRIPT\"",{"type":40,"tag":502,"props":811,"children":812},{"style":629},[813],{"type":45,"value":814},"'",{"type":40,"tag":502,"props":816,"children":817},{"style":514},[818],{"type":45,"value":819}," EXIT\n",{"type":40,"tag":502,"props":821,"children":823},{"class":504,"line":822},3,[824,828,833,838,843,847,852],{"type":40,"tag":502,"props":825,"children":826},{"style":509},[827],{"type":45,"value":415},{"type":40,"tag":502,"props":829,"children":830},{"style":514},[831],{"type":45,"value":832}," -fsSL",{"type":40,"tag":502,"props":834,"children":835},{"style":514},[836],{"type":45,"value":837}," https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.sh",{"type":40,"tag":502,"props":839,"children":840},{"style":514},[841],{"type":45,"value":842}," -o",{"type":40,"tag":502,"props":844,"children":845},{"style":629},[846],{"type":45,"value":642},{"type":40,"tag":502,"props":848,"children":849},{"style":737},[850],{"type":45,"value":851},"$INSTALL_SCRIPT",{"type":40,"tag":502,"props":853,"children":854},{"style":629},[855],{"type":45,"value":675},{"type":40,"tag":502,"props":857,"children":859},{"class":504,"line":858},4,[860,864,868,872,876,881,886,891,896,901,906,910,915,920,924,929],{"type":40,"tag":502,"props":861,"children":862},{"style":509},[863],{"type":45,"value":495},{"type":40,"tag":502,"props":865,"children":866},{"style":629},[867],{"type":45,"value":642},{"type":40,"tag":502,"props":869,"children":870},{"style":737},[871],{"type":45,"value":851},{"type":40,"tag":502,"props":873,"children":874},{"style":629},[875],{"type":45,"value":652},{"type":40,"tag":502,"props":877,"children":878},{"style":514},[879],{"type":45,"value":880}," --channel",{"type":40,"tag":502,"props":882,"children":883},{"style":629},[884],{"type":45,"value":885}," \u003C",{"type":40,"tag":502,"props":887,"children":888},{"style":514},[889],{"type":45,"value":890},"CHANNE",{"type":40,"tag":502,"props":892,"children":893},{"style":737},[894],{"type":45,"value":895},"L",{"type":40,"tag":502,"props":897,"children":898},{"style":629},[899],{"type":45,"value":900},">",{"type":40,"tag":502,"props":902,"children":903},{"style":514},[904],{"type":45,"value":905}," --quality",{"type":40,"tag":502,"props":907,"children":908},{"style":629},[909],{"type":45,"value":885},{"type":40,"tag":502,"props":911,"children":912},{"style":514},[913],{"type":45,"value":914},"QUALIT",{"type":40,"tag":502,"props":916,"children":917},{"style":737},[918],{"type":45,"value":919},"Y",{"type":40,"tag":502,"props":921,"children":922},{"style":629},[923],{"type":45,"value":900},{"type":40,"tag":502,"props":925,"children":926},{"style":514},[927],{"type":45,"value":928}," --install-dir",{"type":40,"tag":502,"props":930,"children":931},{"style":514},[932],{"type":45,"value":933}," .dotnet\n",{"type":40,"tag":54,"props":935,"children":936},{},[937],{"type":40,"tag":100,"props":938,"children":939},{},[940],{"type":45,"value":683},{"type":40,"tag":491,"props":942,"children":944},{"className":686,"code":943,"language":688,"meta":496,"style":496},"$installScript = Join-Path $env:TEMP \"dotnet-install-$([guid]::NewGuid()).ps1\"\ntry {\n    Invoke-WebRequest -Uri 'https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.ps1' -OutFile $installScript\n    & $installScript -Channel \u003CCHANNEL> -Quality \u003CQUALITY> -InstallDir .dotnet\n}\nfinally {\n    if (Test-Path -LiteralPath $installScript) {\n        Remove-Item -LiteralPath $installScript -Force\n    }\n}\n",[945],{"type":40,"tag":60,"props":946,"children":947},{"__ignoreMap":496},[948,956,964,972,980,989,998,1007,1016,1025],{"type":40,"tag":502,"props":949,"children":950},{"class":504,"line":505},[951],{"type":40,"tag":502,"props":952,"children":953},{},[954],{"type":45,"value":955},"$installScript = Join-Path $env:TEMP \"dotnet-install-$([guid]::NewGuid()).ps1\"\n",{"type":40,"tag":502,"props":957,"children":958},{"class":504,"line":793},[959],{"type":40,"tag":502,"props":960,"children":961},{},[962],{"type":45,"value":963},"try {\n",{"type":40,"tag":502,"props":965,"children":966},{"class":504,"line":822},[967],{"type":40,"tag":502,"props":968,"children":969},{},[970],{"type":45,"value":971},"    Invoke-WebRequest -Uri 'https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.ps1' -OutFile $installScript\n",{"type":40,"tag":502,"props":973,"children":974},{"class":504,"line":858},[975],{"type":40,"tag":502,"props":976,"children":977},{},[978],{"type":45,"value":979},"    & $installScript -Channel \u003CCHANNEL> -Quality \u003CQUALITY> -InstallDir .dotnet\n",{"type":40,"tag":502,"props":981,"children":983},{"class":504,"line":982},5,[984],{"type":40,"tag":502,"props":985,"children":986},{},[987],{"type":45,"value":988},"}\n",{"type":40,"tag":502,"props":990,"children":992},{"class":504,"line":991},6,[993],{"type":40,"tag":502,"props":994,"children":995},{},[996],{"type":45,"value":997},"finally {\n",{"type":40,"tag":502,"props":999,"children":1001},{"class":504,"line":1000},7,[1002],{"type":40,"tag":502,"props":1003,"children":1004},{},[1005],{"type":45,"value":1006},"    if (Test-Path -LiteralPath $installScript) {\n",{"type":40,"tag":502,"props":1008,"children":1010},{"class":504,"line":1009},8,[1011],{"type":40,"tag":502,"props":1012,"children":1013},{},[1014],{"type":45,"value":1015},"        Remove-Item -LiteralPath $installScript -Force\n",{"type":40,"tag":502,"props":1017,"children":1019},{"class":504,"line":1018},9,[1020],{"type":40,"tag":502,"props":1021,"children":1022},{},[1023],{"type":45,"value":1024},"    }\n",{"type":40,"tag":502,"props":1026,"children":1028},{"class":504,"line":1027},10,[1029],{"type":40,"tag":502,"props":1030,"children":1031},{},[1032],{"type":45,"value":988},{"type":40,"tag":54,"props":1034,"children":1035},{},[1036,1038,1044,1046,1052,1054,1060,1062,1068],{"type":45,"value":1037},"For exact versions: use ",{"type":40,"tag":60,"props":1039,"children":1041},{"className":1040},[],[1042],{"type":45,"value":1043},"--version \u003CVERSION>",{"type":45,"value":1045}," (bash) or ",{"type":40,"tag":60,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":45,"value":1051},"-Version \u003CVERSION>",{"type":45,"value":1053}," (PowerShell)\ninstead of channel\u002Fquality flags. The install scripts are from Microsoft's official\nURLs: ",{"type":40,"tag":60,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":45,"value":1059},"https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.sh",{"type":45,"value":1061}," and ",{"type":40,"tag":60,"props":1063,"children":1065},{"className":1064},[],[1066],{"type":45,"value":1067},"https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.ps1",{"type":45,"value":586},{"type":40,"tag":380,"props":1070,"children":1072},{"id":1071},"step-6-identify-the-installed-version",[1073],{"type":45,"value":1074},"Step 6 — Identify the installed version",{"type":40,"tag":491,"props":1076,"children":1078},{"className":493,"code":1077,"language":495,"meta":496,"style":496},".\u002F.dotnet\u002Fdotnet --version          # macOS\u002FLinux\n.\\.dotnet\\dotnet.exe --version      # Windows\n",[1079],{"type":40,"tag":60,"props":1080,"children":1081},{"__ignoreMap":496},[1082,1101],{"type":40,"tag":502,"props":1083,"children":1084},{"class":504,"line":505},[1085,1090,1095],{"type":40,"tag":502,"props":1086,"children":1087},{"style":509},[1088],{"type":45,"value":1089},".\u002F.dotnet\u002Fdotnet",{"type":40,"tag":502,"props":1091,"children":1092},{"style":514},[1093],{"type":45,"value":1094}," --version",{"type":40,"tag":502,"props":1096,"children":1098},{"style":1097},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1099],{"type":45,"value":1100},"          # macOS\u002FLinux\n",{"type":40,"tag":502,"props":1102,"children":1103},{"class":504,"line":793},[1104,1108,1113,1118,1122,1127,1131],{"type":40,"tag":502,"props":1105,"children":1106},{"style":613},[1107],{"type":45,"value":586},{"type":40,"tag":502,"props":1109,"children":1110},{"style":737},[1111],{"type":45,"value":1112},"\\",{"type":40,"tag":502,"props":1114,"children":1115},{"style":514},[1116],{"type":45,"value":1117},".dotnet",{"type":40,"tag":502,"props":1119,"children":1120},{"style":737},[1121],{"type":45,"value":1112},{"type":40,"tag":502,"props":1123,"children":1124},{"style":514},[1125],{"type":45,"value":1126},"dotnet.exe",{"type":40,"tag":502,"props":1128,"children":1129},{"style":514},[1130],{"type":45,"value":1094},{"type":40,"tag":502,"props":1132,"children":1133},{"style":1097},[1134],{"type":45,"value":1135},"      # Windows\n",{"type":40,"tag":54,"props":1137,"children":1138},{},[1139,1141,1146,1148,1153],{"type":45,"value":1140},"Record the exact version string (e.g., ",{"type":40,"tag":60,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":45,"value":304},{"type":45,"value":1147},") for ",{"type":40,"tag":60,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":45,"value":73},{"type":45,"value":586},{"type":40,"tag":380,"props":1155,"children":1157},{"id":1156},"step-7-create-or-update-globaljson",[1158],{"type":45,"value":1159},"Step 7 — Create or update global.json",{"type":40,"tag":491,"props":1161,"children":1165},{"className":1162,"code":1163,"language":1164,"meta":496,"style":496},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"sdk\": {\n    \"version\": \"\u003CINSTALLED_VERSION>\",\n    \"allowPrerelease\": true,\n    \"rollForward\": \"latestFeature\",\n    \"paths\": [\".dotnet\", \"$host$\"],\n    \"errorMessage\": \"Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.\"\n  }\n}\n","json",[1166],{"type":40,"tag":60,"props":1167,"children":1168},{"__ignoreMap":496},[1169,1177,1204,1243,1268,1305,1364,1397,1405],{"type":40,"tag":502,"props":1170,"children":1171},{"class":504,"line":505},[1172],{"type":40,"tag":502,"props":1173,"children":1174},{"style":629},[1175],{"type":45,"value":1176},"{\n",{"type":40,"tag":502,"props":1178,"children":1179},{"class":504,"line":793},[1180,1185,1190,1194,1199],{"type":40,"tag":502,"props":1181,"children":1182},{"style":629},[1183],{"type":45,"value":1184},"  \"",{"type":40,"tag":502,"props":1186,"children":1188},{"style":1187},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1189],{"type":45,"value":21},{"type":40,"tag":502,"props":1191,"children":1192},{"style":629},[1193],{"type":45,"value":652},{"type":40,"tag":502,"props":1195,"children":1196},{"style":629},[1197],{"type":45,"value":1198},":",{"type":40,"tag":502,"props":1200,"children":1201},{"style":629},[1202],{"type":45,"value":1203}," {\n",{"type":40,"tag":502,"props":1205,"children":1206},{"class":504,"line":822},[1207,1212,1217,1221,1225,1229,1234,1238],{"type":40,"tag":502,"props":1208,"children":1209},{"style":629},[1210],{"type":45,"value":1211},"    \"",{"type":40,"tag":502,"props":1213,"children":1214},{"style":509},[1215],{"type":45,"value":1216},"version",{"type":40,"tag":502,"props":1218,"children":1219},{"style":629},[1220],{"type":45,"value":652},{"type":40,"tag":502,"props":1222,"children":1223},{"style":629},[1224],{"type":45,"value":1198},{"type":40,"tag":502,"props":1226,"children":1227},{"style":629},[1228],{"type":45,"value":642},{"type":40,"tag":502,"props":1230,"children":1231},{"style":514},[1232],{"type":45,"value":1233},"\u003CINSTALLED_VERSION>",{"type":40,"tag":502,"props":1235,"children":1236},{"style":629},[1237],{"type":45,"value":652},{"type":40,"tag":502,"props":1239,"children":1240},{"style":629},[1241],{"type":45,"value":1242},",\n",{"type":40,"tag":502,"props":1244,"children":1245},{"class":504,"line":858},[1246,1250,1255,1259,1263],{"type":40,"tag":502,"props":1247,"children":1248},{"style":629},[1249],{"type":45,"value":1211},{"type":40,"tag":502,"props":1251,"children":1252},{"style":509},[1253],{"type":45,"value":1254},"allowPrerelease",{"type":40,"tag":502,"props":1256,"children":1257},{"style":629},[1258],{"type":45,"value":652},{"type":40,"tag":502,"props":1260,"children":1261},{"style":629},[1262],{"type":45,"value":1198},{"type":40,"tag":502,"props":1264,"children":1265},{"style":629},[1266],{"type":45,"value":1267}," true,\n",{"type":40,"tag":502,"props":1269,"children":1270},{"class":504,"line":982},[1271,1275,1280,1284,1288,1292,1297,1301],{"type":40,"tag":502,"props":1272,"children":1273},{"style":629},[1274],{"type":45,"value":1211},{"type":40,"tag":502,"props":1276,"children":1277},{"style":509},[1278],{"type":45,"value":1279},"rollForward",{"type":40,"tag":502,"props":1281,"children":1282},{"style":629},[1283],{"type":45,"value":652},{"type":40,"tag":502,"props":1285,"children":1286},{"style":629},[1287],{"type":45,"value":1198},{"type":40,"tag":502,"props":1289,"children":1290},{"style":629},[1291],{"type":45,"value":642},{"type":40,"tag":502,"props":1293,"children":1294},{"style":514},[1295],{"type":45,"value":1296},"latestFeature",{"type":40,"tag":502,"props":1298,"children":1299},{"style":629},[1300],{"type":45,"value":652},{"type":40,"tag":502,"props":1302,"children":1303},{"style":629},[1304],{"type":45,"value":1242},{"type":40,"tag":502,"props":1306,"children":1307},{"class":504,"line":991},[1308,1312,1316,1320,1324,1329,1333,1337,1341,1346,1350,1355,1359],{"type":40,"tag":502,"props":1309,"children":1310},{"style":629},[1311],{"type":45,"value":1211},{"type":40,"tag":502,"props":1313,"children":1314},{"style":509},[1315],{"type":45,"value":81},{"type":40,"tag":502,"props":1317,"children":1318},{"style":629},[1319],{"type":45,"value":652},{"type":40,"tag":502,"props":1321,"children":1322},{"style":629},[1323],{"type":45,"value":1198},{"type":40,"tag":502,"props":1325,"children":1326},{"style":629},[1327],{"type":45,"value":1328}," [",{"type":40,"tag":502,"props":1330,"children":1331},{"style":629},[1332],{"type":45,"value":652},{"type":40,"tag":502,"props":1334,"children":1335},{"style":514},[1336],{"type":45,"value":1117},{"type":40,"tag":502,"props":1338,"children":1339},{"style":629},[1340],{"type":45,"value":652},{"type":40,"tag":502,"props":1342,"children":1343},{"style":629},[1344],{"type":45,"value":1345},",",{"type":40,"tag":502,"props":1347,"children":1348},{"style":629},[1349],{"type":45,"value":642},{"type":40,"tag":502,"props":1351,"children":1352},{"style":514},[1353],{"type":45,"value":1354},"$host$",{"type":40,"tag":502,"props":1356,"children":1357},{"style":629},[1358],{"type":45,"value":652},{"type":40,"tag":502,"props":1360,"children":1361},{"style":629},[1362],{"type":45,"value":1363},"],\n",{"type":40,"tag":502,"props":1365,"children":1366},{"class":504,"line":1000},[1367,1371,1376,1380,1384,1388,1393],{"type":40,"tag":502,"props":1368,"children":1369},{"style":629},[1370],{"type":45,"value":1211},{"type":40,"tag":502,"props":1372,"children":1373},{"style":509},[1374],{"type":45,"value":1375},"errorMessage",{"type":40,"tag":502,"props":1377,"children":1378},{"style":629},[1379],{"type":45,"value":652},{"type":40,"tag":502,"props":1381,"children":1382},{"style":629},[1383],{"type":45,"value":1198},{"type":40,"tag":502,"props":1385,"children":1386},{"style":629},[1387],{"type":45,"value":642},{"type":40,"tag":502,"props":1389,"children":1390},{"style":514},[1391],{"type":45,"value":1392},"Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.",{"type":40,"tag":502,"props":1394,"children":1395},{"style":629},[1396],{"type":45,"value":675},{"type":40,"tag":502,"props":1398,"children":1399},{"class":504,"line":1009},[1400],{"type":40,"tag":502,"props":1401,"children":1402},{"style":629},[1403],{"type":45,"value":1404},"  }\n",{"type":40,"tag":502,"props":1406,"children":1407},{"class":504,"line":1018},[1408],{"type":40,"tag":502,"props":1409,"children":1410},{"style":629},[1411],{"type":45,"value":988},{"type":40,"tag":90,"props":1413,"children":1414},{},[1415,1439,1450,1463,1481],{"type":40,"tag":94,"props":1416,"children":1417},{},[1418,1423,1425,1430,1432,1437],{"type":40,"tag":60,"props":1419,"children":1421},{"className":1420},[],[1422],{"type":45,"value":81},{"type":45,"value":1424},": ",{"type":40,"tag":60,"props":1426,"children":1428},{"className":1427},[],[1429],{"type":45,"value":1117},{"type":45,"value":1431}," first (local priority), ",{"type":40,"tag":60,"props":1433,"children":1435},{"className":1434},[],[1436],{"type":45,"value":1354},{"type":45,"value":1438}," = system-wide fallback.",{"type":40,"tag":94,"props":1440,"children":1441},{},[1442,1448],{"type":40,"tag":60,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":45,"value":1447},"rollForward: \"latestFeature\"",{"type":45,"value":1449},": use for latest-preview or floating feature-band installs.",{"type":40,"tag":94,"props":1451,"children":1452},{},[1453,1455,1461],{"type":45,"value":1454},"Exact version requests: use ",{"type":40,"tag":60,"props":1456,"children":1458},{"className":1457},[],[1459],{"type":45,"value":1460},"rollForward: \"disable\"",{"type":45,"value":1462}," so SDK resolution doesn't move to a different feature band.",{"type":40,"tag":94,"props":1464,"children":1465},{},[1466,1471,1473,1479],{"type":40,"tag":60,"props":1467,"children":1469},{"className":1468},[],[1470],{"type":45,"value":1254},{"type":45,"value":1472},": set to ",{"type":40,"tag":60,"props":1474,"children":1476},{"className":1475},[],[1477],{"type":45,"value":1478},"true",{"type":45,"value":1480}," only when installing a prerelease SDK. Omit for stable versions.",{"type":40,"tag":94,"props":1482,"children":1483},{},[1484,1489],{"type":40,"tag":60,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":45,"value":1375},{"type":45,"value":1490},": include only when team install scripts are created (Step 10). Otherwise omit.",{"type":40,"tag":54,"props":1492,"children":1493},{},[1494,1495,1500,1502,1507,1509,1515,1516,1522,1524,1529,1531,1536,1538,1544],{"type":45,"value":704},{"type":40,"tag":60,"props":1496,"children":1498},{"className":1497},[],[1499],{"type":45,"value":73},{"type":45,"value":1501}," already exists, ",{"type":40,"tag":100,"props":1503,"children":1504},{},[1505],{"type":45,"value":1506},"merge",{"type":45,"value":1508}," carefully: preserve existing properties (",{"type":40,"tag":60,"props":1510,"children":1512},{"className":1511},[],[1513],{"type":45,"value":1514},"msbuild-sdks",{"type":45,"value":1242},{"type":40,"tag":60,"props":1517,"children":1519},{"className":1518},[],[1520],{"type":45,"value":1521},"tools",{"type":45,"value":1523},", etc.) and only add\u002Fupdate the ",{"type":40,"tag":60,"props":1525,"children":1527},{"className":1526},[],[1528],{"type":45,"value":21},{"type":45,"value":1530}," section. Read the existing file first, update\u002Fadd\nthe ",{"type":40,"tag":60,"props":1532,"children":1534},{"className":1533},[],[1535],{"type":45,"value":21},{"type":45,"value":1537}," object, then write it back. This ensures cross-project config (e.g., MSBuild settings)\nisn't lost. Always back up the original file (e.g., ",{"type":40,"tag":60,"props":1539,"children":1541},{"className":1540},[],[1542],{"type":45,"value":1543},"global.json.bak",{"type":45,"value":1545},") before modifying.",{"type":40,"tag":54,"props":1547,"children":1548},{},[1549,1554,1556],{"type":40,"tag":100,"props":1550,"children":1551},{},[1552],{"type":45,"value":1553},"Minimal config",{"type":45,"value":1555}," (when version pinning isn't needed):\n",{"type":40,"tag":60,"props":1557,"children":1559},{"className":1558},[],[1560],{"type":45,"value":1561},"{\"sdk\":{\"paths\":[\".dotnet\",\"$host$\"]}}",{"type":40,"tag":380,"props":1563,"children":1565},{"id":1564},"step-8-update-gitignore",[1566],{"type":45,"value":1567},"Step 8 — Update .gitignore",{"type":40,"tag":54,"props":1569,"children":1570},{},[1571],{"type":40,"tag":100,"props":1572,"children":1573},{},[1574],{"type":45,"value":1575},"macOS \u002F Linux (or Git Bash):",{"type":40,"tag":491,"props":1577,"children":1579},{"className":493,"code":1578,"language":495,"meta":496,"style":496},"grep -qxF '.dotnet\u002F' .gitignore 2>\u002Fdev\u002Fnull || printf '\\n.dotnet\u002F\\n' >> .gitignore\n",[1580],{"type":40,"tag":60,"props":1581,"children":1582},{"__ignoreMap":496},[1583],{"type":40,"tag":502,"props":1584,"children":1585},{"class":504,"line":505},[1586,1591,1596,1600,1604,1608,1613,1618,1623,1627,1632,1636,1641,1645,1650],{"type":40,"tag":502,"props":1587,"children":1588},{"style":509},[1589],{"type":45,"value":1590},"grep",{"type":40,"tag":502,"props":1592,"children":1593},{"style":514},[1594],{"type":45,"value":1595}," -qxF",{"type":40,"tag":502,"props":1597,"children":1598},{"style":629},[1599],{"type":45,"value":804},{"type":40,"tag":502,"props":1601,"children":1602},{"style":514},[1603],{"type":45,"value":65},{"type":40,"tag":502,"props":1605,"children":1606},{"style":629},[1607],{"type":45,"value":814},{"type":40,"tag":502,"props":1609,"children":1610},{"style":514},[1611],{"type":45,"value":1612}," .gitignore",{"type":40,"tag":502,"props":1614,"children":1615},{"style":629},[1616],{"type":45,"value":1617}," 2>",{"type":40,"tag":502,"props":1619,"children":1620},{"style":514},[1621],{"type":45,"value":1622},"\u002Fdev\u002Fnull",{"type":40,"tag":502,"props":1624,"children":1625},{"style":629},[1626],{"type":45,"value":657},{"type":40,"tag":502,"props":1628,"children":1629},{"style":613},[1630],{"type":45,"value":1631}," printf",{"type":40,"tag":502,"props":1633,"children":1634},{"style":629},[1635],{"type":45,"value":804},{"type":40,"tag":502,"props":1637,"children":1638},{"style":514},[1639],{"type":45,"value":1640},"\\n.dotnet\u002F\\n",{"type":40,"tag":502,"props":1642,"children":1643},{"style":629},[1644],{"type":45,"value":814},{"type":40,"tag":502,"props":1646,"children":1647},{"style":629},[1648],{"type":45,"value":1649}," >>",{"type":40,"tag":502,"props":1651,"children":1652},{"style":514},[1653],{"type":45,"value":1654}," .gitignore\n",{"type":40,"tag":54,"props":1656,"children":1657},{},[1658],{"type":40,"tag":100,"props":1659,"children":1660},{},[1661],{"type":45,"value":683},{"type":40,"tag":491,"props":1663,"children":1665},{"className":686,"code":1664,"language":688,"meta":496,"style":496},"if (-not (Test-Path .gitignore) -or -not (Select-String -Path .gitignore -Pattern '^\\.dotnet\u002F$' -Quiet)) {\n    Add-Content -Path .gitignore -Value '.dotnet\u002F'\n}\n",[1666],{"type":40,"tag":60,"props":1667,"children":1668},{"__ignoreMap":496},[1669,1677,1685],{"type":40,"tag":502,"props":1670,"children":1671},{"class":504,"line":505},[1672],{"type":40,"tag":502,"props":1673,"children":1674},{},[1675],{"type":45,"value":1676},"if (-not (Test-Path .gitignore) -or -not (Select-String -Path .gitignore -Pattern '^\\.dotnet\u002F$' -Quiet)) {\n",{"type":40,"tag":502,"props":1678,"children":1679},{"class":504,"line":793},[1680],{"type":40,"tag":502,"props":1681,"children":1682},{},[1683],{"type":45,"value":1684},"    Add-Content -Path .gitignore -Value '.dotnet\u002F'\n",{"type":40,"tag":502,"props":1686,"children":1687},{"class":504,"line":822},[1688],{"type":40,"tag":502,"props":1689,"children":1690},{},[1691],{"type":45,"value":988},{"type":40,"tag":380,"props":1693,"children":1695},{"id":1694},"step-9-install-workloads-if-requested",[1696],{"type":45,"value":1697},"Step 9 — Install workloads (if requested)",{"type":40,"tag":54,"props":1699,"children":1700},{},[1701,1703,1708,1709,1715],{"type":45,"value":1702},"Only do this after ",{"type":40,"tag":60,"props":1704,"children":1706},{"className":1705},[],[1707],{"type":45,"value":73},{"type":45,"value":1061},{"type":40,"tag":60,"props":1710,"children":1712},{"className":1711},[],[1713],{"type":45,"value":1714},".gitignore",{"type":45,"value":1716}," are complete, so a slow or\nplatform-limited workload install does not prevent the base local SDK setup from\nbeing usable.",{"type":40,"tag":54,"props":1718,"children":1719},{},[1720,1722,1727],{"type":45,"value":1721},"If the user mentioned MAUI, mobile, workload, Blazor WASM, or cross-platform,\ninstall using the ",{"type":40,"tag":100,"props":1723,"children":1724},{},[1725],{"type":45,"value":1726},"local",{"type":45,"value":1728}," binary (no sudo needed):",{"type":40,"tag":491,"props":1730,"children":1732},{"className":493,"code":1731,"language":495,"meta":496,"style":496},".\u002F.dotnet\u002Fdotnet workload install \u003Cworkload>       # macOS\u002FLinux\n.\\.dotnet\\dotnet.exe workload install \u003Cworkload>   # Windows\n",[1733],{"type":40,"tag":60,"props":1734,"children":1735},{"__ignoreMap":496},[1736,1776],{"type":40,"tag":502,"props":1737,"children":1738},{"class":504,"line":505},[1739,1743,1748,1753,1757,1762,1767,1771],{"type":40,"tag":502,"props":1740,"children":1741},{"style":509},[1742],{"type":45,"value":1089},{"type":40,"tag":502,"props":1744,"children":1745},{"style":514},[1746],{"type":45,"value":1747}," workload",{"type":40,"tag":502,"props":1749,"children":1750},{"style":514},[1751],{"type":45,"value":1752}," install",{"type":40,"tag":502,"props":1754,"children":1755},{"style":629},[1756],{"type":45,"value":885},{"type":40,"tag":502,"props":1758,"children":1759},{"style":514},[1760],{"type":45,"value":1761},"workloa",{"type":40,"tag":502,"props":1763,"children":1764},{"style":737},[1765],{"type":45,"value":1766},"d",{"type":40,"tag":502,"props":1768,"children":1769},{"style":629},[1770],{"type":45,"value":900},{"type":40,"tag":502,"props":1772,"children":1773},{"style":1097},[1774],{"type":45,"value":1775},"       # macOS\u002FLinux\n",{"type":40,"tag":502,"props":1777,"children":1778},{"class":504,"line":793},[1779,1783,1787,1791,1795,1799,1803,1807,1811,1815,1819,1823],{"type":40,"tag":502,"props":1780,"children":1781},{"style":613},[1782],{"type":45,"value":586},{"type":40,"tag":502,"props":1784,"children":1785},{"style":737},[1786],{"type":45,"value":1112},{"type":40,"tag":502,"props":1788,"children":1789},{"style":514},[1790],{"type":45,"value":1117},{"type":40,"tag":502,"props":1792,"children":1793},{"style":737},[1794],{"type":45,"value":1112},{"type":40,"tag":502,"props":1796,"children":1797},{"style":514},[1798],{"type":45,"value":1126},{"type":40,"tag":502,"props":1800,"children":1801},{"style":514},[1802],{"type":45,"value":1747},{"type":40,"tag":502,"props":1804,"children":1805},{"style":514},[1806],{"type":45,"value":1752},{"type":40,"tag":502,"props":1808,"children":1809},{"style":629},[1810],{"type":45,"value":885},{"type":40,"tag":502,"props":1812,"children":1813},{"style":514},[1814],{"type":45,"value":1761},{"type":40,"tag":502,"props":1816,"children":1817},{"style":737},[1818],{"type":45,"value":1766},{"type":40,"tag":502,"props":1820,"children":1821},{"style":629},[1822],{"type":45,"value":900},{"type":40,"tag":502,"props":1824,"children":1825},{"style":1097},[1826],{"type":45,"value":1827},"   # Windows\n",{"type":40,"tag":54,"props":1829,"children":1830},{},[1831,1833,1839,1841,1847],{"type":45,"value":1832},"Verify: ",{"type":40,"tag":60,"props":1834,"children":1836},{"className":1835},[],[1837],{"type":45,"value":1838},".\u002F.dotnet\u002Fdotnet workload list",{"type":45,"value":1840}," (or ",{"type":40,"tag":60,"props":1842,"children":1844},{"className":1843},[],[1845],{"type":45,"value":1846},".\\.dotnet\\dotnet.exe workload list",{"type":45,"value":139},{"type":40,"tag":54,"props":1849,"children":1850},{},[1851,1853,1859,1861,1867],{"type":45,"value":1852},"For MAUI, pick a workload supported by the current OS and target platform. On\nLinux, the full ",{"type":40,"tag":60,"props":1854,"children":1856},{"className":1855},[],[1857],{"type":45,"value":1858},"maui",{"type":45,"value":1860}," meta-workload is not available; use a supported workload\nsuch as ",{"type":40,"tag":60,"props":1862,"children":1864},{"className":1863},[],[1865],{"type":45,"value":1866},"maui-android",{"type":45,"value":1868}," when Android is the target, or explain the platform\nlimitation and ask which target to configure.",{"type":40,"tag":1870,"props":1871,"children":1872},"blockquote",{},[1873],{"type":40,"tag":54,"props":1874,"children":1875},{},[1876,1881,1883,1888,1890,1899],{"type":40,"tag":100,"props":1877,"children":1878},{},[1879],{"type":45,"value":1880},"Always use the local dotnet binary for workload commands.",{"type":45,"value":1882}," Workload metadata\nis stored relative to the host process's dotnet root. The system ",{"type":40,"tag":60,"props":1884,"children":1886},{"className":1885},[],[1887],{"type":45,"value":8},{"type":45,"value":1889}," puts\nmetadata in the wrong location. (See ",{"type":40,"tag":1891,"props":1892,"children":1896},"a",{"href":1893,"rel":1894},"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fsdk\u002Fissues\u002F49825",[1895],"nofollow",[1897],{"type":45,"value":1898},"dotnet\u002Fsdk#49825",{"type":45,"value":1900},".)",{"type":40,"tag":380,"props":1902,"children":1904},{"id":1903},"step-10-create-team-install-scripts",[1905],{"type":45,"value":1906},"Step 10 — Create team install scripts",{"type":40,"tag":54,"props":1908,"children":1909},{},[1910,1912,1917,1919,1924,1926,1931,1933,1938,1940,1945,1947,1953,1954,1959,1961,1967,1969,1974,1976,1982,1984,1989],{"type":45,"value":1911},"Create if user mentioned \"team\", \"share\", \"CI\", \"scripts\", etc. Otherwise offer.\nThese examples back up ",{"type":40,"tag":60,"props":1913,"children":1915},{"className":1914},[],[1916],{"type":45,"value":73},{"type":45,"value":1918}," and preserve existing settings. The bash script\nuses ",{"type":40,"tag":60,"props":1920,"children":1922},{"className":1921},[],[1923],{"type":45,"value":357},{"type":45,"value":1925}," when an existing ",{"type":40,"tag":60,"props":1927,"children":1929},{"className":1928},[],[1930],{"type":45,"value":73},{"type":45,"value":1932}," must be patched; if ",{"type":40,"tag":60,"props":1934,"children":1936},{"className":1935},[],[1937],{"type":45,"value":357},{"type":45,"value":1939}," is unavailable,\nit refuses to overwrite the file and prints the settings to merge manually.\nAdapt script variables to the install choice from Step 1: exact versions should\nuse ",{"type":40,"tag":60,"props":1941,"children":1943},{"className":1942},[],[1944],{"type":45,"value":469},{"type":45,"value":1946}," \u002F ",{"type":40,"tag":60,"props":1948,"children":1950},{"className":1949},[],[1951],{"type":45,"value":1952},"-Version",{"type":45,"value":1061},{"type":40,"tag":60,"props":1955,"children":1957},{"className":1956},[],[1958],{"type":45,"value":1460},{"type":45,"value":1960},"; channel installs should\nuse channel\u002Fquality and only set ",{"type":40,"tag":60,"props":1962,"children":1964},{"className":1963},[],[1965],{"type":45,"value":1966},"allowPrerelease: true",{"type":45,"value":1968}," for prerelease SDKs.\nIf ",{"type":40,"tag":60,"props":1970,"children":1972},{"className":1971},[],[1973],{"type":45,"value":73},{"type":45,"value":1975}," already pins ",{"type":40,"tag":60,"props":1977,"children":1979},{"className":1978},[],[1980],{"type":45,"value":1981},"sdk.version",{"type":45,"value":1983}," and the user mainly needs team\nscripts, reuse that version in the scripts and update ",{"type":40,"tag":60,"props":1985,"children":1987},{"className":1986},[],[1988],{"type":45,"value":73},{"type":45,"value":1990}," first; do\nnot start a long SDK download just to discover the version. When the user asks\nfor both setup and scripts, create the scripts\u002Fconfig before any long install so\nthe reproducible setup exists even if download or workload installation is slow.",{"type":40,"tag":54,"props":1992,"children":1993},{},[1994],{"type":40,"tag":100,"props":1995,"children":1996},{},[1997],{"type":45,"value":1998},"install-dotnet.sh:",{"type":40,"tag":491,"props":2000,"children":2002},{"className":493,"code":2001,"language":495,"meta":496,"style":496},"#!\u002Fusr\u002Fbin\u002Fenv bash\nset -euo pipefail\nINSTALL_DIR=\".dotnet\"\nCHANNEL=\"11.0\"\nQUALITY=\"preview\"\nVERSION=\"\"\nROLL_FORWARD=\"latestFeature\"\nALLOW_PRERELEASE=\"true\"\nWORKLOADS=(\"${@}\")\nERROR_MESSAGE=\"Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.\"\nINSTALL_SCRIPT=\"$(mktemp \"${TMPDIR:-\u002Ftmp}\u002Fdotnet-install.XXXXXX\")\"\nGLOBAL_JSON_TMP=\"\"\ncleanup() {\n    rm -f \"$INSTALL_SCRIPT\"\n    [ -n \"$GLOBAL_JSON_TMP\" ] && rm -f \"$GLOBAL_JSON_TMP\"\n}\ntrap cleanup EXIT\ncurl -fsSL https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.sh -o \"$INSTALL_SCRIPT\"\nINSTALL_ARGS=(--install-dir \"$INSTALL_DIR\")\nif [ -n \"$VERSION\" ]; then\n    INSTALL_ARGS+=(--version \"$VERSION\")\n    ROLL_FORWARD=\"disable\"\nelse\n    INSTALL_ARGS+=(--channel \"$CHANNEL\" --quality \"$QUALITY\")\nfi\nbash \"$INSTALL_SCRIPT\" \"${INSTALL_ARGS[@]}\"\nSDK_VERSION=$(\"$INSTALL_DIR\u002Fdotnet\" --version)\nwrite_global_json() {\n    if [ -f global.json ]; then\n        cp global.json global.json.bak\n        if ! command -v jq >\u002Fdev\u002Fnull 2>&1; then\n            echo \"global.json exists; install succeeded, but this script will not overwrite it without jq.\" >&2\n            echo \"Merge these sdk settings manually so existing global.json properties are preserved:\" >&2\n            cat >&2 \u003C\u003CEOF\n{\n  \"sdk\": {\n    \"version\": \"$SDK_VERSION\",\n    \"allowPrerelease\": $ALLOW_PRERELEASE,\n    \"rollForward\": \"$ROLL_FORWARD\",\n    \"paths\": [\".dotnet\", \"\\$host\\$\"],\n    \"errorMessage\": \"$ERROR_MESSAGE\"\n  }\n}\nEOF\n            exit 1\n        fi\n        GLOBAL_JSON_TMP=\"$(mktemp \"${TMPDIR:-\u002Ftmp}\u002Fglobal-json.XXXXXX\")\"\n        jq --arg version \"$SDK_VERSION\" --arg rollForward \"$ROLL_FORWARD\" --argjson allowPrerelease \"$ALLOW_PRERELEASE\" --arg errorMessage \"$ERROR_MESSAGE\" '\n          .sdk = ((.sdk \u002F\u002F {}) + {\n            version: $version,\n            allowPrerelease: $allowPrerelease,\n            rollForward: $rollForward,\n            paths: [\".dotnet\", \"$host$\"],\n            errorMessage: $errorMessage\n          })\n        ' global.json > \"$GLOBAL_JSON_TMP\"\n        mv \"$GLOBAL_JSON_TMP\" global.json\n        GLOBAL_JSON_TMP=\"\"\n    else\n        cat > global.json \u003C\u003CEOF\n{\n  \"sdk\": {\n    \"version\": \"$SDK_VERSION\",\n    \"allowPrerelease\": $ALLOW_PRERELEASE,\n    \"rollForward\": \"$ROLL_FORWARD\",\n    \"paths\": [\".dotnet\", \"\\$host\\$\"],\n    \"errorMessage\": \"$ERROR_MESSAGE\"\n  }\n}\nEOF\n    fi\n}\nwrite_global_json\ngrep -qxF '.dotnet\u002F' .gitignore 2>\u002Fdev\u002Fnull || printf '\\n.dotnet\u002F\\n' >> .gitignore\n[ ${#WORKLOADS[@]} -gt 0 ] && \"$INSTALL_DIR\u002Fdotnet\" workload install \"${WORKLOADS[@]}\"\necho \"Done. SDK: $SDK_VERSION\"\n",[2003],{"type":40,"tag":60,"props":2004,"children":2005},{"__ignoreMap":496},[2006,2014,2032,2056,2080,2104,2121,2145,2169,2192,2216,2264,2281,2299,2325,2382,2390,2407,2439,2474,2515,2549,2575,2584,2634,2643,2676,2711,2728,2759,2778,2825,2852,2877,2901,2909,2918,2937,2955,2973,3001,3019,3027,3035,3043,3058,3067,3117,3217,3226,3235,3244,3253,3262,3271,3280,3309,3335,3351,3360,3385,3393,3401,3417,3433,3449,3473,3489,3497,3505,3513,3522,3530,3539,3603,3676],{"type":40,"tag":502,"props":2007,"children":2008},{"class":504,"line":505},[2009],{"type":40,"tag":502,"props":2010,"children":2011},{"style":1097},[2012],{"type":45,"value":2013},"#!\u002Fusr\u002Fbin\u002Fenv bash\n",{"type":40,"tag":502,"props":2015,"children":2016},{"class":504,"line":793},[2017,2022,2027],{"type":40,"tag":502,"props":2018,"children":2019},{"style":613},[2020],{"type":45,"value":2021},"set",{"type":40,"tag":502,"props":2023,"children":2024},{"style":514},[2025],{"type":45,"value":2026}," -euo",{"type":40,"tag":502,"props":2028,"children":2029},{"style":514},[2030],{"type":45,"value":2031}," pipefail\n",{"type":40,"tag":502,"props":2033,"children":2034},{"class":504,"line":822},[2035,2040,2044,2048,2052],{"type":40,"tag":502,"props":2036,"children":2037},{"style":737},[2038],{"type":45,"value":2039},"INSTALL_DIR",{"type":40,"tag":502,"props":2041,"children":2042},{"style":629},[2043],{"type":45,"value":745},{"type":40,"tag":502,"props":2045,"children":2046},{"style":629},[2047],{"type":45,"value":652},{"type":40,"tag":502,"props":2049,"children":2050},{"style":514},[2051],{"type":45,"value":1117},{"type":40,"tag":502,"props":2053,"children":2054},{"style":629},[2055],{"type":45,"value":675},{"type":40,"tag":502,"props":2057,"children":2058},{"class":504,"line":858},[2059,2064,2068,2072,2076],{"type":40,"tag":502,"props":2060,"children":2061},{"style":737},[2062],{"type":45,"value":2063},"CHANNEL",{"type":40,"tag":502,"props":2065,"children":2066},{"style":629},[2067],{"type":45,"value":745},{"type":40,"tag":502,"props":2069,"children":2070},{"style":629},[2071],{"type":45,"value":652},{"type":40,"tag":502,"props":2073,"children":2074},{"style":514},[2075],{"type":45,"value":271},{"type":40,"tag":502,"props":2077,"children":2078},{"style":629},[2079],{"type":45,"value":675},{"type":40,"tag":502,"props":2081,"children":2082},{"class":504,"line":982},[2083,2088,2092,2096,2100],{"type":40,"tag":502,"props":2084,"children":2085},{"style":737},[2086],{"type":45,"value":2087},"QUALITY",{"type":40,"tag":502,"props":2089,"children":2090},{"style":629},[2091],{"type":45,"value":745},{"type":40,"tag":502,"props":2093,"children":2094},{"style":629},[2095],{"type":45,"value":652},{"type":40,"tag":502,"props":2097,"children":2098},{"style":514},[2099],{"type":45,"value":325},{"type":40,"tag":502,"props":2101,"children":2102},{"style":629},[2103],{"type":45,"value":675},{"type":40,"tag":502,"props":2105,"children":2106},{"class":504,"line":991},[2107,2112,2116],{"type":40,"tag":502,"props":2108,"children":2109},{"style":737},[2110],{"type":45,"value":2111},"VERSION",{"type":40,"tag":502,"props":2113,"children":2114},{"style":629},[2115],{"type":45,"value":745},{"type":40,"tag":502,"props":2117,"children":2118},{"style":629},[2119],{"type":45,"value":2120},"\"\"\n",{"type":40,"tag":502,"props":2122,"children":2123},{"class":504,"line":1000},[2124,2129,2133,2137,2141],{"type":40,"tag":502,"props":2125,"children":2126},{"style":737},[2127],{"type":45,"value":2128},"ROLL_FORWARD",{"type":40,"tag":502,"props":2130,"children":2131},{"style":629},[2132],{"type":45,"value":745},{"type":40,"tag":502,"props":2134,"children":2135},{"style":629},[2136],{"type":45,"value":652},{"type":40,"tag":502,"props":2138,"children":2139},{"style":514},[2140],{"type":45,"value":1296},{"type":40,"tag":502,"props":2142,"children":2143},{"style":629},[2144],{"type":45,"value":675},{"type":40,"tag":502,"props":2146,"children":2147},{"class":504,"line":1009},[2148,2153,2157,2161,2165],{"type":40,"tag":502,"props":2149,"children":2150},{"style":737},[2151],{"type":45,"value":2152},"ALLOW_PRERELEASE",{"type":40,"tag":502,"props":2154,"children":2155},{"style":629},[2156],{"type":45,"value":745},{"type":40,"tag":502,"props":2158,"children":2159},{"style":629},[2160],{"type":45,"value":652},{"type":40,"tag":502,"props":2162,"children":2163},{"style":514},[2164],{"type":45,"value":1478},{"type":40,"tag":502,"props":2166,"children":2167},{"style":629},[2168],{"type":45,"value":675},{"type":40,"tag":502,"props":2170,"children":2171},{"class":504,"line":1018},[2172,2177,2182,2187],{"type":40,"tag":502,"props":2173,"children":2174},{"style":737},[2175],{"type":45,"value":2176},"WORKLOADS",{"type":40,"tag":502,"props":2178,"children":2179},{"style":629},[2180],{"type":45,"value":2181},"=(",{"type":40,"tag":502,"props":2183,"children":2184},{"style":629},[2185],{"type":45,"value":2186},"\"${@}\"",{"type":40,"tag":502,"props":2188,"children":2189},{"style":629},[2190],{"type":45,"value":2191},")\n",{"type":40,"tag":502,"props":2193,"children":2194},{"class":504,"line":1027},[2195,2200,2204,2208,2212],{"type":40,"tag":502,"props":2196,"children":2197},{"style":737},[2198],{"type":45,"value":2199},"ERROR_MESSAGE",{"type":40,"tag":502,"props":2201,"children":2202},{"style":629},[2203],{"type":45,"value":745},{"type":40,"tag":502,"props":2205,"children":2206},{"style":629},[2207],{"type":45,"value":652},{"type":40,"tag":502,"props":2209,"children":2210},{"style":514},[2211],{"type":45,"value":1392},{"type":40,"tag":502,"props":2213,"children":2214},{"style":629},[2215],{"type":45,"value":675},{"type":40,"tag":502,"props":2217,"children":2219},{"class":504,"line":2218},11,[2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260],{"type":40,"tag":502,"props":2221,"children":2222},{"style":737},[2223],{"type":45,"value":740},{"type":40,"tag":502,"props":2225,"children":2226},{"style":629},[2227],{"type":45,"value":745},{"type":40,"tag":502,"props":2229,"children":2230},{"style":629},[2231],{"type":45,"value":750},{"type":40,"tag":502,"props":2233,"children":2234},{"style":509},[2235],{"type":45,"value":755},{"type":40,"tag":502,"props":2237,"children":2238},{"style":629},[2239],{"type":45,"value":760},{"type":40,"tag":502,"props":2241,"children":2242},{"style":737},[2243],{"type":45,"value":765},{"type":40,"tag":502,"props":2245,"children":2246},{"style":629},[2247],{"type":45,"value":770},{"type":40,"tag":502,"props":2249,"children":2250},{"style":737},[2251],{"type":45,"value":775},{"type":40,"tag":502,"props":2253,"children":2254},{"style":629},[2255],{"type":45,"value":780},{"type":40,"tag":502,"props":2257,"children":2258},{"style":514},[2259],{"type":45,"value":785},{"type":40,"tag":502,"props":2261,"children":2262},{"style":629},[2263],{"type":45,"value":790},{"type":40,"tag":502,"props":2265,"children":2267},{"class":504,"line":2266},12,[2268,2273,2277],{"type":40,"tag":502,"props":2269,"children":2270},{"style":737},[2271],{"type":45,"value":2272},"GLOBAL_JSON_TMP",{"type":40,"tag":502,"props":2274,"children":2275},{"style":629},[2276],{"type":45,"value":745},{"type":40,"tag":502,"props":2278,"children":2279},{"style":629},[2280],{"type":45,"value":2120},{"type":40,"tag":502,"props":2282,"children":2284},{"class":504,"line":2283},13,[2285,2290,2295],{"type":40,"tag":502,"props":2286,"children":2287},{"style":613},[2288],{"type":45,"value":2289},"cleanup",{"type":40,"tag":502,"props":2291,"children":2292},{"style":629},[2293],{"type":45,"value":2294},"()",{"type":40,"tag":502,"props":2296,"children":2297},{"style":629},[2298],{"type":45,"value":1203},{"type":40,"tag":502,"props":2300,"children":2302},{"class":504,"line":2301},14,[2303,2308,2313,2317,2321],{"type":40,"tag":502,"props":2304,"children":2305},{"style":509},[2306],{"type":45,"value":2307},"    rm",{"type":40,"tag":502,"props":2309,"children":2310},{"style":514},[2311],{"type":45,"value":2312}," -f",{"type":40,"tag":502,"props":2314,"children":2315},{"style":629},[2316],{"type":45,"value":642},{"type":40,"tag":502,"props":2318,"children":2319},{"style":737},[2320],{"type":45,"value":851},{"type":40,"tag":502,"props":2322,"children":2323},{"style":629},[2324],{"type":45,"value":675},{"type":40,"tag":502,"props":2326,"children":2328},{"class":504,"line":2327},15,[2329,2334,2339,2343,2348,2352,2357,2361,2366,2370,2374,2378],{"type":40,"tag":502,"props":2330,"children":2331},{"style":629},[2332],{"type":45,"value":2333},"    [",{"type":40,"tag":502,"props":2335,"children":2336},{"style":629},[2337],{"type":45,"value":2338}," -n",{"type":40,"tag":502,"props":2340,"children":2341},{"style":629},[2342],{"type":45,"value":642},{"type":40,"tag":502,"props":2344,"children":2345},{"style":737},[2346],{"type":45,"value":2347},"$GLOBAL_JSON_TMP",{"type":40,"tag":502,"props":2349,"children":2350},{"style":629},[2351],{"type":45,"value":652},{"type":40,"tag":502,"props":2353,"children":2354},{"style":629},[2355],{"type":45,"value":2356}," ]",{"type":40,"tag":502,"props":2358,"children":2359},{"style":629},[2360],{"type":45,"value":632},{"type":40,"tag":502,"props":2362,"children":2363},{"style":509},[2364],{"type":45,"value":2365}," rm",{"type":40,"tag":502,"props":2367,"children":2368},{"style":514},[2369],{"type":45,"value":2312},{"type":40,"tag":502,"props":2371,"children":2372},{"style":629},[2373],{"type":45,"value":642},{"type":40,"tag":502,"props":2375,"children":2376},{"style":737},[2377],{"type":45,"value":2347},{"type":40,"tag":502,"props":2379,"children":2380},{"style":629},[2381],{"type":45,"value":675},{"type":40,"tag":502,"props":2383,"children":2385},{"class":504,"line":2384},16,[2386],{"type":40,"tag":502,"props":2387,"children":2388},{"style":629},[2389],{"type":45,"value":988},{"type":40,"tag":502,"props":2391,"children":2393},{"class":504,"line":2392},17,[2394,2398,2403],{"type":40,"tag":502,"props":2395,"children":2396},{"style":613},[2397],{"type":45,"value":799},{"type":40,"tag":502,"props":2399,"children":2400},{"style":514},[2401],{"type":45,"value":2402}," cleanup",{"type":40,"tag":502,"props":2404,"children":2405},{"style":514},[2406],{"type":45,"value":819},{"type":40,"tag":502,"props":2408,"children":2410},{"class":504,"line":2409},18,[2411,2415,2419,2423,2427,2431,2435],{"type":40,"tag":502,"props":2412,"children":2413},{"style":509},[2414],{"type":45,"value":415},{"type":40,"tag":502,"props":2416,"children":2417},{"style":514},[2418],{"type":45,"value":832},{"type":40,"tag":502,"props":2420,"children":2421},{"style":514},[2422],{"type":45,"value":837},{"type":40,"tag":502,"props":2424,"children":2425},{"style":514},[2426],{"type":45,"value":842},{"type":40,"tag":502,"props":2428,"children":2429},{"style":629},[2430],{"type":45,"value":642},{"type":40,"tag":502,"props":2432,"children":2433},{"style":737},[2434],{"type":45,"value":851},{"type":40,"tag":502,"props":2436,"children":2437},{"style":629},[2438],{"type":45,"value":675},{"type":40,"tag":502,"props":2440,"children":2442},{"class":504,"line":2441},19,[2443,2448,2452,2457,2461,2466,2470],{"type":40,"tag":502,"props":2444,"children":2445},{"style":737},[2446],{"type":45,"value":2447},"INSTALL_ARGS",{"type":40,"tag":502,"props":2449,"children":2450},{"style":629},[2451],{"type":45,"value":2181},{"type":40,"tag":502,"props":2453,"children":2454},{"style":514},[2455],{"type":45,"value":2456},"--install-dir",{"type":40,"tag":502,"props":2458,"children":2459},{"style":629},[2460],{"type":45,"value":642},{"type":40,"tag":502,"props":2462,"children":2463},{"style":737},[2464],{"type":45,"value":2465},"$INSTALL_DIR",{"type":40,"tag":502,"props":2467,"children":2468},{"style":629},[2469],{"type":45,"value":652},{"type":40,"tag":502,"props":2471,"children":2472},{"style":629},[2473],{"type":45,"value":2191},{"type":40,"tag":502,"props":2475,"children":2477},{"class":504,"line":2476},20,[2478,2484,2488,2492,2496,2501,2505,2510],{"type":40,"tag":502,"props":2479,"children":2481},{"style":2480},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[2482],{"type":45,"value":2483},"if",{"type":40,"tag":502,"props":2485,"children":2486},{"style":629},[2487],{"type":45,"value":1328},{"type":40,"tag":502,"props":2489,"children":2490},{"style":629},[2491],{"type":45,"value":2338},{"type":40,"tag":502,"props":2493,"children":2494},{"style":629},[2495],{"type":45,"value":642},{"type":40,"tag":502,"props":2497,"children":2498},{"style":737},[2499],{"type":45,"value":2500},"$VERSION",{"type":40,"tag":502,"props":2502,"children":2503},{"style":629},[2504],{"type":45,"value":652},{"type":40,"tag":502,"props":2506,"children":2507},{"style":629},[2508],{"type":45,"value":2509}," ];",{"type":40,"tag":502,"props":2511,"children":2512},{"style":2480},[2513],{"type":45,"value":2514}," then\n",{"type":40,"tag":502,"props":2516,"children":2518},{"class":504,"line":2517},21,[2519,2524,2529,2533,2537,2541,2545],{"type":40,"tag":502,"props":2520,"children":2521},{"style":737},[2522],{"type":45,"value":2523},"    INSTALL_ARGS",{"type":40,"tag":502,"props":2525,"children":2526},{"style":629},[2527],{"type":45,"value":2528},"+=(",{"type":40,"tag":502,"props":2530,"children":2531},{"style":514},[2532],{"type":45,"value":469},{"type":40,"tag":502,"props":2534,"children":2535},{"style":629},[2536],{"type":45,"value":642},{"type":40,"tag":502,"props":2538,"children":2539},{"style":737},[2540],{"type":45,"value":2500},{"type":40,"tag":502,"props":2542,"children":2543},{"style":629},[2544],{"type":45,"value":652},{"type":40,"tag":502,"props":2546,"children":2547},{"style":629},[2548],{"type":45,"value":2191},{"type":40,"tag":502,"props":2550,"children":2552},{"class":504,"line":2551},22,[2553,2558,2562,2566,2571],{"type":40,"tag":502,"props":2554,"children":2555},{"style":737},[2556],{"type":45,"value":2557},"    ROLL_FORWARD",{"type":40,"tag":502,"props":2559,"children":2560},{"style":629},[2561],{"type":45,"value":745},{"type":40,"tag":502,"props":2563,"children":2564},{"style":629},[2565],{"type":45,"value":652},{"type":40,"tag":502,"props":2567,"children":2568},{"style":514},[2569],{"type":45,"value":2570},"disable",{"type":40,"tag":502,"props":2572,"children":2573},{"style":629},[2574],{"type":45,"value":675},{"type":40,"tag":502,"props":2576,"children":2578},{"class":504,"line":2577},23,[2579],{"type":40,"tag":502,"props":2580,"children":2581},{"style":2480},[2582],{"type":45,"value":2583},"else\n",{"type":40,"tag":502,"props":2585,"children":2587},{"class":504,"line":2586},24,[2588,2592,2596,2600,2604,2609,2613,2617,2621,2626,2630],{"type":40,"tag":502,"props":2589,"children":2590},{"style":737},[2591],{"type":45,"value":2523},{"type":40,"tag":502,"props":2593,"children":2594},{"style":629},[2595],{"type":45,"value":2528},{"type":40,"tag":502,"props":2597,"children":2598},{"style":514},[2599],{"type":45,"value":454},{"type":40,"tag":502,"props":2601,"children":2602},{"style":629},[2603],{"type":45,"value":642},{"type":40,"tag":502,"props":2605,"children":2606},{"style":737},[2607],{"type":45,"value":2608},"$CHANNEL",{"type":40,"tag":502,"props":2610,"children":2611},{"style":629},[2612],{"type":45,"value":652},{"type":40,"tag":502,"props":2614,"children":2615},{"style":514},[2616],{"type":45,"value":905},{"type":40,"tag":502,"props":2618,"children":2619},{"style":629},[2620],{"type":45,"value":642},{"type":40,"tag":502,"props":2622,"children":2623},{"style":737},[2624],{"type":45,"value":2625},"$QUALITY",{"type":40,"tag":502,"props":2627,"children":2628},{"style":629},[2629],{"type":45,"value":652},{"type":40,"tag":502,"props":2631,"children":2632},{"style":629},[2633],{"type":45,"value":2191},{"type":40,"tag":502,"props":2635,"children":2637},{"class":504,"line":2636},25,[2638],{"type":40,"tag":502,"props":2639,"children":2640},{"style":2480},[2641],{"type":45,"value":2642},"fi\n",{"type":40,"tag":502,"props":2644,"children":2646},{"class":504,"line":2645},26,[2647,2651,2655,2659,2663,2667,2671],{"type":40,"tag":502,"props":2648,"children":2649},{"style":509},[2650],{"type":45,"value":495},{"type":40,"tag":502,"props":2652,"children":2653},{"style":629},[2654],{"type":45,"value":642},{"type":40,"tag":502,"props":2656,"children":2657},{"style":737},[2658],{"type":45,"value":851},{"type":40,"tag":502,"props":2660,"children":2661},{"style":629},[2662],{"type":45,"value":652},{"type":40,"tag":502,"props":2664,"children":2665},{"style":629},[2666],{"type":45,"value":760},{"type":40,"tag":502,"props":2668,"children":2669},{"style":737},[2670],{"type":45,"value":2447},{"type":40,"tag":502,"props":2672,"children":2673},{"style":629},[2674],{"type":45,"value":2675},"[@]}\"\n",{"type":40,"tag":502,"props":2677,"children":2679},{"class":504,"line":2678},27,[2680,2685,2690,2694,2698,2703,2707],{"type":40,"tag":502,"props":2681,"children":2682},{"style":737},[2683],{"type":45,"value":2684},"SDK_VERSION",{"type":40,"tag":502,"props":2686,"children":2687},{"style":629},[2688],{"type":45,"value":2689},"=$(",{"type":40,"tag":502,"props":2691,"children":2692},{"style":509},[2693],{"type":45,"value":652},{"type":40,"tag":502,"props":2695,"children":2696},{"style":737},[2697],{"type":45,"value":2465},{"type":40,"tag":502,"props":2699,"children":2700},{"style":509},[2701],{"type":45,"value":2702},"\u002Fdotnet\"",{"type":40,"tag":502,"props":2704,"children":2705},{"style":514},[2706],{"type":45,"value":1094},{"type":40,"tag":502,"props":2708,"children":2709},{"style":629},[2710],{"type":45,"value":2191},{"type":40,"tag":502,"props":2712,"children":2714},{"class":504,"line":2713},28,[2715,2720,2724],{"type":40,"tag":502,"props":2716,"children":2717},{"style":613},[2718],{"type":45,"value":2719},"write_global_json",{"type":40,"tag":502,"props":2721,"children":2722},{"style":629},[2723],{"type":45,"value":2294},{"type":40,"tag":502,"props":2725,"children":2726},{"style":629},[2727],{"type":45,"value":1203},{"type":40,"tag":502,"props":2729,"children":2731},{"class":504,"line":2730},29,[2732,2737,2741,2745,2750,2755],{"type":40,"tag":502,"props":2733,"children":2734},{"style":2480},[2735],{"type":45,"value":2736},"    if",{"type":40,"tag":502,"props":2738,"children":2739},{"style":629},[2740],{"type":45,"value":1328},{"type":40,"tag":502,"props":2742,"children":2743},{"style":629},[2744],{"type":45,"value":2312},{"type":40,"tag":502,"props":2746,"children":2747},{"style":737},[2748],{"type":45,"value":2749}," global.json ",{"type":40,"tag":502,"props":2751,"children":2752},{"style":629},[2753],{"type":45,"value":2754},"];",{"type":40,"tag":502,"props":2756,"children":2757},{"style":2480},[2758],{"type":45,"value":2514},{"type":40,"tag":502,"props":2760,"children":2762},{"class":504,"line":2761},30,[2763,2768,2773],{"type":40,"tag":502,"props":2764,"children":2765},{"style":509},[2766],{"type":45,"value":2767},"        cp",{"type":40,"tag":502,"props":2769,"children":2770},{"style":514},[2771],{"type":45,"value":2772}," global.json",{"type":40,"tag":502,"props":2774,"children":2775},{"style":514},[2776],{"type":45,"value":2777}," global.json.bak\n",{"type":40,"tag":502,"props":2779,"children":2781},{"class":504,"line":2780},31,[2782,2787,2792,2797,2802,2807,2812,2816,2821],{"type":40,"tag":502,"props":2783,"children":2784},{"style":2480},[2785],{"type":45,"value":2786},"        if",{"type":40,"tag":502,"props":2788,"children":2789},{"style":629},[2790],{"type":45,"value":2791}," !",{"type":40,"tag":502,"props":2793,"children":2794},{"style":613},[2795],{"type":45,"value":2796}," command",{"type":40,"tag":502,"props":2798,"children":2799},{"style":514},[2800],{"type":45,"value":2801}," -v",{"type":40,"tag":502,"props":2803,"children":2804},{"style":514},[2805],{"type":45,"value":2806}," jq",{"type":40,"tag":502,"props":2808,"children":2809},{"style":629},[2810],{"type":45,"value":2811}," >",{"type":40,"tag":502,"props":2813,"children":2814},{"style":514},[2815],{"type":45,"value":1622},{"type":40,"tag":502,"props":2817,"children":2818},{"style":629},[2819],{"type":45,"value":2820}," 2>&1;",{"type":40,"tag":502,"props":2822,"children":2823},{"style":2480},[2824],{"type":45,"value":2514},{"type":40,"tag":502,"props":2826,"children":2828},{"class":504,"line":2827},32,[2829,2834,2838,2843,2847],{"type":40,"tag":502,"props":2830,"children":2831},{"style":613},[2832],{"type":45,"value":2833},"            echo",{"type":40,"tag":502,"props":2835,"children":2836},{"style":629},[2837],{"type":45,"value":642},{"type":40,"tag":502,"props":2839,"children":2840},{"style":514},[2841],{"type":45,"value":2842},"global.json exists; install succeeded, but this script will not overwrite it without jq.",{"type":40,"tag":502,"props":2844,"children":2845},{"style":629},[2846],{"type":45,"value":652},{"type":40,"tag":502,"props":2848,"children":2849},{"style":629},[2850],{"type":45,"value":2851}," >&2\n",{"type":40,"tag":502,"props":2853,"children":2855},{"class":504,"line":2854},33,[2856,2860,2864,2869,2873],{"type":40,"tag":502,"props":2857,"children":2858},{"style":613},[2859],{"type":45,"value":2833},{"type":40,"tag":502,"props":2861,"children":2862},{"style":629},[2863],{"type":45,"value":642},{"type":40,"tag":502,"props":2865,"children":2866},{"style":514},[2867],{"type":45,"value":2868},"Merge these sdk settings manually so existing global.json properties are preserved:",{"type":40,"tag":502,"props":2870,"children":2871},{"style":629},[2872],{"type":45,"value":652},{"type":40,"tag":502,"props":2874,"children":2875},{"style":629},[2876],{"type":45,"value":2851},{"type":40,"tag":502,"props":2878,"children":2880},{"class":504,"line":2879},34,[2881,2886,2891,2896],{"type":40,"tag":502,"props":2882,"children":2883},{"style":509},[2884],{"type":45,"value":2885},"            cat",{"type":40,"tag":502,"props":2887,"children":2888},{"style":629},[2889],{"type":45,"value":2890}," >&2",{"type":40,"tag":502,"props":2892,"children":2893},{"style":629},[2894],{"type":45,"value":2895}," \u003C\u003C",{"type":40,"tag":502,"props":2897,"children":2898},{"style":629},[2899],{"type":45,"value":2900},"EOF\n",{"type":40,"tag":502,"props":2902,"children":2904},{"class":504,"line":2903},35,[2905],{"type":40,"tag":502,"props":2906,"children":2907},{"style":514},[2908],{"type":45,"value":1176},{"type":40,"tag":502,"props":2910,"children":2912},{"class":504,"line":2911},36,[2913],{"type":40,"tag":502,"props":2914,"children":2915},{"style":514},[2916],{"type":45,"value":2917},"  \"sdk\": {\n",{"type":40,"tag":502,"props":2919,"children":2921},{"class":504,"line":2920},37,[2922,2927,2932],{"type":40,"tag":502,"props":2923,"children":2924},{"style":514},[2925],{"type":45,"value":2926},"    \"version\": \"",{"type":40,"tag":502,"props":2928,"children":2929},{"style":737},[2930],{"type":45,"value":2931},"$SDK_VERSION",{"type":40,"tag":502,"props":2933,"children":2934},{"style":514},[2935],{"type":45,"value":2936},"\",\n",{"type":40,"tag":502,"props":2938,"children":2940},{"class":504,"line":2939},38,[2941,2946,2951],{"type":40,"tag":502,"props":2942,"children":2943},{"style":514},[2944],{"type":45,"value":2945},"    \"allowPrerelease\": ",{"type":40,"tag":502,"props":2947,"children":2948},{"style":737},[2949],{"type":45,"value":2950},"$ALLOW_PRERELEASE",{"type":40,"tag":502,"props":2952,"children":2953},{"style":514},[2954],{"type":45,"value":1242},{"type":40,"tag":502,"props":2956,"children":2958},{"class":504,"line":2957},39,[2959,2964,2969],{"type":40,"tag":502,"props":2960,"children":2961},{"style":514},[2962],{"type":45,"value":2963},"    \"rollForward\": \"",{"type":40,"tag":502,"props":2965,"children":2966},{"style":737},[2967],{"type":45,"value":2968},"$ROLL_FORWARD",{"type":40,"tag":502,"props":2970,"children":2971},{"style":514},[2972],{"type":45,"value":2936},{"type":40,"tag":502,"props":2974,"children":2976},{"class":504,"line":2975},40,[2977,2982,2987,2992,2996],{"type":40,"tag":502,"props":2978,"children":2979},{"style":514},[2980],{"type":45,"value":2981},"    \"paths\": [\".dotnet\", \"",{"type":40,"tag":502,"props":2983,"children":2984},{"style":737},[2985],{"type":45,"value":2986},"\\$",{"type":40,"tag":502,"props":2988,"children":2989},{"style":514},[2990],{"type":45,"value":2991},"host",{"type":40,"tag":502,"props":2993,"children":2994},{"style":737},[2995],{"type":45,"value":2986},{"type":40,"tag":502,"props":2997,"children":2998},{"style":514},[2999],{"type":45,"value":3000},"\"],\n",{"type":40,"tag":502,"props":3002,"children":3004},{"class":504,"line":3003},41,[3005,3010,3015],{"type":40,"tag":502,"props":3006,"children":3007},{"style":514},[3008],{"type":45,"value":3009},"    \"errorMessage\": \"",{"type":40,"tag":502,"props":3011,"children":3012},{"style":737},[3013],{"type":45,"value":3014},"$ERROR_MESSAGE",{"type":40,"tag":502,"props":3016,"children":3017},{"style":514},[3018],{"type":45,"value":675},{"type":40,"tag":502,"props":3020,"children":3022},{"class":504,"line":3021},42,[3023],{"type":40,"tag":502,"props":3024,"children":3025},{"style":514},[3026],{"type":45,"value":1404},{"type":40,"tag":502,"props":3028,"children":3030},{"class":504,"line":3029},43,[3031],{"type":40,"tag":502,"props":3032,"children":3033},{"style":514},[3034],{"type":45,"value":988},{"type":40,"tag":502,"props":3036,"children":3038},{"class":504,"line":3037},44,[3039],{"type":40,"tag":502,"props":3040,"children":3041},{"style":629},[3042],{"type":45,"value":2900},{"type":40,"tag":502,"props":3044,"children":3046},{"class":504,"line":3045},45,[3047,3052],{"type":40,"tag":502,"props":3048,"children":3049},{"style":613},[3050],{"type":45,"value":3051},"            exit",{"type":40,"tag":502,"props":3053,"children":3055},{"style":3054},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[3056],{"type":45,"value":3057}," 1\n",{"type":40,"tag":502,"props":3059,"children":3061},{"class":504,"line":3060},46,[3062],{"type":40,"tag":502,"props":3063,"children":3064},{"style":2480},[3065],{"type":45,"value":3066},"        fi\n",{"type":40,"tag":502,"props":3068,"children":3070},{"class":504,"line":3069},47,[3071,3076,3080,3084,3088,3092,3096,3100,3104,3108,3113],{"type":40,"tag":502,"props":3072,"children":3073},{"style":737},[3074],{"type":45,"value":3075},"        GLOBAL_JSON_TMP",{"type":40,"tag":502,"props":3077,"children":3078},{"style":629},[3079],{"type":45,"value":745},{"type":40,"tag":502,"props":3081,"children":3082},{"style":629},[3083],{"type":45,"value":750},{"type":40,"tag":502,"props":3085,"children":3086},{"style":509},[3087],{"type":45,"value":755},{"type":40,"tag":502,"props":3089,"children":3090},{"style":629},[3091],{"type":45,"value":760},{"type":40,"tag":502,"props":3093,"children":3094},{"style":737},[3095],{"type":45,"value":765},{"type":40,"tag":502,"props":3097,"children":3098},{"style":629},[3099],{"type":45,"value":770},{"type":40,"tag":502,"props":3101,"children":3102},{"style":737},[3103],{"type":45,"value":775},{"type":40,"tag":502,"props":3105,"children":3106},{"style":629},[3107],{"type":45,"value":780},{"type":40,"tag":502,"props":3109,"children":3110},{"style":514},[3111],{"type":45,"value":3112},"\u002Fglobal-json.XXXXXX",{"type":40,"tag":502,"props":3114,"children":3115},{"style":629},[3116],{"type":45,"value":790},{"type":40,"tag":502,"props":3118,"children":3120},{"class":504,"line":3119},48,[3121,3126,3131,3136,3140,3144,3148,3152,3157,3161,3165,3169,3174,3179,3183,3187,3191,3195,3200,3204,3208,3212],{"type":40,"tag":502,"props":3122,"children":3123},{"style":509},[3124],{"type":45,"value":3125},"        jq",{"type":40,"tag":502,"props":3127,"children":3128},{"style":514},[3129],{"type":45,"value":3130}," --arg",{"type":40,"tag":502,"props":3132,"children":3133},{"style":514},[3134],{"type":45,"value":3135}," version",{"type":40,"tag":502,"props":3137,"children":3138},{"style":629},[3139],{"type":45,"value":642},{"type":40,"tag":502,"props":3141,"children":3142},{"style":737},[3143],{"type":45,"value":2931},{"type":40,"tag":502,"props":3145,"children":3146},{"style":629},[3147],{"type":45,"value":652},{"type":40,"tag":502,"props":3149,"children":3150},{"style":514},[3151],{"type":45,"value":3130},{"type":40,"tag":502,"props":3153,"children":3154},{"style":514},[3155],{"type":45,"value":3156}," rollForward",{"type":40,"tag":502,"props":3158,"children":3159},{"style":629},[3160],{"type":45,"value":642},{"type":40,"tag":502,"props":3162,"children":3163},{"style":737},[3164],{"type":45,"value":2968},{"type":40,"tag":502,"props":3166,"children":3167},{"style":629},[3168],{"type":45,"value":652},{"type":40,"tag":502,"props":3170,"children":3171},{"style":514},[3172],{"type":45,"value":3173}," --argjson",{"type":40,"tag":502,"props":3175,"children":3176},{"style":514},[3177],{"type":45,"value":3178}," allowPrerelease",{"type":40,"tag":502,"props":3180,"children":3181},{"style":629},[3182],{"type":45,"value":642},{"type":40,"tag":502,"props":3184,"children":3185},{"style":737},[3186],{"type":45,"value":2950},{"type":40,"tag":502,"props":3188,"children":3189},{"style":629},[3190],{"type":45,"value":652},{"type":40,"tag":502,"props":3192,"children":3193},{"style":514},[3194],{"type":45,"value":3130},{"type":40,"tag":502,"props":3196,"children":3197},{"style":514},[3198],{"type":45,"value":3199}," errorMessage",{"type":40,"tag":502,"props":3201,"children":3202},{"style":629},[3203],{"type":45,"value":642},{"type":40,"tag":502,"props":3205,"children":3206},{"style":737},[3207],{"type":45,"value":3014},{"type":40,"tag":502,"props":3209,"children":3210},{"style":629},[3211],{"type":45,"value":652},{"type":40,"tag":502,"props":3213,"children":3214},{"style":629},[3215],{"type":45,"value":3216}," '\n",{"type":40,"tag":502,"props":3218,"children":3220},{"class":504,"line":3219},49,[3221],{"type":40,"tag":502,"props":3222,"children":3223},{"style":514},[3224],{"type":45,"value":3225},"          .sdk = ((.sdk \u002F\u002F {}) + {\n",{"type":40,"tag":502,"props":3227,"children":3229},{"class":504,"line":3228},50,[3230],{"type":40,"tag":502,"props":3231,"children":3232},{"style":514},[3233],{"type":45,"value":3234},"            version: $version,\n",{"type":40,"tag":502,"props":3236,"children":3238},{"class":504,"line":3237},51,[3239],{"type":40,"tag":502,"props":3240,"children":3241},{"style":514},[3242],{"type":45,"value":3243},"            allowPrerelease: $allowPrerelease,\n",{"type":40,"tag":502,"props":3245,"children":3247},{"class":504,"line":3246},52,[3248],{"type":40,"tag":502,"props":3249,"children":3250},{"style":514},[3251],{"type":45,"value":3252},"            rollForward: $rollForward,\n",{"type":40,"tag":502,"props":3254,"children":3256},{"class":504,"line":3255},53,[3257],{"type":40,"tag":502,"props":3258,"children":3259},{"style":514},[3260],{"type":45,"value":3261},"            paths: [\".dotnet\", \"$host$\"],\n",{"type":40,"tag":502,"props":3263,"children":3265},{"class":504,"line":3264},54,[3266],{"type":40,"tag":502,"props":3267,"children":3268},{"style":514},[3269],{"type":45,"value":3270},"            errorMessage: $errorMessage\n",{"type":40,"tag":502,"props":3272,"children":3274},{"class":504,"line":3273},55,[3275],{"type":40,"tag":502,"props":3276,"children":3277},{"style":514},[3278],{"type":45,"value":3279},"          })\n",{"type":40,"tag":502,"props":3281,"children":3283},{"class":504,"line":3282},56,[3284,3289,3293,3297,3301,3305],{"type":40,"tag":502,"props":3285,"children":3286},{"style":629},[3287],{"type":45,"value":3288},"        '",{"type":40,"tag":502,"props":3290,"children":3291},{"style":514},[3292],{"type":45,"value":2772},{"type":40,"tag":502,"props":3294,"children":3295},{"style":629},[3296],{"type":45,"value":2811},{"type":40,"tag":502,"props":3298,"children":3299},{"style":629},[3300],{"type":45,"value":642},{"type":40,"tag":502,"props":3302,"children":3303},{"style":737},[3304],{"type":45,"value":2347},{"type":40,"tag":502,"props":3306,"children":3307},{"style":629},[3308],{"type":45,"value":675},{"type":40,"tag":502,"props":3310,"children":3312},{"class":504,"line":3311},57,[3313,3318,3322,3326,3330],{"type":40,"tag":502,"props":3314,"children":3315},{"style":509},[3316],{"type":45,"value":3317},"        mv",{"type":40,"tag":502,"props":3319,"children":3320},{"style":629},[3321],{"type":45,"value":642},{"type":40,"tag":502,"props":3323,"children":3324},{"style":737},[3325],{"type":45,"value":2347},{"type":40,"tag":502,"props":3327,"children":3328},{"style":629},[3329],{"type":45,"value":652},{"type":40,"tag":502,"props":3331,"children":3332},{"style":514},[3333],{"type":45,"value":3334}," global.json\n",{"type":40,"tag":502,"props":3336,"children":3338},{"class":504,"line":3337},58,[3339,3343,3347],{"type":40,"tag":502,"props":3340,"children":3341},{"style":737},[3342],{"type":45,"value":3075},{"type":40,"tag":502,"props":3344,"children":3345},{"style":629},[3346],{"type":45,"value":745},{"type":40,"tag":502,"props":3348,"children":3349},{"style":629},[3350],{"type":45,"value":2120},{"type":40,"tag":502,"props":3352,"children":3354},{"class":504,"line":3353},59,[3355],{"type":40,"tag":502,"props":3356,"children":3357},{"style":2480},[3358],{"type":45,"value":3359},"    else\n",{"type":40,"tag":502,"props":3361,"children":3363},{"class":504,"line":3362},60,[3364,3369,3373,3377,3381],{"type":40,"tag":502,"props":3365,"children":3366},{"style":509},[3367],{"type":45,"value":3368},"        cat",{"type":40,"tag":502,"props":3370,"children":3371},{"style":629},[3372],{"type":45,"value":2811},{"type":40,"tag":502,"props":3374,"children":3375},{"style":514},[3376],{"type":45,"value":2772},{"type":40,"tag":502,"props":3378,"children":3379},{"style":629},[3380],{"type":45,"value":2895},{"type":40,"tag":502,"props":3382,"children":3383},{"style":629},[3384],{"type":45,"value":2900},{"type":40,"tag":502,"props":3386,"children":3388},{"class":504,"line":3387},61,[3389],{"type":40,"tag":502,"props":3390,"children":3391},{"style":514},[3392],{"type":45,"value":1176},{"type":40,"tag":502,"props":3394,"children":3396},{"class":504,"line":3395},62,[3397],{"type":40,"tag":502,"props":3398,"children":3399},{"style":514},[3400],{"type":45,"value":2917},{"type":40,"tag":502,"props":3402,"children":3404},{"class":504,"line":3403},63,[3405,3409,3413],{"type":40,"tag":502,"props":3406,"children":3407},{"style":514},[3408],{"type":45,"value":2926},{"type":40,"tag":502,"props":3410,"children":3411},{"style":737},[3412],{"type":45,"value":2931},{"type":40,"tag":502,"props":3414,"children":3415},{"style":514},[3416],{"type":45,"value":2936},{"type":40,"tag":502,"props":3418,"children":3420},{"class":504,"line":3419},64,[3421,3425,3429],{"type":40,"tag":502,"props":3422,"children":3423},{"style":514},[3424],{"type":45,"value":2945},{"type":40,"tag":502,"props":3426,"children":3427},{"style":737},[3428],{"type":45,"value":2950},{"type":40,"tag":502,"props":3430,"children":3431},{"style":514},[3432],{"type":45,"value":1242},{"type":40,"tag":502,"props":3434,"children":3436},{"class":504,"line":3435},65,[3437,3441,3445],{"type":40,"tag":502,"props":3438,"children":3439},{"style":514},[3440],{"type":45,"value":2963},{"type":40,"tag":502,"props":3442,"children":3443},{"style":737},[3444],{"type":45,"value":2968},{"type":40,"tag":502,"props":3446,"children":3447},{"style":514},[3448],{"type":45,"value":2936},{"type":40,"tag":502,"props":3450,"children":3452},{"class":504,"line":3451},66,[3453,3457,3461,3465,3469],{"type":40,"tag":502,"props":3454,"children":3455},{"style":514},[3456],{"type":45,"value":2981},{"type":40,"tag":502,"props":3458,"children":3459},{"style":737},[3460],{"type":45,"value":2986},{"type":40,"tag":502,"props":3462,"children":3463},{"style":514},[3464],{"type":45,"value":2991},{"type":40,"tag":502,"props":3466,"children":3467},{"style":737},[3468],{"type":45,"value":2986},{"type":40,"tag":502,"props":3470,"children":3471},{"style":514},[3472],{"type":45,"value":3000},{"type":40,"tag":502,"props":3474,"children":3476},{"class":504,"line":3475},67,[3477,3481,3485],{"type":40,"tag":502,"props":3478,"children":3479},{"style":514},[3480],{"type":45,"value":3009},{"type":40,"tag":502,"props":3482,"children":3483},{"style":737},[3484],{"type":45,"value":3014},{"type":40,"tag":502,"props":3486,"children":3487},{"style":514},[3488],{"type":45,"value":675},{"type":40,"tag":502,"props":3490,"children":3492},{"class":504,"line":3491},68,[3493],{"type":40,"tag":502,"props":3494,"children":3495},{"style":514},[3496],{"type":45,"value":1404},{"type":40,"tag":502,"props":3498,"children":3500},{"class":504,"line":3499},69,[3501],{"type":40,"tag":502,"props":3502,"children":3503},{"style":514},[3504],{"type":45,"value":988},{"type":40,"tag":502,"props":3506,"children":3508},{"class":504,"line":3507},70,[3509],{"type":40,"tag":502,"props":3510,"children":3511},{"style":629},[3512],{"type":45,"value":2900},{"type":40,"tag":502,"props":3514,"children":3516},{"class":504,"line":3515},71,[3517],{"type":40,"tag":502,"props":3518,"children":3519},{"style":2480},[3520],{"type":45,"value":3521},"    fi\n",{"type":40,"tag":502,"props":3523,"children":3525},{"class":504,"line":3524},72,[3526],{"type":40,"tag":502,"props":3527,"children":3528},{"style":629},[3529],{"type":45,"value":988},{"type":40,"tag":502,"props":3531,"children":3533},{"class":504,"line":3532},73,[3534],{"type":40,"tag":502,"props":3535,"children":3536},{"style":509},[3537],{"type":45,"value":3538},"write_global_json\n",{"type":40,"tag":502,"props":3540,"children":3542},{"class":504,"line":3541},74,[3543,3547,3551,3555,3559,3563,3567,3571,3575,3579,3583,3587,3591,3595,3599],{"type":40,"tag":502,"props":3544,"children":3545},{"style":509},[3546],{"type":45,"value":1590},{"type":40,"tag":502,"props":3548,"children":3549},{"style":514},[3550],{"type":45,"value":1595},{"type":40,"tag":502,"props":3552,"children":3553},{"style":629},[3554],{"type":45,"value":804},{"type":40,"tag":502,"props":3556,"children":3557},{"style":514},[3558],{"type":45,"value":65},{"type":40,"tag":502,"props":3560,"children":3561},{"style":629},[3562],{"type":45,"value":814},{"type":40,"tag":502,"props":3564,"children":3565},{"style":514},[3566],{"type":45,"value":1612},{"type":40,"tag":502,"props":3568,"children":3569},{"style":629},[3570],{"type":45,"value":1617},{"type":40,"tag":502,"props":3572,"children":3573},{"style":514},[3574],{"type":45,"value":1622},{"type":40,"tag":502,"props":3576,"children":3577},{"style":629},[3578],{"type":45,"value":657},{"type":40,"tag":502,"props":3580,"children":3581},{"style":613},[3582],{"type":45,"value":1631},{"type":40,"tag":502,"props":3584,"children":3585},{"style":629},[3586],{"type":45,"value":804},{"type":40,"tag":502,"props":3588,"children":3589},{"style":514},[3590],{"type":45,"value":1640},{"type":40,"tag":502,"props":3592,"children":3593},{"style":629},[3594],{"type":45,"value":814},{"type":40,"tag":502,"props":3596,"children":3597},{"style":629},[3598],{"type":45,"value":1649},{"type":40,"tag":502,"props":3600,"children":3601},{"style":514},[3602],{"type":45,"value":1654},{"type":40,"tag":502,"props":3604,"children":3606},{"class":504,"line":3605},75,[3607,3612,3617,3621,3626,3631,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672],{"type":40,"tag":502,"props":3608,"children":3609},{"style":629},[3610],{"type":45,"value":3611},"[",{"type":40,"tag":502,"props":3613,"children":3614},{"style":629},[3615],{"type":45,"value":3616}," ${#",{"type":40,"tag":502,"props":3618,"children":3619},{"style":737},[3620],{"type":45,"value":2176},{"type":40,"tag":502,"props":3622,"children":3623},{"style":629},[3624],{"type":45,"value":3625},"[@]}",{"type":40,"tag":502,"props":3627,"children":3628},{"style":629},[3629],{"type":45,"value":3630}," -gt",{"type":40,"tag":502,"props":3632,"children":3633},{"style":3054},[3634],{"type":45,"value":3635}," 0",{"type":40,"tag":502,"props":3637,"children":3638},{"style":629},[3639],{"type":45,"value":2356},{"type":40,"tag":502,"props":3641,"children":3642},{"style":629},[3643],{"type":45,"value":632},{"type":40,"tag":502,"props":3645,"children":3646},{"style":509},[3647],{"type":45,"value":642},{"type":40,"tag":502,"props":3649,"children":3650},{"style":737},[3651],{"type":45,"value":2465},{"type":40,"tag":502,"props":3653,"children":3654},{"style":509},[3655],{"type":45,"value":2702},{"type":40,"tag":502,"props":3657,"children":3658},{"style":514},[3659],{"type":45,"value":1747},{"type":40,"tag":502,"props":3661,"children":3662},{"style":514},[3663],{"type":45,"value":1752},{"type":40,"tag":502,"props":3665,"children":3666},{"style":629},[3667],{"type":45,"value":760},{"type":40,"tag":502,"props":3669,"children":3670},{"style":737},[3671],{"type":45,"value":2176},{"type":40,"tag":502,"props":3673,"children":3674},{"style":629},[3675],{"type":45,"value":2675},{"type":40,"tag":502,"props":3677,"children":3679},{"class":504,"line":3678},76,[3680,3685,3689,3694,3698],{"type":40,"tag":502,"props":3681,"children":3682},{"style":613},[3683],{"type":45,"value":3684},"echo",{"type":40,"tag":502,"props":3686,"children":3687},{"style":629},[3688],{"type":45,"value":642},{"type":40,"tag":502,"props":3690,"children":3691},{"style":514},[3692],{"type":45,"value":3693},"Done. SDK: ",{"type":40,"tag":502,"props":3695,"children":3696},{"style":737},[3697],{"type":45,"value":2931},{"type":40,"tag":502,"props":3699,"children":3700},{"style":629},[3701],{"type":45,"value":675},{"type":40,"tag":491,"props":3703,"children":3705},{"className":493,"code":3704,"language":495,"meta":496,"style":496},"chmod +x install-dotnet.sh\n",[3706],{"type":40,"tag":60,"props":3707,"children":3708},{"__ignoreMap":496},[3709],{"type":40,"tag":502,"props":3710,"children":3711},{"class":504,"line":505},[3712,3717,3722],{"type":40,"tag":502,"props":3713,"children":3714},{"style":509},[3715],{"type":45,"value":3716},"chmod",{"type":40,"tag":502,"props":3718,"children":3719},{"style":514},[3720],{"type":45,"value":3721}," +x",{"type":40,"tag":502,"props":3723,"children":3724},{"style":514},[3725],{"type":45,"value":3726}," install-dotnet.sh\n",{"type":40,"tag":54,"props":3728,"children":3729},{},[3730],{"type":40,"tag":100,"props":3731,"children":3732},{},[3733],{"type":45,"value":3734},"install-dotnet.ps1:",{"type":40,"tag":491,"props":3736,"children":3738},{"className":686,"code":3737,"language":688,"meta":496,"style":496},"param([string[]]$Workloads = @())\n$ErrorActionPreference = 'Stop'\n$installDir = '.dotnet'; $channel = '11.0'; $quality = 'preview'\n$version = ''; $rollForward = 'latestFeature'; $allowPrerelease = $true\n$errorMessage = 'Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.'\n$installScript = Join-Path $env:TEMP \"dotnet-install-$([guid]::NewGuid()).ps1\"\ntry {\n    Invoke-WebRequest -Uri 'https:\u002F\u002Fdot.net\u002Fv1\u002Fdotnet-install.ps1' -OutFile $installScript\n    $installArgs = @('-InstallDir', $installDir)\n    if ($version) {\n        $installArgs += @('-Version', $version)\n        $rollForward = 'disable'\n    } else {\n        $installArgs += @('-Channel', $channel, '-Quality', $quality)\n    }\n    & $installScript @installArgs\n}\nfinally {\n    if (Test-Path -LiteralPath $installScript) {\n        Remove-Item -LiteralPath $installScript -Force\n    }\n}\n$sdkVersion = & \"$installDir\\dotnet.exe\" --version\n$globalJson = if (Test-Path 'global.json') {\n    Copy-Item 'global.json' 'global.json.bak'\n    Get-Content -Path 'global.json' -Raw | ConvertFrom-Json\n} else {\n    [pscustomobject]@{}\n}\nif (-not $globalJson.PSObject.Properties['sdk']) {\n    $globalJson | Add-Member -MemberType NoteProperty -Name 'sdk' -Value ([pscustomobject]@{})\n}\n$updates = [ordered]@{\n    version = $sdkVersion\n    allowPrerelease = $allowPrerelease\n    rollForward = $rollForward\n    paths = @('.dotnet', '$host$')\n    errorMessage = $errorMessage\n}\nforeach ($entry in $updates.GetEnumerator()) {\n    $property = $globalJson.sdk.PSObject.Properties[$entry.Key]\n    if ($property) {\n        $property.Value = $entry.Value\n    } else {\n        $globalJson.sdk | Add-Member -MemberType NoteProperty -Name $entry.Key -Value $entry.Value\n    }\n}\n$globalJson | ConvertTo-Json -Depth 10 | Set-Content -Path 'global.json' -Encoding UTF8\nif (-not (Test-Path .gitignore) -or -not (Select-String -Path .gitignore -Pattern '^\\.dotnet\u002F$' -Quiet)) {\n    Add-Content -Path .gitignore -Value '.dotnet\u002F'\n}\nif ($Workloads.Count -gt 0) { & \"$installDir\\dotnet.exe\" workload install @Workloads }\nWrite-Host \"Done. SDK: $sdkVersion\"\n",[3739],{"type":40,"tag":60,"props":3740,"children":3741},{"__ignoreMap":496},[3742,3750,3758,3766,3774,3782,3789,3796,3803,3811,3819,3827,3835,3843,3851,3858,3866,3873,3880,3887,3894,3901,3908,3916,3924,3932,3940,3948,3956,3963,3971,3979,3986,3994,4002,4010,4018,4026,4034,4041,4049,4057,4065,4073,4080,4088,4095,4102,4110,4117,4124,4131,4139],{"type":40,"tag":502,"props":3743,"children":3744},{"class":504,"line":505},[3745],{"type":40,"tag":502,"props":3746,"children":3747},{},[3748],{"type":45,"value":3749},"param([string[]]$Workloads = @())\n",{"type":40,"tag":502,"props":3751,"children":3752},{"class":504,"line":793},[3753],{"type":40,"tag":502,"props":3754,"children":3755},{},[3756],{"type":45,"value":3757},"$ErrorActionPreference = 'Stop'\n",{"type":40,"tag":502,"props":3759,"children":3760},{"class":504,"line":822},[3761],{"type":40,"tag":502,"props":3762,"children":3763},{},[3764],{"type":45,"value":3765},"$installDir = '.dotnet'; $channel = '11.0'; $quality = 'preview'\n",{"type":40,"tag":502,"props":3767,"children":3768},{"class":504,"line":858},[3769],{"type":40,"tag":502,"props":3770,"children":3771},{},[3772],{"type":45,"value":3773},"$version = ''; $rollForward = 'latestFeature'; $allowPrerelease = $true\n",{"type":40,"tag":502,"props":3775,"children":3776},{"class":504,"line":982},[3777],{"type":40,"tag":502,"props":3778,"children":3779},{},[3780],{"type":45,"value":3781},"$errorMessage = 'Required .NET SDK not found. Run .\u002Finstall-dotnet.sh (or .ps1) to install it locally.'\n",{"type":40,"tag":502,"props":3783,"children":3784},{"class":504,"line":991},[3785],{"type":40,"tag":502,"props":3786,"children":3787},{},[3788],{"type":45,"value":955},{"type":40,"tag":502,"props":3790,"children":3791},{"class":504,"line":1000},[3792],{"type":40,"tag":502,"props":3793,"children":3794},{},[3795],{"type":45,"value":963},{"type":40,"tag":502,"props":3797,"children":3798},{"class":504,"line":1009},[3799],{"type":40,"tag":502,"props":3800,"children":3801},{},[3802],{"type":45,"value":971},{"type":40,"tag":502,"props":3804,"children":3805},{"class":504,"line":1018},[3806],{"type":40,"tag":502,"props":3807,"children":3808},{},[3809],{"type":45,"value":3810},"    $installArgs = @('-InstallDir', $installDir)\n",{"type":40,"tag":502,"props":3812,"children":3813},{"class":504,"line":1027},[3814],{"type":40,"tag":502,"props":3815,"children":3816},{},[3817],{"type":45,"value":3818},"    if ($version) {\n",{"type":40,"tag":502,"props":3820,"children":3821},{"class":504,"line":2218},[3822],{"type":40,"tag":502,"props":3823,"children":3824},{},[3825],{"type":45,"value":3826},"        $installArgs += @('-Version', $version)\n",{"type":40,"tag":502,"props":3828,"children":3829},{"class":504,"line":2266},[3830],{"type":40,"tag":502,"props":3831,"children":3832},{},[3833],{"type":45,"value":3834},"        $rollForward = 'disable'\n",{"type":40,"tag":502,"props":3836,"children":3837},{"class":504,"line":2283},[3838],{"type":40,"tag":502,"props":3839,"children":3840},{},[3841],{"type":45,"value":3842},"    } else {\n",{"type":40,"tag":502,"props":3844,"children":3845},{"class":504,"line":2301},[3846],{"type":40,"tag":502,"props":3847,"children":3848},{},[3849],{"type":45,"value":3850},"        $installArgs += @('-Channel', $channel, '-Quality', $quality)\n",{"type":40,"tag":502,"props":3852,"children":3853},{"class":504,"line":2327},[3854],{"type":40,"tag":502,"props":3855,"children":3856},{},[3857],{"type":45,"value":1024},{"type":40,"tag":502,"props":3859,"children":3860},{"class":504,"line":2384},[3861],{"type":40,"tag":502,"props":3862,"children":3863},{},[3864],{"type":45,"value":3865},"    & $installScript @installArgs\n",{"type":40,"tag":502,"props":3867,"children":3868},{"class":504,"line":2392},[3869],{"type":40,"tag":502,"props":3870,"children":3871},{},[3872],{"type":45,"value":988},{"type":40,"tag":502,"props":3874,"children":3875},{"class":504,"line":2409},[3876],{"type":40,"tag":502,"props":3877,"children":3878},{},[3879],{"type":45,"value":997},{"type":40,"tag":502,"props":3881,"children":3882},{"class":504,"line":2441},[3883],{"type":40,"tag":502,"props":3884,"children":3885},{},[3886],{"type":45,"value":1006},{"type":40,"tag":502,"props":3888,"children":3889},{"class":504,"line":2476},[3890],{"type":40,"tag":502,"props":3891,"children":3892},{},[3893],{"type":45,"value":1015},{"type":40,"tag":502,"props":3895,"children":3896},{"class":504,"line":2517},[3897],{"type":40,"tag":502,"props":3898,"children":3899},{},[3900],{"type":45,"value":1024},{"type":40,"tag":502,"props":3902,"children":3903},{"class":504,"line":2551},[3904],{"type":40,"tag":502,"props":3905,"children":3906},{},[3907],{"type":45,"value":988},{"type":40,"tag":502,"props":3909,"children":3910},{"class":504,"line":2577},[3911],{"type":40,"tag":502,"props":3912,"children":3913},{},[3914],{"type":45,"value":3915},"$sdkVersion = & \"$installDir\\dotnet.exe\" --version\n",{"type":40,"tag":502,"props":3917,"children":3918},{"class":504,"line":2586},[3919],{"type":40,"tag":502,"props":3920,"children":3921},{},[3922],{"type":45,"value":3923},"$globalJson = if (Test-Path 'global.json') {\n",{"type":40,"tag":502,"props":3925,"children":3926},{"class":504,"line":2636},[3927],{"type":40,"tag":502,"props":3928,"children":3929},{},[3930],{"type":45,"value":3931},"    Copy-Item 'global.json' 'global.json.bak'\n",{"type":40,"tag":502,"props":3933,"children":3934},{"class":504,"line":2645},[3935],{"type":40,"tag":502,"props":3936,"children":3937},{},[3938],{"type":45,"value":3939},"    Get-Content -Path 'global.json' -Raw | ConvertFrom-Json\n",{"type":40,"tag":502,"props":3941,"children":3942},{"class":504,"line":2678},[3943],{"type":40,"tag":502,"props":3944,"children":3945},{},[3946],{"type":45,"value":3947},"} else {\n",{"type":40,"tag":502,"props":3949,"children":3950},{"class":504,"line":2713},[3951],{"type":40,"tag":502,"props":3952,"children":3953},{},[3954],{"type":45,"value":3955},"    [pscustomobject]@{}\n",{"type":40,"tag":502,"props":3957,"children":3958},{"class":504,"line":2730},[3959],{"type":40,"tag":502,"props":3960,"children":3961},{},[3962],{"type":45,"value":988},{"type":40,"tag":502,"props":3964,"children":3965},{"class":504,"line":2761},[3966],{"type":40,"tag":502,"props":3967,"children":3968},{},[3969],{"type":45,"value":3970},"if (-not $globalJson.PSObject.Properties['sdk']) {\n",{"type":40,"tag":502,"props":3972,"children":3973},{"class":504,"line":2780},[3974],{"type":40,"tag":502,"props":3975,"children":3976},{},[3977],{"type":45,"value":3978},"    $globalJson | Add-Member -MemberType NoteProperty -Name 'sdk' -Value ([pscustomobject]@{})\n",{"type":40,"tag":502,"props":3980,"children":3981},{"class":504,"line":2827},[3982],{"type":40,"tag":502,"props":3983,"children":3984},{},[3985],{"type":45,"value":988},{"type":40,"tag":502,"props":3987,"children":3988},{"class":504,"line":2854},[3989],{"type":40,"tag":502,"props":3990,"children":3991},{},[3992],{"type":45,"value":3993},"$updates = [ordered]@{\n",{"type":40,"tag":502,"props":3995,"children":3996},{"class":504,"line":2879},[3997],{"type":40,"tag":502,"props":3998,"children":3999},{},[4000],{"type":45,"value":4001},"    version = $sdkVersion\n",{"type":40,"tag":502,"props":4003,"children":4004},{"class":504,"line":2903},[4005],{"type":40,"tag":502,"props":4006,"children":4007},{},[4008],{"type":45,"value":4009},"    allowPrerelease = $allowPrerelease\n",{"type":40,"tag":502,"props":4011,"children":4012},{"class":504,"line":2911},[4013],{"type":40,"tag":502,"props":4014,"children":4015},{},[4016],{"type":45,"value":4017},"    rollForward = $rollForward\n",{"type":40,"tag":502,"props":4019,"children":4020},{"class":504,"line":2920},[4021],{"type":40,"tag":502,"props":4022,"children":4023},{},[4024],{"type":45,"value":4025},"    paths = @('.dotnet', '$host$')\n",{"type":40,"tag":502,"props":4027,"children":4028},{"class":504,"line":2939},[4029],{"type":40,"tag":502,"props":4030,"children":4031},{},[4032],{"type":45,"value":4033},"    errorMessage = $errorMessage\n",{"type":40,"tag":502,"props":4035,"children":4036},{"class":504,"line":2957},[4037],{"type":40,"tag":502,"props":4038,"children":4039},{},[4040],{"type":45,"value":988},{"type":40,"tag":502,"props":4042,"children":4043},{"class":504,"line":2975},[4044],{"type":40,"tag":502,"props":4045,"children":4046},{},[4047],{"type":45,"value":4048},"foreach ($entry in $updates.GetEnumerator()) {\n",{"type":40,"tag":502,"props":4050,"children":4051},{"class":504,"line":3003},[4052],{"type":40,"tag":502,"props":4053,"children":4054},{},[4055],{"type":45,"value":4056},"    $property = $globalJson.sdk.PSObject.Properties[$entry.Key]\n",{"type":40,"tag":502,"props":4058,"children":4059},{"class":504,"line":3021},[4060],{"type":40,"tag":502,"props":4061,"children":4062},{},[4063],{"type":45,"value":4064},"    if ($property) {\n",{"type":40,"tag":502,"props":4066,"children":4067},{"class":504,"line":3029},[4068],{"type":40,"tag":502,"props":4069,"children":4070},{},[4071],{"type":45,"value":4072},"        $property.Value = $entry.Value\n",{"type":40,"tag":502,"props":4074,"children":4075},{"class":504,"line":3037},[4076],{"type":40,"tag":502,"props":4077,"children":4078},{},[4079],{"type":45,"value":3842},{"type":40,"tag":502,"props":4081,"children":4082},{"class":504,"line":3045},[4083],{"type":40,"tag":502,"props":4084,"children":4085},{},[4086],{"type":45,"value":4087},"        $globalJson.sdk | Add-Member -MemberType NoteProperty -Name $entry.Key -Value $entry.Value\n",{"type":40,"tag":502,"props":4089,"children":4090},{"class":504,"line":3060},[4091],{"type":40,"tag":502,"props":4092,"children":4093},{},[4094],{"type":45,"value":1024},{"type":40,"tag":502,"props":4096,"children":4097},{"class":504,"line":3069},[4098],{"type":40,"tag":502,"props":4099,"children":4100},{},[4101],{"type":45,"value":988},{"type":40,"tag":502,"props":4103,"children":4104},{"class":504,"line":3119},[4105],{"type":40,"tag":502,"props":4106,"children":4107},{},[4108],{"type":45,"value":4109},"$globalJson | ConvertTo-Json -Depth 10 | Set-Content -Path 'global.json' -Encoding UTF8\n",{"type":40,"tag":502,"props":4111,"children":4112},{"class":504,"line":3219},[4113],{"type":40,"tag":502,"props":4114,"children":4115},{},[4116],{"type":45,"value":1676},{"type":40,"tag":502,"props":4118,"children":4119},{"class":504,"line":3228},[4120],{"type":40,"tag":502,"props":4121,"children":4122},{},[4123],{"type":45,"value":1684},{"type":40,"tag":502,"props":4125,"children":4126},{"class":504,"line":3237},[4127],{"type":40,"tag":502,"props":4128,"children":4129},{},[4130],{"type":45,"value":988},{"type":40,"tag":502,"props":4132,"children":4133},{"class":504,"line":3246},[4134],{"type":40,"tag":502,"props":4135,"children":4136},{},[4137],{"type":45,"value":4138},"if ($Workloads.Count -gt 0) { & \"$installDir\\dotnet.exe\" workload install @Workloads }\n",{"type":40,"tag":502,"props":4140,"children":4141},{"class":504,"line":3255},[4142],{"type":40,"tag":502,"props":4143,"children":4144},{},[4145],{"type":45,"value":4146},"Write-Host \"Done. SDK: $sdkVersion\"\n",{"type":40,"tag":54,"props":4148,"children":4149},{},[4150],{"type":45,"value":4151},"Commit these scripts to the repo so teammates can run them.",{"type":40,"tag":380,"props":4153,"children":4155},{"id":4154},"step-11-verify-sdk-resolution",[4156],{"type":45,"value":4157},"Step 11 — Verify SDK resolution",{"type":40,"tag":491,"props":4159,"children":4160},{"className":493,"code":494,"language":495,"meta":496,"style":496},[4161],{"type":40,"tag":60,"props":4162,"children":4163},{"__ignoreMap":496},[4164],{"type":40,"tag":502,"props":4165,"children":4166},{"class":504,"line":505},[4167,4171],{"type":40,"tag":502,"props":4168,"children":4169},{"style":509},[4170],{"type":45,"value":8},{"type":40,"tag":502,"props":4172,"children":4173},{"style":514},[4174],{"type":45,"value":517},{"type":40,"tag":54,"props":4176,"children":4177},{},[4178,4180,4185],{"type":45,"value":4179},"Output should match the locally installed version. If not, check: global.json\nlocation, ",{"type":40,"tag":60,"props":4181,"children":4183},{"className":4182},[],[4184],{"type":45,"value":81},{"type":45,"value":4186}," array contents, host dotnet version ≥ 10.",{"type":40,"tag":380,"props":4188,"children":4190},{"id":4189},"step-12-summarize-and-explain-cleanup",[4191],{"type":45,"value":4192},"Step 12 — Summarize and explain cleanup",{"type":40,"tag":54,"props":4194,"children":4195},{},[4196,4198,4203,4205,4210,4211,4216,4218,4223,4228,4230,4235,4237,4242,4244,4250],{"type":45,"value":4197},"Tell the user: SDK installed, global.json configured, .dotnet\u002F gitignored, system\ninstall untouched. Cleanup: delete ",{"type":40,"tag":60,"props":4199,"children":4201},{"className":4200},[],[4202],{"type":45,"value":65},{"type":45,"value":4204},", remove ",{"type":40,"tag":60,"props":4206,"children":4208},{"className":4207},[],[4209],{"type":45,"value":81},{"type":45,"value":456},{"type":40,"tag":60,"props":4212,"children":4214},{"className":4213},[],[4215],{"type":45,"value":1375},{"type":45,"value":4217}," from\nglobal.json, optionally delete install scripts. Include the final ",{"type":40,"tag":60,"props":4219,"children":4221},{"className":4220},[],[4222],{"type":45,"value":73},{"type":40,"tag":60,"props":4224,"children":4226},{"className":4225},[],[4227],{"type":45,"value":21},{"type":45,"value":4229}," values (or a short snippet) so the user can see the configured version,\n",{"type":40,"tag":60,"props":4231,"children":4233},{"className":4232},[],[4234],{"type":45,"value":81},{"type":45,"value":4236},", and any ",{"type":40,"tag":60,"props":4238,"children":4240},{"className":4239},[],[4241],{"type":45,"value":1375},{"type":45,"value":4243},". If workloads were requested, include the local\n",{"type":40,"tag":60,"props":4245,"children":4247},{"className":4246},[],[4248],{"type":45,"value":4249},"dotnet workload install ...",{"type":45,"value":4251}," command used and the workload verification result\nor the exact blocker if the workload could not be installed.",{"type":40,"tag":47,"props":4253,"children":4255},{"id":4254},"common-pitfalls",[4256],{"type":45,"value":4257},"Common pitfalls",{"type":40,"tag":213,"props":4259,"children":4260},{},[4261,4282],{"type":40,"tag":217,"props":4262,"children":4263},{},[4264],{"type":40,"tag":221,"props":4265,"children":4266},{},[4267,4272,4277],{"type":40,"tag":225,"props":4268,"children":4269},{},[4270],{"type":45,"value":4271},"Pitfall",{"type":40,"tag":225,"props":4273,"children":4274},{},[4275],{"type":45,"value":4276},"Cause",{"type":40,"tag":225,"props":4278,"children":4279},{},[4280],{"type":45,"value":4281},"Fix",{"type":40,"tag":246,"props":4283,"children":4284},{},[4285,4314,4337,4367,4397],{"type":40,"tag":221,"props":4286,"children":4287},{},[4288,4298,4309],{"type":40,"tag":253,"props":4289,"children":4290},{},[4291,4296],{"type":40,"tag":60,"props":4292,"children":4294},{"className":4293},[],[4295],{"type":45,"value":81},{"type":45,"value":4297}," ignored",{"type":40,"tag":253,"props":4299,"children":4300},{},[4301,4302,4307],{"type":45,"value":165},{"type":40,"tag":60,"props":4303,"children":4305},{"className":4304},[],[4306],{"type":45,"value":8},{"type":45,"value":4308}," \u003C v10",{"type":40,"tag":253,"props":4310,"children":4311},{},[4312],{"type":45,"value":4313},"Install .NET 10+ system-wide",{"type":40,"tag":221,"props":4315,"children":4316},{},[4317,4322,4332],{"type":40,"tag":253,"props":4318,"children":4319},{},[4320],{"type":45,"value":4321},"Wrong SDK resolves",{"type":40,"tag":253,"props":4323,"children":4324},{},[4325,4330],{"type":40,"tag":60,"props":4326,"children":4328},{"className":4327},[],[4329],{"type":45,"value":73},{"type":45,"value":4331}," in parent directory",{"type":40,"tag":253,"props":4333,"children":4334},{},[4335],{"type":45,"value":4336},"Check for global.json up the tree",{"type":40,"tag":221,"props":4338,"children":4339},{},[4340,4345,4355],{"type":40,"tag":253,"props":4341,"children":4342},{},[4343],{"type":45,"value":4344},"Teammates get \"SDK not found\"",{"type":40,"tag":253,"props":4346,"children":4347},{},[4348,4353],{"type":40,"tag":60,"props":4349,"children":4351},{"className":4350},[],[4352],{"type":45,"value":65},{"type":45,"value":4354}," gitignored, no install script run",{"type":40,"tag":253,"props":4356,"children":4357},{},[4358,4360,4365],{"type":45,"value":4359},"Use ",{"type":40,"tag":60,"props":4361,"children":4363},{"className":4362},[],[4364],{"type":45,"value":1375},{"type":45,"value":4366}," in global.json",{"type":40,"tag":221,"props":4368,"children":4369},{},[4370,4375,4387],{"type":40,"tag":253,"props":4371,"children":4372},{},[4373],{"type":45,"value":4374},"Workloads missing",{"type":40,"tag":253,"props":4376,"children":4377},{},[4378,4380,4385],{"type":45,"value":4379},"Used system ",{"type":40,"tag":60,"props":4381,"children":4383},{"className":4382},[],[4384],{"type":45,"value":8},{"type":45,"value":4386}," instead of local",{"type":40,"tag":253,"props":4388,"children":4389},{},[4390,4391],{"type":45,"value":4359},{"type":40,"tag":60,"props":4392,"children":4394},{"className":4393},[],[4395],{"type":45,"value":4396},".\u002F.dotnet\u002Fdotnet workload install",{"type":40,"tag":221,"props":4398,"children":4399},{},[4400,4411,4421],{"type":40,"tag":253,"props":4401,"children":4402},{},[4403,4409],{"type":40,"tag":60,"props":4404,"children":4406},{"className":4405},[],[4407],{"type":45,"value":4408},"dotnet app.dll",{"type":45,"value":4410}," wrong runtime",{"type":40,"tag":253,"props":4412,"children":4413},{},[4414,4419],{"type":40,"tag":60,"props":4415,"children":4417},{"className":4416},[],[4418],{"type":45,"value":81},{"type":45,"value":4420}," is SDK-only, not apphost",{"type":40,"tag":253,"props":4422,"children":4423},{},[4424,4425,4431,4433],{"type":45,"value":4359},{"type":40,"tag":60,"props":4426,"children":4428},{"className":4427},[],[4429],{"type":45,"value":4430},"dotnet run",{"type":45,"value":4432}," or set ",{"type":40,"tag":60,"props":4434,"children":4436},{"className":4435},[],[4437],{"type":45,"value":4438},"DOTNET_ROOT",{"type":40,"tag":4440,"props":4441,"children":4442},"style",{},[4443],{"type":45,"value":4444},"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":4446,"total":4555},[4447,4464,4479,4497,4511,4531,4541],{"slug":4448,"name":4448,"fn":4449,"description":4450,"org":4451,"tags":4452,"stars":22,"repoUrl":23,"updatedAt":4463},"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},[4453,4454,4457,4460],{"name":13,"slug":14,"type":15},{"name":4455,"slug":4456,"type":15},"Code Analysis","code-analysis",{"name":4458,"slug":4459,"type":15},"Debugging","debugging",{"name":4461,"slug":4462,"type":15},"Performance","performance","2026-07-12T08:23:25.400375",{"slug":4465,"name":4465,"fn":4466,"description":4467,"org":4468,"tags":4469,"stars":22,"repoUrl":23,"updatedAt":4478},"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},[4470,4471,4474,4475],{"name":13,"slug":14,"type":15},{"name":4472,"slug":4473,"type":15},"Android","android",{"name":4458,"slug":4459,"type":15},{"name":4476,"slug":4477,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":4480,"name":4480,"fn":4481,"description":4482,"org":4483,"tags":4484,"stars":22,"repoUrl":23,"updatedAt":4496},"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},[4485,4486,4487,4490,4493],{"name":13,"slug":14,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4488,"slug":4489,"type":15},"iOS","ios",{"name":4491,"slug":4492,"type":15},"macOS","macos",{"name":4494,"slug":4495,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":4498,"name":4498,"fn":4499,"description":4500,"org":4501,"tags":4502,"stars":22,"repoUrl":23,"updatedAt":4510},"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},[4503,4504,4507],{"name":4455,"slug":4456,"type":15},{"name":4505,"slug":4506,"type":15},"QA","qa",{"name":4508,"slug":4509,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":4512,"name":4512,"fn":4513,"description":4514,"org":4515,"tags":4516,"stars":22,"repoUrl":23,"updatedAt":4530},"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},[4517,4518,4521,4524,4527],{"name":13,"slug":14,"type":15},{"name":4519,"slug":4520,"type":15},"Blazor","blazor",{"name":4522,"slug":4523,"type":15},"C#","csharp",{"name":4525,"slug":4526,"type":15},"UI Components","ui-components",{"name":4528,"slug":4529,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":4532,"name":4532,"fn":4533,"description":4534,"org":4535,"tags":4536,"stars":22,"repoUrl":23,"updatedAt":4540},"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},[4537,4538,4539],{"name":4455,"slug":4456,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4476,"slug":4477,"type":15},"2026-07-12T08:21:34.637923",{"slug":4542,"name":4542,"fn":4543,"description":4544,"org":4545,"tags":4546,"stars":22,"repoUrl":23,"updatedAt":4554},"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},[4547,4550,4551],{"name":4548,"slug":4549,"type":15},"Build","build",{"name":4458,"slug":4459,"type":15},{"name":4552,"slug":4553,"type":15},"Engineering","engineering","2026-07-19T05:38:19.340791",96,{"items":4557,"total":4662},[4558,4570,4577,4584,4592,4598,4606,4612,4618,4628,4641,4652],{"slug":4559,"name":4559,"fn":4560,"description":4561,"org":4562,"tags":4563,"stars":4567,"repoUrl":4568,"updatedAt":4569},"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},[4564,4565,4566],{"name":13,"slug":14,"type":15},{"name":4552,"slug":4553,"type":15},{"name":4461,"slug":4462,"type":15},5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":4448,"name":4448,"fn":4449,"description":4450,"org":4571,"tags":4572,"stars":22,"repoUrl":23,"updatedAt":4463},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4573,4574,4575,4576],{"name":13,"slug":14,"type":15},{"name":4455,"slug":4456,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4461,"slug":4462,"type":15},{"slug":4465,"name":4465,"fn":4466,"description":4467,"org":4578,"tags":4579,"stars":22,"repoUrl":23,"updatedAt":4478},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4580,4581,4582,4583],{"name":13,"slug":14,"type":15},{"name":4472,"slug":4473,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4476,"slug":4477,"type":15},{"slug":4480,"name":4480,"fn":4481,"description":4482,"org":4585,"tags":4586,"stars":22,"repoUrl":23,"updatedAt":4496},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4587,4588,4589,4590,4591],{"name":13,"slug":14,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4488,"slug":4489,"type":15},{"name":4491,"slug":4492,"type":15},{"name":4494,"slug":4495,"type":15},{"slug":4498,"name":4498,"fn":4499,"description":4500,"org":4593,"tags":4594,"stars":22,"repoUrl":23,"updatedAt":4510},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4595,4596,4597],{"name":4455,"slug":4456,"type":15},{"name":4505,"slug":4506,"type":15},{"name":4508,"slug":4509,"type":15},{"slug":4512,"name":4512,"fn":4513,"description":4514,"org":4599,"tags":4600,"stars":22,"repoUrl":23,"updatedAt":4530},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4601,4602,4603,4604,4605],{"name":13,"slug":14,"type":15},{"name":4519,"slug":4520,"type":15},{"name":4522,"slug":4523,"type":15},{"name":4525,"slug":4526,"type":15},{"name":4528,"slug":4529,"type":15},{"slug":4532,"name":4532,"fn":4533,"description":4534,"org":4607,"tags":4608,"stars":22,"repoUrl":23,"updatedAt":4540},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4609,4610,4611],{"name":4455,"slug":4456,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4476,"slug":4477,"type":15},{"slug":4542,"name":4542,"fn":4543,"description":4544,"org":4613,"tags":4614,"stars":22,"repoUrl":23,"updatedAt":4554},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4615,4616,4617],{"name":4548,"slug":4549,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4552,"slug":4553,"type":15},{"slug":4619,"name":4619,"fn":4620,"description":4621,"org":4622,"tags":4623,"stars":22,"repoUrl":23,"updatedAt":4627},"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},[4624,4625,4626],{"name":13,"slug":14,"type":15},{"name":4552,"slug":4553,"type":15},{"name":4461,"slug":4462,"type":15},"2026-07-19T05:38:18.364937",{"slug":4629,"name":4629,"fn":4630,"description":4631,"org":4632,"tags":4633,"stars":22,"repoUrl":23,"updatedAt":4640},"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},[4634,4635,4638,4639],{"name":4552,"slug":4553,"type":15},{"name":4636,"slug":4637,"type":15},"Monitoring","monitoring",{"name":4461,"slug":4462,"type":15},{"name":4508,"slug":4509,"type":15},"2026-07-12T08:21:35.865649",{"slug":4642,"name":4642,"fn":4643,"description":4644,"org":4645,"tags":4646,"stars":22,"repoUrl":23,"updatedAt":4651},"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},[4647,4648,4649,4650],{"name":13,"slug":14,"type":15},{"name":4458,"slug":4459,"type":15},{"name":4552,"slug":4553,"type":15},{"name":4461,"slug":4462,"type":15},"2026-07-12T08:21:40.961722",{"slug":4653,"name":4653,"fn":4654,"description":4655,"org":4656,"tags":4657,"stars":22,"repoUrl":23,"updatedAt":4661},"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},[4658,4659,4660],{"name":4458,"slug":4459,"type":15},{"name":4552,"slug":4553,"type":15},{"name":4505,"slug":4506,"type":15},"2026-07-19T05:38:14.336279",144]