[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-migrate-dotnet10-to-dotnet11":3,"mdc-n01tnf-key":31,"related-org-dotnet-migrate-dotnet10-to-dotnet11":2138,"related-repo-dotnet-migrate-dotnet10-to-dotnet11":2305},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":19,"repoUrl":20,"updatedAt":21,"license":22,"forks":23,"topics":24,"repo":26,"sourceUrl":29,"mdContent":30},"migrate-dotnet10-to-dotnet11","migrate .NET 10 projects to .NET 11","Migrate a .NET 10 project or solution to .NET 11 and resolve all breaking changes. This is a MIGRATION skill — use it when upgrading from .NET 10 to .NET 11, NOT for writing new programs. USE FOR: upgrading TargetFramework from net10.0 to net11.0, fixing build errors after updating the .NET 11 SDK, resolving source-breaking and behavioral changes in .NET 11 runtime, C# 15 compiler, and EF Core 11, adapting to updated minimum hardware requirements (x86-64-v2, Arm64 LSE), and updating CI\u002FCD pipelines and Dockerfiles for .NET 11. DO NOT USE FOR: .NET Framework migrations, upgrading from .NET 9 or earlier, greenfield .NET 11 projects, or cosmetic modernization unrelated to the upgrade. NOTE: .NET 11 is in preview. Covers breaking changes through Preview 3.\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],{"name":13,"slug":14,"type":15},".NET","net","tag",{"name":17,"slug":18,"type":15},"Migration","migration",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-15T06:03:34.354783","MIT",332,[25],"agent-skills",{"repoUrl":20,"stars":19,"forks":23,"topics":27,"description":28},[25],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-upgrade\u002Fskills\u002Fmigrate-dotnet10-to-dotnet11","---\nname: migrate-dotnet10-to-dotnet11\ndescription: >\n  Migrate a .NET 10 project or solution to .NET 11 and resolve all breaking changes.\n  This is a MIGRATION skill — use it when upgrading from .NET 10 to .NET 11,\n  NOT for writing new programs.\n  USE FOR: upgrading TargetFramework from net10.0 to net11.0, fixing build errors\n  after updating the .NET 11 SDK, resolving source-breaking and behavioral changes\n  in .NET 11 runtime, C# 15 compiler, and EF Core 11, adapting to updated minimum\n  hardware requirements (x86-64-v2, Arm64 LSE), and updating CI\u002FCD pipelines and\n  Dockerfiles for .NET 11.\n  DO NOT USE FOR: .NET Framework migrations, upgrading from .NET 9 or earlier,\n  greenfield .NET 11 projects, or cosmetic modernization unrelated to the upgrade.\n  NOTE: .NET 11 is in preview. Covers breaking changes through Preview 3.\nlicense: MIT\n---\n\n# .NET 10 → .NET 11 Migration\n\nMigrate a .NET 10 project or solution to .NET 11, systematically resolving all breaking changes. The outcome is a project targeting `net11.0` that builds cleanly, passes tests, and accounts for every behavioral, source-incompatible, and binary-incompatible change introduced in .NET 11.\n\n> **Note:** .NET 11 is currently in preview. This skill covers breaking changes documented through Preview 3.\n\n## When to Use\n\n- Upgrading `TargetFramework` from `net10.0` to `net11.0`\n- Resolving build errors or new warnings after updating the .NET 11 SDK\n- Adapting to behavioral changes in .NET 11 runtime, ASP.NET Core 11, or EF Core 11\n- Updating CI\u002FCD pipelines, Dockerfiles, or deployment scripts for .NET 11\n- Fixing C# 15 compiler breaking changes after SDK upgrade\n\n## When Not to Use\n\n- The project already targets `net11.0` and builds cleanly — migration is done\n- Upgrading from .NET 9 or earlier — address the .NET 9→10 breaking changes first\n- Migrating from .NET Framework — that is a separate, larger effort\n- Greenfield projects that start on .NET 11 (no migration needed)\n\n## Inputs\n\n| Input | Required | Description |\n|-------|----------|-------------|\n| Project or solution path | Yes | The `.csproj`, `.sln`, or `.slnx` entry point to migrate |\n| Build command | No | How to build (e.g., `dotnet build`, a repo build script). Auto-detect if not provided |\n| Test command | No | How to run tests (e.g., `dotnet test`). Auto-detect if not provided |\n| Project type hints | No | Whether the project uses ASP.NET Core, EF Core, Cosmos DB, etc. Auto-detect from PackageReferences and SDK attributes if not provided |\n\n## Workflow\n\n> **Answer directly from the loaded reference documents for information about .NET 11 breaking changes.** You may inspect the local repository (project\u002Fsolution files, source code, configuration, build\u002Ftest scripts) as needed to determine which changes apply. Do not fetch web pages or other external sources for breaking change information — the loaded references are the authoritative source. Focus on identifying which breaking changes apply and providing concrete fixes.\n>\n> **Commit strategy:** Commit at each logical boundary — after updating the TFM (Step 2), after resolving build errors (Step 3), after addressing behavioral changes (Step 4), and after updating infrastructure (Step 5). This keeps each commit focused and reviewable.\n\n### Step 1: Assess the project\n\n1. Identify how the project is built and tested. Look for build scripts, `.sln`\u002F`.slnx` files, or individual `.csproj` files.\n2. Run `dotnet --version` to confirm the .NET 11 SDK is installed. If it is not, stop and inform the user.\n3. Determine which technology areas the project uses by examining:\n   - **SDK attribute**: `Microsoft.NET.Sdk.Web` → ASP.NET Core; `Microsoft.NET.Sdk.WindowsDesktop` with `\u003CUseWPF>` or `\u003CUseWindowsForms>` → WPF\u002FWinForms\n   - **PackageReferences**: `Microsoft.EntityFrameworkCore.*` → EF Core; `Microsoft.EntityFrameworkCore.Cosmos` → Cosmos DB provider\n   - **Dockerfile presence** → Container changes relevant\n   - **Cryptography API usage** → DSA on macOS affected; AIA cert download changes relevant\n   - **Compression API usage** → DeflateStream\u002FGZipStream\u002FZipArchive changes relevant\n   - **TAR API usage** → Header checksum validation and HardLink entry changes relevant\n   - **`NamedPipeClientStream` usage with `SafePipeHandle`** → SYSLIB0063 constructor obsoletion relevant\n   - **`BackgroundService` usage** → Unhandled exceptions now stop the host\n   - **`Microsoft.OpenApi` direct usage** → v3 API breaking changes in ASP.NET Core OpenAPI\n   - **EF Core SQL Server with Entra ID auth** → SqlClient 7.0 auth dependency changes\n   - **NativeAOT native libraries on Unix** → Output filename prefix changed\n4. Record which reference documents are relevant (see the reference loading table in Step 3).\n5. Do a **clean build** (`dotnet build --no-incremental` or delete `bin`\u002F`obj`) on the current `net10.0` target to establish a clean baseline. Record any pre-existing warnings.\n\n### Step 2: Update the Target Framework\n\n1. In each `.csproj` (or `Directory.Build.props` if centralized), change:\n   ```xml\n   \u003CTargetFramework>net10.0\u003C\u002FTargetFramework>\n   ```\n   to:\n   ```xml\n   \u003CTargetFramework>net11.0\u003C\u002FTargetFramework>\n   ```\n   For multi-targeted projects, add `net11.0` to `\u003CTargetFrameworks>` or replace `net10.0`.\n\n2. Update all `Microsoft.Extensions.*`, `Microsoft.AspNetCore.*`, `Microsoft.EntityFrameworkCore.*`, and other Microsoft package references to their 11.0.x versions. If using Central Package Management (`Directory.Packages.props`), update versions there.\n\n3. Run `dotnet restore`. Fix any restore errors before continuing.\n\n4. Run `dotnet build`. Capture all errors and warnings — these will be addressed in Step 3.\n\n### Step 3: Fix source-breaking and compilation changes\n\nLoad reference documents based on the project's technology areas:\n\n| Reference file | When to load |\n|----------------|-------------|\n| `references\u002Fcsharp-compiler-dotnet10to11.md` | Always (C# 15 compiler breaking changes) |\n| `references\u002Fcore-libraries-dotnet10to11.md` | Always (applies to all .NET 11 projects) |\n| `references\u002Fsdk-msbuild-dotnet10to11.md` | Always (SDK and build tooling changes) |\n| `references\u002Faspnetcore-dotnet10to11.md` | Project uses ASP.NET Core (OpenAPI, Blazor) |\n| `references\u002Fefcore-dotnet10to11.md` | Project uses Entity Framework Core |\n| `references\u002Fcryptography-dotnet10to11.md` | Project uses cryptography APIs, mTLS, or targets macOS |\n| `references\u002Fruntime-jit-dotnet10to11.md` | Deploying to older hardware, embedded devices, or using NativeAOT |\n\nWork through each build error systematically. Common patterns:\n\n1. **C# 15 Span collection expression safe-context** — Collection expressions of `Span\u003CT>`\u002F`ReadOnlySpan\u003CT>` type now have `declaration-block` safe-context. Code assigning span collection expressions to variables in outer scopes will error. Use array type or move the expression to the correct scope.\n\n2. **`ref readonly` delegates\u002Flocal functions need `InAttribute`** — If synthesizing delegates from `ref readonly`-returning methods or using `ref readonly` local functions, ensure `System.Runtime.InteropServices.InAttribute` is available.\n\n3. **`nameof(this.)` in attributes** — Remove `this.` qualifier; use `nameof(P)` instead of `nameof(this.P)`.\n\n4. **`with()` in collection expressions (C# 15)** — `with(...)` is now treated as constructor arguments, not a method call. Use `@with(...)` to call a method named `with`.\n\n5. **Dynamic `&&`\u002F`||` with interface operand** — Interface types as left operand of `&&`\u002F`||` with `dynamic` right operand now errors at compile time. Cast to concrete type or `dynamic`.\n\n6. **EF Core Cosmos sync I\u002FO removal** — `ToList()`, `SaveChanges()`, etc. on Cosmos provider always throw. Convert to async equivalents.\n\n7. **SYSLIB0063: `NamedPipeClientStream` `isConnected` parameter obsoleted** — The constructor overload taking `bool isConnected` is obsoleted. Remove the `isConnected` argument and use the new 3-parameter constructor. Projects with `TreatWarningsAsErrors` will fail to build.\n\n8. **`when` switch-expression-arm parsing** — `(X.Y) when` is now parsed as a constant pattern with a `when` clause instead of a cast expression, which can cause existing code to fail to compile or change meaning. Review switch expressions using `when` and adjust syntax as needed.\n\n9. **Microsoft.OpenApi v3 breaking changes** — `Microsoft.AspNetCore.OpenApi` now depends on `Microsoft.OpenApi` 3.x. Code using `Microsoft.OpenApi` types directly (`OpenApiDocument`, `OpenApiSchema`, etc.) will have compile errors. Follow the v3 upgrade guide.\n\n10. **EF Core Design package no longer transitive** — `Microsoft.EntityFrameworkCore.Tools` and `.Tasks` no longer depend on `.Design`. Add an explicit `PackageReference` if needed.\n\n11. **EFOptimizeContext MSBuild property removed** — Replace with `\u003CEFScaffoldModelStage>` and `\u003CEFPrecompileQueriesStage>`.\n\n### Step 4: Address behavioral changes\n\nThese changes compile successfully but alter runtime behavior. Review each one and determine impact:\n\n1. **DeflateStream\u002FGZipStream empty payload** — Now writes headers and footers even for empty payloads. If your code checks for zero-length output, update the check.\n\n2. **MemoryStream maximum capacity** — Maximum capacity updated and exception behavior changed. Review code that creates large MemoryStreams or relies on specific exception types.\n\n3. **TAR header checksum validation** — TAR-reading APIs now verify checksums. Corrupted or hand-crafted TAR files may now fail to read.\n\n4. **ZipArchive.CreateAsync eager loading** — `ZipArchive.CreateAsync` eagerly loads entries. May affect memory usage for large archives.\n\n5. **Environment.TickCount consistency** — Made consistent with Windows timeout behavior. Code relying on specific tick count behavior may need adjustment.\n\n6. **DSA removed from macOS** — DSA cryptographic operations throw on macOS. Use a different algorithm (RSA, ECDSA).\n\n7. **Japanese Calendar minimum date** — Minimum supported date corrected. Code using very early Japanese Calendar dates may be affected.\n\n8. **Minimum hardware requirements** — x86\u002Fx64 baseline moved to `x86-64-v2`; Windows Arm64 requires `LSE`. Verify deployment targets meet requirements.\n\n9. **Mono launch target for .NET Framework** — No longer set automatically. If using Mono for .NET Framework apps on Linux, specify explicitly.\n\n10. **Unhandled BackgroundService exceptions stop the host** — Exceptions from `ExecuteAsync()` now propagate and crash the host. Add try\u002Fcatch in background services that should not bring down the application.\n\n11. **ZipArchive CRC32 validation** — ZIP reads now validate CRC32 checksums. Corrupt or truncated archives that previously succeeded will now throw `InvalidDataException`.\n\n12. **TarWriter emits HardLink entries** — Hard-linked files are now written as `HardLink` entries instead of duplicated data. Consumers of .NET-produced tar archives must handle `HardLink` entries.\n\n13. **AIA certificate downloads disabled** — Server-side client-certificate validation no longer downloads intermediate CAs via AIA by default. Pre-install the full chain or have clients send intermediates.\n\n14. **Blazor Virtualize OverscanCount default changed** — Default `OverscanCount` changed from 3 to 15. Set explicitly if performance-sensitive.\n\n15. **Microsoft.Data.SqlClient 7.0 — Entra ID auth separated** — Azure\u002FEntra ID authentication dependencies removed from the core SqlClient package. Add `Microsoft.Data.SqlClient.Extensions.Azure` if using Entra ID auth.\n\n16. **SqlVector&lt;T&gt; excluded from SELECT** — Vector properties are no longer auto-loaded. Use explicit projections to include vector values.\n\n17. **SQLitePCLRaw encryption bundles removed** — `bundle_e_sqlcipher` and other encryption bundle packages removed in SQLitePCLRaw 3.0.\n\n18. **NativeAOT Unix native library `lib` prefix** — Output filenames now include `lib` prefix on Linux\u002FmacOS (e.g., `libMyLib.so`).\n\n### Step 5: Update infrastructure\n\n1. **Dockerfiles**: Update base images from 10.0 to 11.0:\n   ```dockerfile\n   # Before\n   FROM mcr.microsoft.com\u002Fdotnet\u002Fsdk:10.0 AS build\n   FROM mcr.microsoft.com\u002Fdotnet\u002Faspnet:10.0\n   # After\n   FROM mcr.microsoft.com\u002Fdotnet\u002Fsdk:11.0 AS build\n   FROM mcr.microsoft.com\u002Fdotnet\u002Faspnet:11.0\n   ```\n\n2. **CI\u002FCD pipelines**: Update SDK version references. If using `global.json`, update the `sdk.version` in your existing file while preserving other keys (such as `rollForward` and test configuration):\n   ```diff\n    {\n      \"sdk\": {\n   -    \"version\": \"10.0.100\",\n   -    \"rollForward\": \"latestFeature\"\n   +    \"version\": \"11.0.100-preview.3\",\n   +    \"rollForward\": \"latestFeature\"\n      },\n      \"otherSettings\": {\n        \"...\": \"...\"\n      }\n    }\n   ```\n\n3. **Hardware deployment targets**: Verify all deployment targets meet the updated minimum hardware requirements (x86-64-v2 for x86\u002Fx64, LSE for Windows Arm64).\n\n### Step 6: Verify\n\n1. Run a full clean build: `dotnet build --no-incremental`\n2. Run all tests: `dotnet test`\n3. If the application is containerized, build and test the container image\n4. Smoke-test the application, paying special attention to:\n   - Compression behavior with empty streams\n   - TAR file reading (checksum validation and HardLink entries)\n   - EF Core Cosmos DB operations (must be async)\n   - DSA usage on macOS\n   - Memory-intensive MemoryStream usage\n   - Span collection expression assignments\n   - BackgroundService exception handling\n   - mTLS \u002F client certificate chain validation\n   - EF Core SQL Server with Entra ID authentication\n   - NativeAOT output filenames on Unix\n5. Review the diff and ensure no unintended behavioral changes were introduced\n\n## Reference Documents\n\nThe `references\u002F` folder contains detailed breaking change information organized by technology area. Load only the references relevant to the project being migrated:\n\n| Reference file | When to load |\n|----------------|-------------|\n| `references\u002Fcsharp-compiler-dotnet10to11.md` | Always (C# 15 compiler breaking changes) |\n| `references\u002Fcore-libraries-dotnet10to11.md` | Always (applies to all .NET 11 projects) |\n| `references\u002Fsdk-msbuild-dotnet10to11.md` | Always (SDK and build tooling changes) |\n| `references\u002Faspnetcore-dotnet10to11.md` | Project uses ASP.NET Core (OpenAPI, Blazor) |\n| `references\u002Fefcore-dotnet10to11.md` | Project uses Entity Framework Core |\n| `references\u002Fcryptography-dotnet10to11.md` | Project uses cryptography APIs, mTLS, or targets macOS |\n| `references\u002Fruntime-jit-dotnet10to11.md` | Deploying to older hardware, embedded devices, or using NativeAOT |\n",{"data":32,"body":33},{"name":4,"description":6,"license":22},{"type":34,"children":35},"root",[36,45,60,75,82,133,139,169,175,318,324,347,354,633,639,786,792,797,938,943,1372,1378,1383,1665,1671,1892,1898,1989,1995,2007,2132],{"type":37,"tag":38,"props":39,"children":41},"element","h1",{"id":40},"net-10-net-11-migration",[42],{"type":43,"value":44},"text",".NET 10 → .NET 11 Migration",{"type":37,"tag":46,"props":47,"children":48},"p",{},[49,51,58],{"type":43,"value":50},"Migrate a .NET 10 project or solution to .NET 11, systematically resolving all breaking changes. The outcome is a project targeting ",{"type":37,"tag":52,"props":53,"children":55},"code",{"className":54},[],[56],{"type":43,"value":57},"net11.0",{"type":43,"value":59}," that builds cleanly, passes tests, and accounts for every behavioral, source-incompatible, and binary-incompatible change introduced in .NET 11.",{"type":37,"tag":61,"props":62,"children":63},"blockquote",{},[64],{"type":37,"tag":46,"props":65,"children":66},{},[67,73],{"type":37,"tag":68,"props":69,"children":70},"strong",{},[71],{"type":43,"value":72},"Note:",{"type":43,"value":74}," .NET 11 is currently in preview. This skill covers breaking changes documented through Preview 3.",{"type":37,"tag":76,"props":77,"children":79},"h2",{"id":78},"when-to-use",[80],{"type":43,"value":81},"When to Use",{"type":37,"tag":83,"props":84,"children":85},"ul",{},[86,113,118,123,128],{"type":37,"tag":87,"props":88,"children":89},"li",{},[90,92,98,100,106,108],{"type":43,"value":91},"Upgrading ",{"type":37,"tag":52,"props":93,"children":95},{"className":94},[],[96],{"type":43,"value":97},"TargetFramework",{"type":43,"value":99}," from ",{"type":37,"tag":52,"props":101,"children":103},{"className":102},[],[104],{"type":43,"value":105},"net10.0",{"type":43,"value":107}," to ",{"type":37,"tag":52,"props":109,"children":111},{"className":110},[],[112],{"type":43,"value":57},{"type":37,"tag":87,"props":114,"children":115},{},[116],{"type":43,"value":117},"Resolving build errors or new warnings after updating the .NET 11 SDK",{"type":37,"tag":87,"props":119,"children":120},{},[121],{"type":43,"value":122},"Adapting to behavioral changes in .NET 11 runtime, ASP.NET Core 11, or EF Core 11",{"type":37,"tag":87,"props":124,"children":125},{},[126],{"type":43,"value":127},"Updating CI\u002FCD pipelines, Dockerfiles, or deployment scripts for .NET 11",{"type":37,"tag":87,"props":129,"children":130},{},[131],{"type":43,"value":132},"Fixing C# 15 compiler breaking changes after SDK upgrade",{"type":37,"tag":76,"props":134,"children":136},{"id":135},"when-not-to-use",[137],{"type":43,"value":138},"When Not to Use",{"type":37,"tag":83,"props":140,"children":141},{},[142,154,159,164],{"type":37,"tag":87,"props":143,"children":144},{},[145,147,152],{"type":43,"value":146},"The project already targets ",{"type":37,"tag":52,"props":148,"children":150},{"className":149},[],[151],{"type":43,"value":57},{"type":43,"value":153}," and builds cleanly — migration is done",{"type":37,"tag":87,"props":155,"children":156},{},[157],{"type":43,"value":158},"Upgrading from .NET 9 or earlier — address the .NET 9→10 breaking changes first",{"type":37,"tag":87,"props":160,"children":161},{},[162],{"type":43,"value":163},"Migrating from .NET Framework — that is a separate, larger effort",{"type":37,"tag":87,"props":165,"children":166},{},[167],{"type":43,"value":168},"Greenfield projects that start on .NET 11 (no migration needed)",{"type":37,"tag":76,"props":170,"children":172},{"id":171},"inputs",[173],{"type":43,"value":174},"Inputs",{"type":37,"tag":176,"props":177,"children":178},"table",{},[179,203],{"type":37,"tag":180,"props":181,"children":182},"thead",{},[183],{"type":37,"tag":184,"props":185,"children":186},"tr",{},[187,193,198],{"type":37,"tag":188,"props":189,"children":190},"th",{},[191],{"type":43,"value":192},"Input",{"type":37,"tag":188,"props":194,"children":195},{},[196],{"type":43,"value":197},"Required",{"type":37,"tag":188,"props":199,"children":200},{},[201],{"type":43,"value":202},"Description",{"type":37,"tag":204,"props":205,"children":206},"tbody",{},[207,250,276,301],{"type":37,"tag":184,"props":208,"children":209},{},[210,216,221],{"type":37,"tag":211,"props":212,"children":213},"td",{},[214],{"type":43,"value":215},"Project or solution path",{"type":37,"tag":211,"props":217,"children":218},{},[219],{"type":43,"value":220},"Yes",{"type":37,"tag":211,"props":222,"children":223},{},[224,226,232,234,240,242,248],{"type":43,"value":225},"The ",{"type":37,"tag":52,"props":227,"children":229},{"className":228},[],[230],{"type":43,"value":231},".csproj",{"type":43,"value":233},", ",{"type":37,"tag":52,"props":235,"children":237},{"className":236},[],[238],{"type":43,"value":239},".sln",{"type":43,"value":241},", or ",{"type":37,"tag":52,"props":243,"children":245},{"className":244},[],[246],{"type":43,"value":247},".slnx",{"type":43,"value":249}," entry point to migrate",{"type":37,"tag":184,"props":251,"children":252},{},[253,258,263],{"type":37,"tag":211,"props":254,"children":255},{},[256],{"type":43,"value":257},"Build command",{"type":37,"tag":211,"props":259,"children":260},{},[261],{"type":43,"value":262},"No",{"type":37,"tag":211,"props":264,"children":265},{},[266,268,274],{"type":43,"value":267},"How to build (e.g., ",{"type":37,"tag":52,"props":269,"children":271},{"className":270},[],[272],{"type":43,"value":273},"dotnet build",{"type":43,"value":275},", a repo build script). Auto-detect if not provided",{"type":37,"tag":184,"props":277,"children":278},{},[279,284,288],{"type":37,"tag":211,"props":280,"children":281},{},[282],{"type":43,"value":283},"Test command",{"type":37,"tag":211,"props":285,"children":286},{},[287],{"type":43,"value":262},{"type":37,"tag":211,"props":289,"children":290},{},[291,293,299],{"type":43,"value":292},"How to run tests (e.g., ",{"type":37,"tag":52,"props":294,"children":296},{"className":295},[],[297],{"type":43,"value":298},"dotnet test",{"type":43,"value":300},"). Auto-detect if not provided",{"type":37,"tag":184,"props":302,"children":303},{},[304,309,313],{"type":37,"tag":211,"props":305,"children":306},{},[307],{"type":43,"value":308},"Project type hints",{"type":37,"tag":211,"props":310,"children":311},{},[312],{"type":43,"value":262},{"type":37,"tag":211,"props":314,"children":315},{},[316],{"type":43,"value":317},"Whether the project uses ASP.NET Core, EF Core, Cosmos DB, etc. Auto-detect from PackageReferences and SDK attributes if not provided",{"type":37,"tag":76,"props":319,"children":321},{"id":320},"workflow",[322],{"type":43,"value":323},"Workflow",{"type":37,"tag":61,"props":325,"children":326},{},[327,337],{"type":37,"tag":46,"props":328,"children":329},{},[330,335],{"type":37,"tag":68,"props":331,"children":332},{},[333],{"type":43,"value":334},"Answer directly from the loaded reference documents for information about .NET 11 breaking changes.",{"type":43,"value":336}," You may inspect the local repository (project\u002Fsolution files, source code, configuration, build\u002Ftest scripts) as needed to determine which changes apply. Do not fetch web pages or other external sources for breaking change information — the loaded references are the authoritative source. Focus on identifying which breaking changes apply and providing concrete fixes.",{"type":37,"tag":46,"props":338,"children":339},{},[340,345],{"type":37,"tag":68,"props":341,"children":342},{},[343],{"type":43,"value":344},"Commit strategy:",{"type":43,"value":346}," Commit at each logical boundary — after updating the TFM (Step 2), after resolving build errors (Step 3), after addressing behavioral changes (Step 4), and after updating infrastructure (Step 5). This keeps each commit focused and reviewable.",{"type":37,"tag":348,"props":349,"children":351},"h3",{"id":350},"step-1-assess-the-project",[352],{"type":43,"value":353},"Step 1: Assess the project",{"type":37,"tag":355,"props":356,"children":357},"ol",{},[358,384,397,586,591],{"type":37,"tag":87,"props":359,"children":360},{},[361,363,368,370,375,377,382],{"type":43,"value":362},"Identify how the project is built and tested. Look for build scripts, ",{"type":37,"tag":52,"props":364,"children":366},{"className":365},[],[367],{"type":43,"value":239},{"type":43,"value":369},"\u002F",{"type":37,"tag":52,"props":371,"children":373},{"className":372},[],[374],{"type":43,"value":247},{"type":43,"value":376}," files, or individual ",{"type":37,"tag":52,"props":378,"children":380},{"className":379},[],[381],{"type":43,"value":231},{"type":43,"value":383}," files.",{"type":37,"tag":87,"props":385,"children":386},{},[387,389,395],{"type":43,"value":388},"Run ",{"type":37,"tag":52,"props":390,"children":392},{"className":391},[],[393],{"type":43,"value":394},"dotnet --version",{"type":43,"value":396}," to confirm the .NET 11 SDK is installed. If it is not, stop and inform the user.",{"type":37,"tag":87,"props":398,"children":399},{},[400,402],{"type":43,"value":401},"Determine which technology areas the project uses by examining:\n",{"type":37,"tag":83,"props":403,"children":404},{},[405,447,472,482,492,502,512,534,550,566,576],{"type":37,"tag":87,"props":406,"children":407},{},[408,413,415,421,423,429,431,437,439,445],{"type":37,"tag":68,"props":409,"children":410},{},[411],{"type":43,"value":412},"SDK attribute",{"type":43,"value":414},": ",{"type":37,"tag":52,"props":416,"children":418},{"className":417},[],[419],{"type":43,"value":420},"Microsoft.NET.Sdk.Web",{"type":43,"value":422}," → ASP.NET Core; ",{"type":37,"tag":52,"props":424,"children":426},{"className":425},[],[427],{"type":43,"value":428},"Microsoft.NET.Sdk.WindowsDesktop",{"type":43,"value":430}," with ",{"type":37,"tag":52,"props":432,"children":434},{"className":433},[],[435],{"type":43,"value":436},"\u003CUseWPF>",{"type":43,"value":438}," or ",{"type":37,"tag":52,"props":440,"children":442},{"className":441},[],[443],{"type":43,"value":444},"\u003CUseWindowsForms>",{"type":43,"value":446}," → WPF\u002FWinForms",{"type":37,"tag":87,"props":448,"children":449},{},[450,455,456,462,464,470],{"type":37,"tag":68,"props":451,"children":452},{},[453],{"type":43,"value":454},"PackageReferences",{"type":43,"value":414},{"type":37,"tag":52,"props":457,"children":459},{"className":458},[],[460],{"type":43,"value":461},"Microsoft.EntityFrameworkCore.*",{"type":43,"value":463}," → EF Core; ",{"type":37,"tag":52,"props":465,"children":467},{"className":466},[],[468],{"type":43,"value":469},"Microsoft.EntityFrameworkCore.Cosmos",{"type":43,"value":471}," → Cosmos DB provider",{"type":37,"tag":87,"props":473,"children":474},{},[475,480],{"type":37,"tag":68,"props":476,"children":477},{},[478],{"type":43,"value":479},"Dockerfile presence",{"type":43,"value":481}," → Container changes relevant",{"type":37,"tag":87,"props":483,"children":484},{},[485,490],{"type":37,"tag":68,"props":486,"children":487},{},[488],{"type":43,"value":489},"Cryptography API usage",{"type":43,"value":491}," → DSA on macOS affected; AIA cert download changes relevant",{"type":37,"tag":87,"props":493,"children":494},{},[495,500],{"type":37,"tag":68,"props":496,"children":497},{},[498],{"type":43,"value":499},"Compression API usage",{"type":43,"value":501}," → DeflateStream\u002FGZipStream\u002FZipArchive changes relevant",{"type":37,"tag":87,"props":503,"children":504},{},[505,510],{"type":37,"tag":68,"props":506,"children":507},{},[508],{"type":43,"value":509},"TAR API usage",{"type":43,"value":511}," → Header checksum validation and HardLink entry changes relevant",{"type":37,"tag":87,"props":513,"children":514},{},[515,532],{"type":37,"tag":68,"props":516,"children":517},{},[518,524,526],{"type":37,"tag":52,"props":519,"children":521},{"className":520},[],[522],{"type":43,"value":523},"NamedPipeClientStream",{"type":43,"value":525}," usage with ",{"type":37,"tag":52,"props":527,"children":529},{"className":528},[],[530],{"type":43,"value":531},"SafePipeHandle",{"type":43,"value":533}," → SYSLIB0063 constructor obsoletion relevant",{"type":37,"tag":87,"props":535,"children":536},{},[537,548],{"type":37,"tag":68,"props":538,"children":539},{},[540,546],{"type":37,"tag":52,"props":541,"children":543},{"className":542},[],[544],{"type":43,"value":545},"BackgroundService",{"type":43,"value":547}," usage",{"type":43,"value":549}," → Unhandled exceptions now stop the host",{"type":37,"tag":87,"props":551,"children":552},{},[553,564],{"type":37,"tag":68,"props":554,"children":555},{},[556,562],{"type":37,"tag":52,"props":557,"children":559},{"className":558},[],[560],{"type":43,"value":561},"Microsoft.OpenApi",{"type":43,"value":563}," direct usage",{"type":43,"value":565}," → v3 API breaking changes in ASP.NET Core OpenAPI",{"type":37,"tag":87,"props":567,"children":568},{},[569,574],{"type":37,"tag":68,"props":570,"children":571},{},[572],{"type":43,"value":573},"EF Core SQL Server with Entra ID auth",{"type":43,"value":575}," → SqlClient 7.0 auth dependency changes",{"type":37,"tag":87,"props":577,"children":578},{},[579,584],{"type":37,"tag":68,"props":580,"children":581},{},[582],{"type":43,"value":583},"NativeAOT native libraries on Unix",{"type":43,"value":585}," → Output filename prefix changed",{"type":37,"tag":87,"props":587,"children":588},{},[589],{"type":43,"value":590},"Record which reference documents are relevant (see the reference loading table in Step 3).",{"type":37,"tag":87,"props":592,"children":593},{},[594,596,601,603,609,611,617,618,624,626,631],{"type":43,"value":595},"Do a ",{"type":37,"tag":68,"props":597,"children":598},{},[599],{"type":43,"value":600},"clean build",{"type":43,"value":602}," (",{"type":37,"tag":52,"props":604,"children":606},{"className":605},[],[607],{"type":43,"value":608},"dotnet build --no-incremental",{"type":43,"value":610}," or delete ",{"type":37,"tag":52,"props":612,"children":614},{"className":613},[],[615],{"type":43,"value":616},"bin",{"type":43,"value":369},{"type":37,"tag":52,"props":619,"children":621},{"className":620},[],[622],{"type":43,"value":623},"obj",{"type":43,"value":625},") on the current ",{"type":37,"tag":52,"props":627,"children":629},{"className":628},[],[630],{"type":43,"value":105},{"type":43,"value":632}," target to establish a clean baseline. Record any pre-existing warnings.",{"type":37,"tag":348,"props":634,"children":636},{"id":635},"step-2-update-the-target-framework",[637],{"type":43,"value":638},"Step 2: Update the Target Framework",{"type":37,"tag":355,"props":640,"children":641},{},[642,729,763,775],{"type":37,"tag":87,"props":643,"children":644},{},[645,647,652,654,660,662,683,687,689,703,706,708,713,714,720,722,727],{"type":43,"value":646},"In each ",{"type":37,"tag":52,"props":648,"children":650},{"className":649},[],[651],{"type":43,"value":231},{"type":43,"value":653}," (or ",{"type":37,"tag":52,"props":655,"children":657},{"className":656},[],[658],{"type":43,"value":659},"Directory.Build.props",{"type":43,"value":661}," if centralized), change:",{"type":37,"tag":663,"props":664,"children":669},"pre",{"className":665,"code":666,"language":667,"meta":668,"style":668},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CTargetFramework>net10.0\u003C\u002FTargetFramework>\n","xml","",[670],{"type":37,"tag":52,"props":671,"children":672},{"__ignoreMap":668},[673],{"type":37,"tag":674,"props":675,"children":678},"span",{"class":676,"line":677},"line",1,[679],{"type":37,"tag":674,"props":680,"children":681},{},[682],{"type":43,"value":666},{"type":37,"tag":684,"props":685,"children":686},"br",{},[],{"type":43,"value":688},"to:",{"type":37,"tag":663,"props":690,"children":692},{"className":665,"code":691,"language":667,"meta":668,"style":668},"\u003CTargetFramework>net11.0\u003C\u002FTargetFramework>\n",[693],{"type":37,"tag":52,"props":694,"children":695},{"__ignoreMap":668},[696],{"type":37,"tag":674,"props":697,"children":698},{"class":676,"line":677},[699],{"type":37,"tag":674,"props":700,"children":701},{},[702],{"type":43,"value":691},{"type":37,"tag":684,"props":704,"children":705},{},[],{"type":43,"value":707},"For multi-targeted projects, add ",{"type":37,"tag":52,"props":709,"children":711},{"className":710},[],[712],{"type":43,"value":57},{"type":43,"value":107},{"type":37,"tag":52,"props":715,"children":717},{"className":716},[],[718],{"type":43,"value":719},"\u003CTargetFrameworks>",{"type":43,"value":721}," or replace ",{"type":37,"tag":52,"props":723,"children":725},{"className":724},[],[726],{"type":43,"value":105},{"type":43,"value":728},".",{"type":37,"tag":87,"props":730,"children":731},{},[732,734,740,741,747,748,753,755,761],{"type":43,"value":733},"Update all ",{"type":37,"tag":52,"props":735,"children":737},{"className":736},[],[738],{"type":43,"value":739},"Microsoft.Extensions.*",{"type":43,"value":233},{"type":37,"tag":52,"props":742,"children":744},{"className":743},[],[745],{"type":43,"value":746},"Microsoft.AspNetCore.*",{"type":43,"value":233},{"type":37,"tag":52,"props":749,"children":751},{"className":750},[],[752],{"type":43,"value":461},{"type":43,"value":754},", and other Microsoft package references to their 11.0.x versions. If using Central Package Management (",{"type":37,"tag":52,"props":756,"children":758},{"className":757},[],[759],{"type":43,"value":760},"Directory.Packages.props",{"type":43,"value":762},"), update versions there.",{"type":37,"tag":87,"props":764,"children":765},{},[766,767,773],{"type":43,"value":388},{"type":37,"tag":52,"props":768,"children":770},{"className":769},[],[771],{"type":43,"value":772},"dotnet restore",{"type":43,"value":774},". Fix any restore errors before continuing.",{"type":37,"tag":87,"props":776,"children":777},{},[778,779,784],{"type":43,"value":388},{"type":37,"tag":52,"props":780,"children":782},{"className":781},[],[783],{"type":43,"value":273},{"type":43,"value":785},". Capture all errors and warnings — these will be addressed in Step 3.",{"type":37,"tag":348,"props":787,"children":789},{"id":788},"step-3-fix-source-breaking-and-compilation-changes",[790],{"type":43,"value":791},"Step 3: Fix source-breaking and compilation changes",{"type":37,"tag":46,"props":793,"children":794},{},[795],{"type":43,"value":796},"Load reference documents based on the project's technology areas:",{"type":37,"tag":176,"props":798,"children":799},{},[800,816],{"type":37,"tag":180,"props":801,"children":802},{},[803],{"type":37,"tag":184,"props":804,"children":805},{},[806,811],{"type":37,"tag":188,"props":807,"children":808},{},[809],{"type":43,"value":810},"Reference file",{"type":37,"tag":188,"props":812,"children":813},{},[814],{"type":43,"value":815},"When to load",{"type":37,"tag":204,"props":817,"children":818},{},[819,836,853,870,887,904,921],{"type":37,"tag":184,"props":820,"children":821},{},[822,831],{"type":37,"tag":211,"props":823,"children":824},{},[825],{"type":37,"tag":52,"props":826,"children":828},{"className":827},[],[829],{"type":43,"value":830},"references\u002Fcsharp-compiler-dotnet10to11.md",{"type":37,"tag":211,"props":832,"children":833},{},[834],{"type":43,"value":835},"Always (C# 15 compiler breaking changes)",{"type":37,"tag":184,"props":837,"children":838},{},[839,848],{"type":37,"tag":211,"props":840,"children":841},{},[842],{"type":37,"tag":52,"props":843,"children":845},{"className":844},[],[846],{"type":43,"value":847},"references\u002Fcore-libraries-dotnet10to11.md",{"type":37,"tag":211,"props":849,"children":850},{},[851],{"type":43,"value":852},"Always (applies to all .NET 11 projects)",{"type":37,"tag":184,"props":854,"children":855},{},[856,865],{"type":37,"tag":211,"props":857,"children":858},{},[859],{"type":37,"tag":52,"props":860,"children":862},{"className":861},[],[863],{"type":43,"value":864},"references\u002Fsdk-msbuild-dotnet10to11.md",{"type":37,"tag":211,"props":866,"children":867},{},[868],{"type":43,"value":869},"Always (SDK and build tooling changes)",{"type":37,"tag":184,"props":871,"children":872},{},[873,882],{"type":37,"tag":211,"props":874,"children":875},{},[876],{"type":37,"tag":52,"props":877,"children":879},{"className":878},[],[880],{"type":43,"value":881},"references\u002Faspnetcore-dotnet10to11.md",{"type":37,"tag":211,"props":883,"children":884},{},[885],{"type":43,"value":886},"Project uses ASP.NET Core (OpenAPI, Blazor)",{"type":37,"tag":184,"props":888,"children":889},{},[890,899],{"type":37,"tag":211,"props":891,"children":892},{},[893],{"type":37,"tag":52,"props":894,"children":896},{"className":895},[],[897],{"type":43,"value":898},"references\u002Fefcore-dotnet10to11.md",{"type":37,"tag":211,"props":900,"children":901},{},[902],{"type":43,"value":903},"Project uses Entity Framework Core",{"type":37,"tag":184,"props":905,"children":906},{},[907,916],{"type":37,"tag":211,"props":908,"children":909},{},[910],{"type":37,"tag":52,"props":911,"children":913},{"className":912},[],[914],{"type":43,"value":915},"references\u002Fcryptography-dotnet10to11.md",{"type":37,"tag":211,"props":917,"children":918},{},[919],{"type":43,"value":920},"Project uses cryptography APIs, mTLS, or targets macOS",{"type":37,"tag":184,"props":922,"children":923},{},[924,933],{"type":37,"tag":211,"props":925,"children":926},{},[927],{"type":37,"tag":52,"props":928,"children":930},{"className":929},[],[931],{"type":43,"value":932},"references\u002Fruntime-jit-dotnet10to11.md",{"type":37,"tag":211,"props":934,"children":935},{},[936],{"type":43,"value":937},"Deploying to older hardware, embedded devices, or using NativeAOT",{"type":37,"tag":46,"props":939,"children":940},{},[941],{"type":43,"value":942},"Work through each build error systematically. Common patterns:",{"type":37,"tag":355,"props":944,"children":945},{},[946,979,1023,1062,1101,1152,1176,1224,1261,1307,1348],{"type":37,"tag":87,"props":947,"children":948},{},[949,954,956,962,963,969,971,977],{"type":37,"tag":68,"props":950,"children":951},{},[952],{"type":43,"value":953},"C# 15 Span collection expression safe-context",{"type":43,"value":955}," — Collection expressions of ",{"type":37,"tag":52,"props":957,"children":959},{"className":958},[],[960],{"type":43,"value":961},"Span\u003CT>",{"type":43,"value":369},{"type":37,"tag":52,"props":964,"children":966},{"className":965},[],[967],{"type":43,"value":968},"ReadOnlySpan\u003CT>",{"type":43,"value":970}," type now have ",{"type":37,"tag":52,"props":972,"children":974},{"className":973},[],[975],{"type":43,"value":976},"declaration-block",{"type":43,"value":978}," safe-context. Code assigning span collection expressions to variables in outer scopes will error. Use array type or move the expression to the correct scope.",{"type":37,"tag":87,"props":980,"children":981},{},[982,999,1001,1006,1008,1013,1015,1021],{"type":37,"tag":68,"props":983,"children":984},{},[985,991,993],{"type":37,"tag":52,"props":986,"children":988},{"className":987},[],[989],{"type":43,"value":990},"ref readonly",{"type":43,"value":992}," delegates\u002Flocal functions need ",{"type":37,"tag":52,"props":994,"children":996},{"className":995},[],[997],{"type":43,"value":998},"InAttribute",{"type":43,"value":1000}," — If synthesizing delegates from ",{"type":37,"tag":52,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":43,"value":990},{"type":43,"value":1007},"-returning methods or using ",{"type":37,"tag":52,"props":1009,"children":1011},{"className":1010},[],[1012],{"type":43,"value":990},{"type":43,"value":1014}," local functions, ensure ",{"type":37,"tag":52,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":43,"value":1020},"System.Runtime.InteropServices.InAttribute",{"type":43,"value":1022}," is available.",{"type":37,"tag":87,"props":1024,"children":1025},{},[1026,1037,1039,1045,1047,1053,1055,1061],{"type":37,"tag":68,"props":1027,"children":1028},{},[1029,1035],{"type":37,"tag":52,"props":1030,"children":1032},{"className":1031},[],[1033],{"type":43,"value":1034},"nameof(this.)",{"type":43,"value":1036}," in attributes",{"type":43,"value":1038}," — Remove ",{"type":37,"tag":52,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":43,"value":1044},"this.",{"type":43,"value":1046}," qualifier; use ",{"type":37,"tag":52,"props":1048,"children":1050},{"className":1049},[],[1051],{"type":43,"value":1052},"nameof(P)",{"type":43,"value":1054}," instead of ",{"type":37,"tag":52,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":43,"value":1060},"nameof(this.P)",{"type":43,"value":728},{"type":37,"tag":87,"props":1063,"children":1064},{},[1065,1076,1078,1084,1086,1092,1094,1100],{"type":37,"tag":68,"props":1066,"children":1067},{},[1068,1074],{"type":37,"tag":52,"props":1069,"children":1071},{"className":1070},[],[1072],{"type":43,"value":1073},"with()",{"type":43,"value":1075}," in collection expressions (C# 15)",{"type":43,"value":1077}," — ",{"type":37,"tag":52,"props":1079,"children":1081},{"className":1080},[],[1082],{"type":43,"value":1083},"with(...)",{"type":43,"value":1085}," is now treated as constructor arguments, not a method call. Use ",{"type":37,"tag":52,"props":1087,"children":1089},{"className":1088},[],[1090],{"type":43,"value":1091},"@with(...)",{"type":43,"value":1093}," to call a method named ",{"type":37,"tag":52,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":43,"value":1099},"with",{"type":43,"value":728},{"type":37,"tag":87,"props":1102,"children":1103},{},[1104,1124,1126,1131,1132,1137,1138,1144,1146,1151],{"type":37,"tag":68,"props":1105,"children":1106},{},[1107,1109,1115,1116,1122],{"type":43,"value":1108},"Dynamic ",{"type":37,"tag":52,"props":1110,"children":1112},{"className":1111},[],[1113],{"type":43,"value":1114},"&&",{"type":43,"value":369},{"type":37,"tag":52,"props":1117,"children":1119},{"className":1118},[],[1120],{"type":43,"value":1121},"||",{"type":43,"value":1123}," with interface operand",{"type":43,"value":1125}," — Interface types as left operand of ",{"type":37,"tag":52,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":43,"value":1114},{"type":43,"value":369},{"type":37,"tag":52,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":43,"value":1121},{"type":43,"value":430},{"type":37,"tag":52,"props":1139,"children":1141},{"className":1140},[],[1142],{"type":43,"value":1143},"dynamic",{"type":43,"value":1145}," right operand now errors at compile time. Cast to concrete type or ",{"type":37,"tag":52,"props":1147,"children":1149},{"className":1148},[],[1150],{"type":43,"value":1143},{"type":43,"value":728},{"type":37,"tag":87,"props":1153,"children":1154},{},[1155,1160,1161,1167,1168,1174],{"type":37,"tag":68,"props":1156,"children":1157},{},[1158],{"type":43,"value":1159},"EF Core Cosmos sync I\u002FO removal",{"type":43,"value":1077},{"type":37,"tag":52,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":43,"value":1166},"ToList()",{"type":43,"value":233},{"type":37,"tag":52,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":43,"value":1173},"SaveChanges()",{"type":43,"value":1175},", etc. on Cosmos provider always throw. Convert to async equivalents.",{"type":37,"tag":87,"props":1177,"children":1178},{},[1179,1199,1201,1207,1209,1214,1216,1222],{"type":37,"tag":68,"props":1180,"children":1181},{},[1182,1184,1189,1191,1197],{"type":43,"value":1183},"SYSLIB0063: ",{"type":37,"tag":52,"props":1185,"children":1187},{"className":1186},[],[1188],{"type":43,"value":523},{"type":43,"value":1190}," ",{"type":37,"tag":52,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":43,"value":1196},"isConnected",{"type":43,"value":1198}," parameter obsoleted",{"type":43,"value":1200}," — The constructor overload taking ",{"type":37,"tag":52,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":43,"value":1206},"bool isConnected",{"type":43,"value":1208}," is obsoleted. Remove the ",{"type":37,"tag":52,"props":1210,"children":1212},{"className":1211},[],[1213],{"type":43,"value":1196},{"type":43,"value":1215}," argument and use the new 3-parameter constructor. Projects with ",{"type":37,"tag":52,"props":1217,"children":1219},{"className":1218},[],[1220],{"type":43,"value":1221},"TreatWarningsAsErrors",{"type":43,"value":1223}," will fail to build.",{"type":37,"tag":87,"props":1225,"children":1226},{},[1227,1238,1239,1245,1247,1252,1254,1259],{"type":37,"tag":68,"props":1228,"children":1229},{},[1230,1236],{"type":37,"tag":52,"props":1231,"children":1233},{"className":1232},[],[1234],{"type":43,"value":1235},"when",{"type":43,"value":1237}," switch-expression-arm parsing",{"type":43,"value":1077},{"type":37,"tag":52,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":43,"value":1244},"(X.Y) when",{"type":43,"value":1246}," is now parsed as a constant pattern with a ",{"type":37,"tag":52,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":43,"value":1235},{"type":43,"value":1253}," clause instead of a cast expression, which can cause existing code to fail to compile or change meaning. Review switch expressions using ",{"type":37,"tag":52,"props":1255,"children":1257},{"className":1256},[],[1258],{"type":43,"value":1235},{"type":43,"value":1260}," and adjust syntax as needed.",{"type":37,"tag":87,"props":1262,"children":1263},{},[1264,1269,1270,1276,1278,1283,1285,1290,1292,1298,1299,1305],{"type":37,"tag":68,"props":1265,"children":1266},{},[1267],{"type":43,"value":1268},"Microsoft.OpenApi v3 breaking changes",{"type":43,"value":1077},{"type":37,"tag":52,"props":1271,"children":1273},{"className":1272},[],[1274],{"type":43,"value":1275},"Microsoft.AspNetCore.OpenApi",{"type":43,"value":1277}," now depends on ",{"type":37,"tag":52,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":43,"value":561},{"type":43,"value":1284}," 3.x. Code using ",{"type":37,"tag":52,"props":1286,"children":1288},{"className":1287},[],[1289],{"type":43,"value":561},{"type":43,"value":1291}," types directly (",{"type":37,"tag":52,"props":1293,"children":1295},{"className":1294},[],[1296],{"type":43,"value":1297},"OpenApiDocument",{"type":43,"value":233},{"type":37,"tag":52,"props":1300,"children":1302},{"className":1301},[],[1303],{"type":43,"value":1304},"OpenApiSchema",{"type":43,"value":1306},", etc.) will have compile errors. Follow the v3 upgrade guide.",{"type":37,"tag":87,"props":1308,"children":1309},{},[1310,1315,1316,1322,1324,1330,1332,1338,1340,1346],{"type":37,"tag":68,"props":1311,"children":1312},{},[1313],{"type":43,"value":1314},"EF Core Design package no longer transitive",{"type":43,"value":1077},{"type":37,"tag":52,"props":1317,"children":1319},{"className":1318},[],[1320],{"type":43,"value":1321},"Microsoft.EntityFrameworkCore.Tools",{"type":43,"value":1323}," and ",{"type":37,"tag":52,"props":1325,"children":1327},{"className":1326},[],[1328],{"type":43,"value":1329},".Tasks",{"type":43,"value":1331}," no longer depend on ",{"type":37,"tag":52,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":43,"value":1337},".Design",{"type":43,"value":1339},". Add an explicit ",{"type":37,"tag":52,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":43,"value":1345},"PackageReference",{"type":43,"value":1347}," if needed.",{"type":37,"tag":87,"props":1349,"children":1350},{},[1351,1356,1358,1364,1365,1371],{"type":37,"tag":68,"props":1352,"children":1353},{},[1354],{"type":43,"value":1355},"EFOptimizeContext MSBuild property removed",{"type":43,"value":1357}," — Replace with ",{"type":37,"tag":52,"props":1359,"children":1361},{"className":1360},[],[1362],{"type":43,"value":1363},"\u003CEFScaffoldModelStage>",{"type":43,"value":1323},{"type":37,"tag":52,"props":1366,"children":1368},{"className":1367},[],[1369],{"type":43,"value":1370},"\u003CEFPrecompileQueriesStage>",{"type":43,"value":728},{"type":37,"tag":348,"props":1373,"children":1375},{"id":1374},"step-4-address-behavioral-changes",[1376],{"type":43,"value":1377},"Step 4: Address behavioral changes",{"type":37,"tag":46,"props":1379,"children":1380},{},[1381],{"type":43,"value":1382},"These changes compile successfully but alter runtime behavior. Review each one and determine impact:",{"type":37,"tag":355,"props":1384,"children":1385},{},[1386,1396,1406,1416,1433,1443,1453,1463,1489,1499,1517,1534,1559,1569,1587,1605,1615,1632],{"type":37,"tag":87,"props":1387,"children":1388},{},[1389,1394],{"type":37,"tag":68,"props":1390,"children":1391},{},[1392],{"type":43,"value":1393},"DeflateStream\u002FGZipStream empty payload",{"type":43,"value":1395}," — Now writes headers and footers even for empty payloads. If your code checks for zero-length output, update the check.",{"type":37,"tag":87,"props":1397,"children":1398},{},[1399,1404],{"type":37,"tag":68,"props":1400,"children":1401},{},[1402],{"type":43,"value":1403},"MemoryStream maximum capacity",{"type":43,"value":1405}," — Maximum capacity updated and exception behavior changed. Review code that creates large MemoryStreams or relies on specific exception types.",{"type":37,"tag":87,"props":1407,"children":1408},{},[1409,1414],{"type":37,"tag":68,"props":1410,"children":1411},{},[1412],{"type":43,"value":1413},"TAR header checksum validation",{"type":43,"value":1415}," — TAR-reading APIs now verify checksums. Corrupted or hand-crafted TAR files may now fail to read.",{"type":37,"tag":87,"props":1417,"children":1418},{},[1419,1424,1425,1431],{"type":37,"tag":68,"props":1420,"children":1421},{},[1422],{"type":43,"value":1423},"ZipArchive.CreateAsync eager loading",{"type":43,"value":1077},{"type":37,"tag":52,"props":1426,"children":1428},{"className":1427},[],[1429],{"type":43,"value":1430},"ZipArchive.CreateAsync",{"type":43,"value":1432}," eagerly loads entries. May affect memory usage for large archives.",{"type":37,"tag":87,"props":1434,"children":1435},{},[1436,1441],{"type":37,"tag":68,"props":1437,"children":1438},{},[1439],{"type":43,"value":1440},"Environment.TickCount consistency",{"type":43,"value":1442}," — Made consistent with Windows timeout behavior. Code relying on specific tick count behavior may need adjustment.",{"type":37,"tag":87,"props":1444,"children":1445},{},[1446,1451],{"type":37,"tag":68,"props":1447,"children":1448},{},[1449],{"type":43,"value":1450},"DSA removed from macOS",{"type":43,"value":1452}," — DSA cryptographic operations throw on macOS. Use a different algorithm (RSA, ECDSA).",{"type":37,"tag":87,"props":1454,"children":1455},{},[1456,1461],{"type":37,"tag":68,"props":1457,"children":1458},{},[1459],{"type":43,"value":1460},"Japanese Calendar minimum date",{"type":43,"value":1462}," — Minimum supported date corrected. Code using very early Japanese Calendar dates may be affected.",{"type":37,"tag":87,"props":1464,"children":1465},{},[1466,1471,1473,1479,1481,1487],{"type":37,"tag":68,"props":1467,"children":1468},{},[1469],{"type":43,"value":1470},"Minimum hardware requirements",{"type":43,"value":1472}," — x86\u002Fx64 baseline moved to ",{"type":37,"tag":52,"props":1474,"children":1476},{"className":1475},[],[1477],{"type":43,"value":1478},"x86-64-v2",{"type":43,"value":1480},"; Windows Arm64 requires ",{"type":37,"tag":52,"props":1482,"children":1484},{"className":1483},[],[1485],{"type":43,"value":1486},"LSE",{"type":43,"value":1488},". Verify deployment targets meet requirements.",{"type":37,"tag":87,"props":1490,"children":1491},{},[1492,1497],{"type":37,"tag":68,"props":1493,"children":1494},{},[1495],{"type":43,"value":1496},"Mono launch target for .NET Framework",{"type":43,"value":1498}," — No longer set automatically. If using Mono for .NET Framework apps on Linux, specify explicitly.",{"type":37,"tag":87,"props":1500,"children":1501},{},[1502,1507,1509,1515],{"type":37,"tag":68,"props":1503,"children":1504},{},[1505],{"type":43,"value":1506},"Unhandled BackgroundService exceptions stop the host",{"type":43,"value":1508}," — Exceptions from ",{"type":37,"tag":52,"props":1510,"children":1512},{"className":1511},[],[1513],{"type":43,"value":1514},"ExecuteAsync()",{"type":43,"value":1516}," now propagate and crash the host. Add try\u002Fcatch in background services that should not bring down the application.",{"type":37,"tag":87,"props":1518,"children":1519},{},[1520,1525,1527,1533],{"type":37,"tag":68,"props":1521,"children":1522},{},[1523],{"type":43,"value":1524},"ZipArchive CRC32 validation",{"type":43,"value":1526}," — ZIP reads now validate CRC32 checksums. Corrupt or truncated archives that previously succeeded will now throw ",{"type":37,"tag":52,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":43,"value":1532},"InvalidDataException",{"type":43,"value":728},{"type":37,"tag":87,"props":1535,"children":1536},{},[1537,1542,1544,1550,1552,1557],{"type":37,"tag":68,"props":1538,"children":1539},{},[1540],{"type":43,"value":1541},"TarWriter emits HardLink entries",{"type":43,"value":1543}," — Hard-linked files are now written as ",{"type":37,"tag":52,"props":1545,"children":1547},{"className":1546},[],[1548],{"type":43,"value":1549},"HardLink",{"type":43,"value":1551}," entries instead of duplicated data. Consumers of .NET-produced tar archives must handle ",{"type":37,"tag":52,"props":1553,"children":1555},{"className":1554},[],[1556],{"type":43,"value":1549},{"type":43,"value":1558}," entries.",{"type":37,"tag":87,"props":1560,"children":1561},{},[1562,1567],{"type":37,"tag":68,"props":1563,"children":1564},{},[1565],{"type":43,"value":1566},"AIA certificate downloads disabled",{"type":43,"value":1568}," — Server-side client-certificate validation no longer downloads intermediate CAs via AIA by default. Pre-install the full chain or have clients send intermediates.",{"type":37,"tag":87,"props":1570,"children":1571},{},[1572,1577,1579,1585],{"type":37,"tag":68,"props":1573,"children":1574},{},[1575],{"type":43,"value":1576},"Blazor Virtualize OverscanCount default changed",{"type":43,"value":1578}," — Default ",{"type":37,"tag":52,"props":1580,"children":1582},{"className":1581},[],[1583],{"type":43,"value":1584},"OverscanCount",{"type":43,"value":1586}," changed from 3 to 15. Set explicitly if performance-sensitive.",{"type":37,"tag":87,"props":1588,"children":1589},{},[1590,1595,1597,1603],{"type":37,"tag":68,"props":1591,"children":1592},{},[1593],{"type":43,"value":1594},"Microsoft.Data.SqlClient 7.0 — Entra ID auth separated",{"type":43,"value":1596}," — Azure\u002FEntra ID authentication dependencies removed from the core SqlClient package. Add ",{"type":37,"tag":52,"props":1598,"children":1600},{"className":1599},[],[1601],{"type":43,"value":1602},"Microsoft.Data.SqlClient.Extensions.Azure",{"type":43,"value":1604}," if using Entra ID auth.",{"type":37,"tag":87,"props":1606,"children":1607},{},[1608,1613],{"type":37,"tag":68,"props":1609,"children":1610},{},[1611],{"type":43,"value":1612},"SqlVector\u003CT> excluded from SELECT",{"type":43,"value":1614}," — Vector properties are no longer auto-loaded. Use explicit projections to include vector values.",{"type":37,"tag":87,"props":1616,"children":1617},{},[1618,1623,1624,1630],{"type":37,"tag":68,"props":1619,"children":1620},{},[1621],{"type":43,"value":1622},"SQLitePCLRaw encryption bundles removed",{"type":43,"value":1077},{"type":37,"tag":52,"props":1625,"children":1627},{"className":1626},[],[1628],{"type":43,"value":1629},"bundle_e_sqlcipher",{"type":43,"value":1631}," and other encryption bundle packages removed in SQLitePCLRaw 3.0.",{"type":37,"tag":87,"props":1633,"children":1634},{},[1635,1648,1650,1655,1657,1663],{"type":37,"tag":68,"props":1636,"children":1637},{},[1638,1640,1646],{"type":43,"value":1639},"NativeAOT Unix native library ",{"type":37,"tag":52,"props":1641,"children":1643},{"className":1642},[],[1644],{"type":43,"value":1645},"lib",{"type":43,"value":1647}," prefix",{"type":43,"value":1649}," — Output filenames now include ",{"type":37,"tag":52,"props":1651,"children":1653},{"className":1652},[],[1654],{"type":43,"value":1645},{"type":43,"value":1656}," prefix on Linux\u002FmacOS (e.g., ",{"type":37,"tag":52,"props":1658,"children":1660},{"className":1659},[],[1661],{"type":43,"value":1662},"libMyLib.so",{"type":43,"value":1664},").",{"type":37,"tag":348,"props":1666,"children":1668},{"id":1667},"step-5-update-infrastructure",[1669],{"type":43,"value":1670},"Step 5: Update infrastructure",{"type":37,"tag":355,"props":1672,"children":1673},{},[1674,1746,1882],{"type":37,"tag":87,"props":1675,"children":1676},{},[1677,1682,1684],{"type":37,"tag":68,"props":1678,"children":1679},{},[1680],{"type":43,"value":1681},"Dockerfiles",{"type":43,"value":1683},": Update base images from 10.0 to 11.0:",{"type":37,"tag":663,"props":1685,"children":1689},{"className":1686,"code":1687,"language":1688,"meta":668,"style":668},"language-dockerfile shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Before\nFROM mcr.microsoft.com\u002Fdotnet\u002Fsdk:10.0 AS build\nFROM mcr.microsoft.com\u002Fdotnet\u002Faspnet:10.0\n# After\nFROM mcr.microsoft.com\u002Fdotnet\u002Fsdk:11.0 AS build\nFROM mcr.microsoft.com\u002Fdotnet\u002Faspnet:11.0\n","dockerfile",[1690],{"type":37,"tag":52,"props":1691,"children":1692},{"__ignoreMap":668},[1693,1701,1710,1719,1728,1737],{"type":37,"tag":674,"props":1694,"children":1695},{"class":676,"line":677},[1696],{"type":37,"tag":674,"props":1697,"children":1698},{},[1699],{"type":43,"value":1700},"# Before\n",{"type":37,"tag":674,"props":1702,"children":1704},{"class":676,"line":1703},2,[1705],{"type":37,"tag":674,"props":1706,"children":1707},{},[1708],{"type":43,"value":1709},"FROM mcr.microsoft.com\u002Fdotnet\u002Fsdk:10.0 AS build\n",{"type":37,"tag":674,"props":1711,"children":1713},{"class":676,"line":1712},3,[1714],{"type":37,"tag":674,"props":1715,"children":1716},{},[1717],{"type":43,"value":1718},"FROM mcr.microsoft.com\u002Fdotnet\u002Faspnet:10.0\n",{"type":37,"tag":674,"props":1720,"children":1722},{"class":676,"line":1721},4,[1723],{"type":37,"tag":674,"props":1724,"children":1725},{},[1726],{"type":43,"value":1727},"# After\n",{"type":37,"tag":674,"props":1729,"children":1731},{"class":676,"line":1730},5,[1732],{"type":37,"tag":674,"props":1733,"children":1734},{},[1735],{"type":43,"value":1736},"FROM mcr.microsoft.com\u002Fdotnet\u002Fsdk:11.0 AS build\n",{"type":37,"tag":674,"props":1738,"children":1740},{"class":676,"line":1739},6,[1741],{"type":37,"tag":674,"props":1742,"children":1743},{},[1744],{"type":43,"value":1745},"FROM mcr.microsoft.com\u002Fdotnet\u002Faspnet:11.0\n",{"type":37,"tag":87,"props":1747,"children":1748},{},[1749,1754,1756,1762,1764,1770,1772,1778,1780],{"type":37,"tag":68,"props":1750,"children":1751},{},[1752],{"type":43,"value":1753},"CI\u002FCD pipelines",{"type":43,"value":1755},": Update SDK version references. If using ",{"type":37,"tag":52,"props":1757,"children":1759},{"className":1758},[],[1760],{"type":43,"value":1761},"global.json",{"type":43,"value":1763},", update the ",{"type":37,"tag":52,"props":1765,"children":1767},{"className":1766},[],[1768],{"type":43,"value":1769},"sdk.version",{"type":43,"value":1771}," in your existing file while preserving other keys (such as ",{"type":37,"tag":52,"props":1773,"children":1775},{"className":1774},[],[1776],{"type":43,"value":1777},"rollForward",{"type":43,"value":1779}," and test configuration):",{"type":37,"tag":663,"props":1781,"children":1785},{"className":1782,"code":1783,"language":1784,"meta":668,"style":668},"language-diff shiki shiki-themes material-theme-lighter material-theme material-theme-palenight"," {\n   \"sdk\": {\n-    \"version\": \"10.0.100\",\n-    \"rollForward\": \"latestFeature\"\n+    \"version\": \"11.0.100-preview.3\",\n+    \"rollForward\": \"latestFeature\"\n   },\n   \"otherSettings\": {\n     \"...\": \"...\"\n   }\n }\n","diff",[1786],{"type":37,"tag":52,"props":1787,"children":1788},{"__ignoreMap":668},[1789,1797,1805,1813,1821,1829,1837,1846,1855,1864,1873],{"type":37,"tag":674,"props":1790,"children":1791},{"class":676,"line":677},[1792],{"type":37,"tag":674,"props":1793,"children":1794},{},[1795],{"type":43,"value":1796}," {\n",{"type":37,"tag":674,"props":1798,"children":1799},{"class":676,"line":1703},[1800],{"type":37,"tag":674,"props":1801,"children":1802},{},[1803],{"type":43,"value":1804},"   \"sdk\": {\n",{"type":37,"tag":674,"props":1806,"children":1807},{"class":676,"line":1712},[1808],{"type":37,"tag":674,"props":1809,"children":1810},{},[1811],{"type":43,"value":1812},"-    \"version\": \"10.0.100\",\n",{"type":37,"tag":674,"props":1814,"children":1815},{"class":676,"line":1721},[1816],{"type":37,"tag":674,"props":1817,"children":1818},{},[1819],{"type":43,"value":1820},"-    \"rollForward\": \"latestFeature\"\n",{"type":37,"tag":674,"props":1822,"children":1823},{"class":676,"line":1730},[1824],{"type":37,"tag":674,"props":1825,"children":1826},{},[1827],{"type":43,"value":1828},"+    \"version\": \"11.0.100-preview.3\",\n",{"type":37,"tag":674,"props":1830,"children":1831},{"class":676,"line":1739},[1832],{"type":37,"tag":674,"props":1833,"children":1834},{},[1835],{"type":43,"value":1836},"+    \"rollForward\": \"latestFeature\"\n",{"type":37,"tag":674,"props":1838,"children":1840},{"class":676,"line":1839},7,[1841],{"type":37,"tag":674,"props":1842,"children":1843},{},[1844],{"type":43,"value":1845},"   },\n",{"type":37,"tag":674,"props":1847,"children":1849},{"class":676,"line":1848},8,[1850],{"type":37,"tag":674,"props":1851,"children":1852},{},[1853],{"type":43,"value":1854},"   \"otherSettings\": {\n",{"type":37,"tag":674,"props":1856,"children":1858},{"class":676,"line":1857},9,[1859],{"type":37,"tag":674,"props":1860,"children":1861},{},[1862],{"type":43,"value":1863},"     \"...\": \"...\"\n",{"type":37,"tag":674,"props":1865,"children":1867},{"class":676,"line":1866},10,[1868],{"type":37,"tag":674,"props":1869,"children":1870},{},[1871],{"type":43,"value":1872},"   }\n",{"type":37,"tag":674,"props":1874,"children":1876},{"class":676,"line":1875},11,[1877],{"type":37,"tag":674,"props":1878,"children":1879},{},[1880],{"type":43,"value":1881}," }\n",{"type":37,"tag":87,"props":1883,"children":1884},{},[1885,1890],{"type":37,"tag":68,"props":1886,"children":1887},{},[1888],{"type":43,"value":1889},"Hardware deployment targets",{"type":43,"value":1891},": Verify all deployment targets meet the updated minimum hardware requirements (x86-64-v2 for x86\u002Fx64, LSE for Windows Arm64).",{"type":37,"tag":348,"props":1893,"children":1895},{"id":1894},"step-6-verify",[1896],{"type":43,"value":1897},"Step 6: Verify",{"type":37,"tag":355,"props":1899,"children":1900},{},[1901,1911,1921,1926,1984],{"type":37,"tag":87,"props":1902,"children":1903},{},[1904,1906],{"type":43,"value":1905},"Run a full clean build: ",{"type":37,"tag":52,"props":1907,"children":1909},{"className":1908},[],[1910],{"type":43,"value":608},{"type":37,"tag":87,"props":1912,"children":1913},{},[1914,1916],{"type":43,"value":1915},"Run all tests: ",{"type":37,"tag":52,"props":1917,"children":1919},{"className":1918},[],[1920],{"type":43,"value":298},{"type":37,"tag":87,"props":1922,"children":1923},{},[1924],{"type":43,"value":1925},"If the application is containerized, build and test the container image",{"type":37,"tag":87,"props":1927,"children":1928},{},[1929,1931],{"type":43,"value":1930},"Smoke-test the application, paying special attention to:\n",{"type":37,"tag":83,"props":1932,"children":1933},{},[1934,1939,1944,1949,1954,1959,1964,1969,1974,1979],{"type":37,"tag":87,"props":1935,"children":1936},{},[1937],{"type":43,"value":1938},"Compression behavior with empty streams",{"type":37,"tag":87,"props":1940,"children":1941},{},[1942],{"type":43,"value":1943},"TAR file reading (checksum validation and HardLink entries)",{"type":37,"tag":87,"props":1945,"children":1946},{},[1947],{"type":43,"value":1948},"EF Core Cosmos DB operations (must be async)",{"type":37,"tag":87,"props":1950,"children":1951},{},[1952],{"type":43,"value":1953},"DSA usage on macOS",{"type":37,"tag":87,"props":1955,"children":1956},{},[1957],{"type":43,"value":1958},"Memory-intensive MemoryStream usage",{"type":37,"tag":87,"props":1960,"children":1961},{},[1962],{"type":43,"value":1963},"Span collection expression assignments",{"type":37,"tag":87,"props":1965,"children":1966},{},[1967],{"type":43,"value":1968},"BackgroundService exception handling",{"type":37,"tag":87,"props":1970,"children":1971},{},[1972],{"type":43,"value":1973},"mTLS \u002F client certificate chain validation",{"type":37,"tag":87,"props":1975,"children":1976},{},[1977],{"type":43,"value":1978},"EF Core SQL Server with Entra ID authentication",{"type":37,"tag":87,"props":1980,"children":1981},{},[1982],{"type":43,"value":1983},"NativeAOT output filenames on Unix",{"type":37,"tag":87,"props":1985,"children":1986},{},[1987],{"type":43,"value":1988},"Review the diff and ensure no unintended behavioral changes were introduced",{"type":37,"tag":76,"props":1990,"children":1992},{"id":1991},"reference-documents",[1993],{"type":43,"value":1994},"Reference Documents",{"type":37,"tag":46,"props":1996,"children":1997},{},[1998,1999,2005],{"type":43,"value":225},{"type":37,"tag":52,"props":2000,"children":2002},{"className":2001},[],[2003],{"type":43,"value":2004},"references\u002F",{"type":43,"value":2006}," folder contains detailed breaking change information organized by technology area. Load only the references relevant to the project being migrated:",{"type":37,"tag":176,"props":2008,"children":2009},{},[2010,2024],{"type":37,"tag":180,"props":2011,"children":2012},{},[2013],{"type":37,"tag":184,"props":2014,"children":2015},{},[2016,2020],{"type":37,"tag":188,"props":2017,"children":2018},{},[2019],{"type":43,"value":810},{"type":37,"tag":188,"props":2021,"children":2022},{},[2023],{"type":43,"value":815},{"type":37,"tag":204,"props":2025,"children":2026},{},[2027,2042,2057,2072,2087,2102,2117],{"type":37,"tag":184,"props":2028,"children":2029},{},[2030,2038],{"type":37,"tag":211,"props":2031,"children":2032},{},[2033],{"type":37,"tag":52,"props":2034,"children":2036},{"className":2035},[],[2037],{"type":43,"value":830},{"type":37,"tag":211,"props":2039,"children":2040},{},[2041],{"type":43,"value":835},{"type":37,"tag":184,"props":2043,"children":2044},{},[2045,2053],{"type":37,"tag":211,"props":2046,"children":2047},{},[2048],{"type":37,"tag":52,"props":2049,"children":2051},{"className":2050},[],[2052],{"type":43,"value":847},{"type":37,"tag":211,"props":2054,"children":2055},{},[2056],{"type":43,"value":852},{"type":37,"tag":184,"props":2058,"children":2059},{},[2060,2068],{"type":37,"tag":211,"props":2061,"children":2062},{},[2063],{"type":37,"tag":52,"props":2064,"children":2066},{"className":2065},[],[2067],{"type":43,"value":864},{"type":37,"tag":211,"props":2069,"children":2070},{},[2071],{"type":43,"value":869},{"type":37,"tag":184,"props":2073,"children":2074},{},[2075,2083],{"type":37,"tag":211,"props":2076,"children":2077},{},[2078],{"type":37,"tag":52,"props":2079,"children":2081},{"className":2080},[],[2082],{"type":43,"value":881},{"type":37,"tag":211,"props":2084,"children":2085},{},[2086],{"type":43,"value":886},{"type":37,"tag":184,"props":2088,"children":2089},{},[2090,2098],{"type":37,"tag":211,"props":2091,"children":2092},{},[2093],{"type":37,"tag":52,"props":2094,"children":2096},{"className":2095},[],[2097],{"type":43,"value":898},{"type":37,"tag":211,"props":2099,"children":2100},{},[2101],{"type":43,"value":903},{"type":37,"tag":184,"props":2103,"children":2104},{},[2105,2113],{"type":37,"tag":211,"props":2106,"children":2107},{},[2108],{"type":37,"tag":52,"props":2109,"children":2111},{"className":2110},[],[2112],{"type":43,"value":915},{"type":37,"tag":211,"props":2114,"children":2115},{},[2116],{"type":43,"value":920},{"type":37,"tag":184,"props":2118,"children":2119},{},[2120,2128],{"type":37,"tag":211,"props":2121,"children":2122},{},[2123],{"type":37,"tag":52,"props":2124,"children":2126},{"className":2125},[],[2127],{"type":43,"value":932},{"type":37,"tag":211,"props":2129,"children":2130},{},[2131],{"type":43,"value":937},{"type":37,"tag":2133,"props":2134,"children":2135},"style",{},[2136],{"type":43,"value":2137},"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":2139,"total":2304},[2140,2156,2171,2186,2204,2218,2238,2248,2260,2270,2283,2294],{"slug":2141,"name":2141,"fn":2142,"description":2143,"org":2144,"tags":2145,"stars":2153,"repoUrl":2154,"updatedAt":2155},"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},[2146,2147,2150],{"name":13,"slug":14,"type":15},{"name":2148,"slug":2149,"type":15},"Engineering","engineering",{"name":2151,"slug":2152,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":2157,"name":2157,"fn":2158,"description":2159,"org":2160,"tags":2161,"stars":19,"repoUrl":20,"updatedAt":2170},"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},[2162,2163,2166,2169],{"name":13,"slug":14,"type":15},{"name":2164,"slug":2165,"type":15},"Code Analysis","code-analysis",{"name":2167,"slug":2168,"type":15},"Debugging","debugging",{"name":2151,"slug":2152,"type":15},"2026-07-12T08:23:25.400375",{"slug":2172,"name":2172,"fn":2173,"description":2174,"org":2175,"tags":2176,"stars":19,"repoUrl":20,"updatedAt":2185},"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},[2177,2178,2181,2182],{"name":13,"slug":14,"type":15},{"name":2179,"slug":2180,"type":15},"Android","android",{"name":2167,"slug":2168,"type":15},{"name":2183,"slug":2184,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":2187,"name":2187,"fn":2188,"description":2189,"org":2190,"tags":2191,"stars":19,"repoUrl":20,"updatedAt":2203},"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},[2192,2193,2194,2197,2200],{"name":13,"slug":14,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2195,"slug":2196,"type":15},"iOS","ios",{"name":2198,"slug":2199,"type":15},"macOS","macos",{"name":2201,"slug":2202,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":2205,"name":2205,"fn":2206,"description":2207,"org":2208,"tags":2209,"stars":19,"repoUrl":20,"updatedAt":2217},"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},[2210,2211,2214],{"name":2164,"slug":2165,"type":15},{"name":2212,"slug":2213,"type":15},"QA","qa",{"name":2215,"slug":2216,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":2219,"name":2219,"fn":2220,"description":2221,"org":2222,"tags":2223,"stars":19,"repoUrl":20,"updatedAt":2237},"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},[2224,2225,2228,2231,2234],{"name":13,"slug":14,"type":15},{"name":2226,"slug":2227,"type":15},"Blazor","blazor",{"name":2229,"slug":2230,"type":15},"C#","csharp",{"name":2232,"slug":2233,"type":15},"UI Components","ui-components",{"name":2235,"slug":2236,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":2239,"name":2239,"fn":2240,"description":2241,"org":2242,"tags":2243,"stars":19,"repoUrl":20,"updatedAt":2247},"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},[2244,2245,2246],{"name":2164,"slug":2165,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2183,"slug":2184,"type":15},"2026-07-12T08:21:34.637923",{"slug":2249,"name":2249,"fn":2250,"description":2251,"org":2252,"tags":2253,"stars":19,"repoUrl":20,"updatedAt":2259},"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},[2254,2257,2258],{"name":2255,"slug":2256,"type":15},"Build","build",{"name":2167,"slug":2168,"type":15},{"name":2148,"slug":2149,"type":15},"2026-07-19T05:38:19.340791",{"slug":2261,"name":2261,"fn":2262,"description":2263,"org":2264,"tags":2265,"stars":19,"repoUrl":20,"updatedAt":2269},"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},[2266,2267,2268],{"name":13,"slug":14,"type":15},{"name":2148,"slug":2149,"type":15},{"name":2151,"slug":2152,"type":15},"2026-07-19T05:38:18.364937",{"slug":2271,"name":2271,"fn":2272,"description":2273,"org":2274,"tags":2275,"stars":19,"repoUrl":20,"updatedAt":2282},"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},[2276,2277,2280,2281],{"name":2148,"slug":2149,"type":15},{"name":2278,"slug":2279,"type":15},"Monitoring","monitoring",{"name":2151,"slug":2152,"type":15},{"name":2215,"slug":2216,"type":15},"2026-07-12T08:21:35.865649",{"slug":2284,"name":2284,"fn":2285,"description":2286,"org":2287,"tags":2288,"stars":19,"repoUrl":20,"updatedAt":2293},"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},[2289,2290,2291,2292],{"name":13,"slug":14,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2148,"slug":2149,"type":15},{"name":2151,"slug":2152,"type":15},"2026-07-12T08:21:40.961722",{"slug":2295,"name":2295,"fn":2296,"description":2297,"org":2298,"tags":2299,"stars":19,"repoUrl":20,"updatedAt":2303},"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},[2300,2301,2302],{"name":2167,"slug":2168,"type":15},{"name":2148,"slug":2149,"type":15},{"name":2212,"slug":2213,"type":15},"2026-07-19T05:38:14.336279",144,{"items":2306,"total":2355},[2307,2314,2321,2329,2335,2343,2349],{"slug":2157,"name":2157,"fn":2158,"description":2159,"org":2308,"tags":2309,"stars":19,"repoUrl":20,"updatedAt":2170},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2310,2311,2312,2313],{"name":13,"slug":14,"type":15},{"name":2164,"slug":2165,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2151,"slug":2152,"type":15},{"slug":2172,"name":2172,"fn":2173,"description":2174,"org":2315,"tags":2316,"stars":19,"repoUrl":20,"updatedAt":2185},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2317,2318,2319,2320],{"name":13,"slug":14,"type":15},{"name":2179,"slug":2180,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2183,"slug":2184,"type":15},{"slug":2187,"name":2187,"fn":2188,"description":2189,"org":2322,"tags":2323,"stars":19,"repoUrl":20,"updatedAt":2203},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2324,2325,2326,2327,2328],{"name":13,"slug":14,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2195,"slug":2196,"type":15},{"name":2198,"slug":2199,"type":15},{"name":2201,"slug":2202,"type":15},{"slug":2205,"name":2205,"fn":2206,"description":2207,"org":2330,"tags":2331,"stars":19,"repoUrl":20,"updatedAt":2217},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2332,2333,2334],{"name":2164,"slug":2165,"type":15},{"name":2212,"slug":2213,"type":15},{"name":2215,"slug":2216,"type":15},{"slug":2219,"name":2219,"fn":2220,"description":2221,"org":2336,"tags":2337,"stars":19,"repoUrl":20,"updatedAt":2237},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2338,2339,2340,2341,2342],{"name":13,"slug":14,"type":15},{"name":2226,"slug":2227,"type":15},{"name":2229,"slug":2230,"type":15},{"name":2232,"slug":2233,"type":15},{"name":2235,"slug":2236,"type":15},{"slug":2239,"name":2239,"fn":2240,"description":2241,"org":2344,"tags":2345,"stars":19,"repoUrl":20,"updatedAt":2247},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2346,2347,2348],{"name":2164,"slug":2165,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2183,"slug":2184,"type":15},{"slug":2249,"name":2249,"fn":2250,"description":2251,"org":2350,"tags":2351,"stars":19,"repoUrl":20,"updatedAt":2259},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2352,2353,2354],{"name":2255,"slug":2256,"type":15},{"name":2167,"slug":2168,"type":15},{"name":2148,"slug":2149,"type":15},96]