What problem does it solve? Upgrading a project from .NET 10 to .NET 11 introduces source-breaking, behavioral, and binary-incompatible changes across the runtime, C# 15 compiler, ASP.NET Core, and EF Core. This Skill systematically guides the migration so the project targets net11.0, builds cleanly, and passes tests without missing hidden behavioral changes. ## Core Features & Use Cases - Structured six-step migration workflow: Assess the project, update the TargetFramework, fix compilation errors, address behavioral changes, update infrastructure (Dockerfiles, CI/CD, global.json), and verify with clean builds and tests. - Comprehensive breaking-change references: Seven reference documents covering C# 15 compiler changes, core libraries, SDK/MSBuild, ASP.NET Core, EF Core, cryptography, and runtime/JIT hardware requirements, loaded on demand based on project type. - Use Case: You update your SDK to .NET 11 and your solution fails to build with SYSLIB0063 warnings and EF Core Cosmos sync I/O errors. This Skill identifies each applicable breaking change and provides concrete fixes, such as removing the obsoleted isConnected parameter and converting synchronous Cosmos calls to async equivalents. ## Quick Start Ask the AI to migrate your .NET 10 solution to .NET 11 by pointing it at your .csproj, .sln, or .slnx file and letting it detect the build and test commands automatically.