
Migrate .NET 10 to .NET 11
FreeSeamlessly upgrade your .NET 10 projects to .NET 11.
Free · Opens the source repo
What Migrate .NET 10 to .NET 11 does
The Migrate .NET 10 to .NET 11 skill provides a systematic approach to upgrading existing .NET 10 projects to the latest .NET 11 framework. This skill is designed specifically for developers who need to address breaking changes introduced in .NET 11, ensuring that their projects build cleanly and function correctly after the upgrade. It guides users through the process of updating the TargetFramework, resolving build errors, and adapting to behavioral changes in the runtime and associated libraries.
This skill is particularly useful when migrating projects that rely on ASP.NET Core, Entity Framework Core, or other .NET libraries, as it includes detailed instructions for identifying and fixing common issues that arise during the migration process. It also covers necessary updates to CI/CD pipelines and Dockerfiles, making it a comprehensive solution for modern development workflows. By following the outlined steps, developers can ensure that their applications are not only compatible with .NET 11 but also optimized for its new features and improvements.
The Migrate .NET 10 to .NET 11 skill is ideal for teams looking to stay current with the latest .NET developments while minimizing disruption to their existing projects. It provides a clear pathway for upgrading, reducing the risk of encountering unexpected issues and allowing developers to focus on enhancing their applications rather than troubleshooting migration problems.
When to use it
Use this skill when you need to upgrade an existing .NET 10 project to .NET 11 and resolve any related issues.
When not to use it
Do not use this skill for projects already targeting .NET 11, for migrations from .NET Framework, or for new projects starting on .NET 11.
What you can build with it
Upgrading a Web Application
Use this skill to upgrade an ASP.NET Core web application from .NET 10 to .NET 11, ensuring all dependencies are updated.
Migrating a Data-Driven App
Migrate an EF Core application to .NET 11, resolving any database-related breaking changes in the process.
Updating CI/CD Pipelines
Utilize this skill to adapt your CI/CD pipelines for .NET 11, ensuring smooth deployment after migration.
How to install Migrate .NET 10 to .NET 11
View source1. Install with the skills CLI
npx skills add dotnet/skills/migrate-dotnet10-to-dotnet11 --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by dotnet.NET 10 → .NET 11 Migration
Migrate 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.
Note: .NET 11 is currently in preview. This skill covers breaking changes documented through Preview 3.
When to Use
- Upgrading
TargetFrameworkfromnet10.0tonet11.0 - Resolving build errors or new warnings after updating the .NET 11 SDK
- Adapting to behavioral changes in .NET 11 runtime, ASP.NET Core 11, or EF Core 11
- Updating CI/CD pipelines, Dockerfiles, or deployment scripts for .NET 11
- Fixing C# 15 compiler breaking changes after SDK upgrade
When Not to Use
- The project already targets
net11.0and builds cleanly — migration is done - Upgrading from .NET 9 or earlier — address the .NET 9→10 breaking changes first
- Migrating from .NET Framework — that is a separate, larger effort
- Greenfield projects that start on .NET 11 (no migration needed)
Inputs
| Input | Required | Description |
|---|---|---|
| Project or solution path | Yes | The .csproj, .sln, or .slnx entry point to migrate |
| Build command | No | How to build (e.g., dotnet build, a repo build script). Auto-detect if not provided |
| Test command | No | How to run tests (e.g., dotnet test). Auto-detect if not provided |
| 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 |
Workflow
Answer directly from the loaded reference documents for information about .NET 11 breaking changes. You may inspect the local repository (project/solution files, source code, configuration, build/test 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.
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.
Step 1: Assess the project
- Identify how the project is built and tested. Look for build scripts,
.sln/.slnxfiles, or individual.csprojfiles. - Run
dotnet --versionto confirm the .NET 11 SDK is installed. If it is not, stop and inform the user. - Determine which technology areas the project uses by examining:
- SDK attribute:
Microsoft.NET.Sdk.Web→ ASP.NET Core;Microsoft.NET.Sdk.WindowsDesktopwith<UseWPF>or<UseWindowsForms>→ WPF/WinForms - PackageReferences:
Microsoft.EntityFrameworkCore.*→ EF Core;Microsoft.EntityFrameworkCore.Cosmos→ Cosmos DB provider - Dockerfile presence → Container changes relevant
- Cryptography API usage → DSA on macOS affected; AIA cert download changes relevant
- Compression API usage → DeflateStream/GZipStream/ZipArchive changes relevant
- TAR API usage → Header checksum validation and HardLink entry changes relevant
NamedPipeClientStreamusage withSafePipeHandle→ SYSLIB0063 constructor obsoletion relevantBackgroundServiceusage → Unhandled exceptions now stop the hostMicrosoft.OpenApidirect usage → v3 API breaking changes in ASP.NET Core OpenAPI- EF Core SQL Server with Entra ID auth → SqlClient 7.0 auth dependency changes
- NativeAOT native libraries on Unix → Output filename prefix changed
- SDK attribute:
- Record which reference documents are relevant (see the reference loading table in Step 3).
- Do a clean build (
dotnet build --no-incrementalor deletebin/obj) on the currentnet10.0target to establish a clean baseline. Record any pre-existing warnings.
Step 2: Update the Target Framework
-
In each
.csproj(orDirectory.Build.propsif centralized), change:<TargetFramework>net10.0</TargetFramework>to:
<TargetFramework>net11.0</TargetFramework>For multi-targeted projects, add
net11.0to<TargetFrameworks>or replacenet10.0. -
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. -
Run
dotnet restore. Fix any restore errors before continuing. -
Run
dotnet build. Capture all errors and warnings — these will be addressed in Step 3.
Step 3: Fix source-breaking and compilation changes
Load reference documents based on the project's technology areas:
| Reference file | When to load |
|---|---|
references/csharp-compiler-dotnet10to11.md | Always (C# 15 compiler breaking changes) |
references/core-libraries-dotnet10to11.md | Always (applies to all .NET 11 projects) |
references/sdk-msbuild-dotnet10to11.md | Always (SDK and build tooling changes) |
references/aspnetcore-dotnet10to11.md | Project uses ASP.NET Core (OpenAPI, Blazor) |
references/efcore-dotnet10to11.md | Project uses Entity Framework Core |
references/cryptography-dotnet10to11.md | Project uses cryptography APIs, mTLS, or targets macOS |
references/runtime-jit-dotnet10to11.md | Deploying to older hardware, embedded devices, or using NativeAOT |
Work through each build error systematically. Common patterns:
-
C# 15 Span collection expression safe-context — Collection expressions of
Span<T>/ReadOnlySpan<T>type now havedeclaration-blocksafe-context. Code assigning span collection expressions to variables in outer scopes will error. Use array type or move the expression to the correct scope. -
ref readonlydelegates/local functions needInAttribute— If synthesizing delegates fromref readonly-returning methods or usingref readonlylocal functions, ensureSystem.Runtime.InteropServices.InAttributeis available. -
nameof(this.)in attributes — Removethis.qualifier; usenameof(P)instead ofnameof(this.P). -
with()in collection expressions (C# 15) —with(...)is now treated as constructor arguments, not a method call. Use@with(...)to call a method namedwith. -
Dynamic
&&/||with interface operand — Interface types as left operand of&&/||withdynamicright operand now errors at compile time. Cast to concrete type ordynamic. -
EF Core Cosmos sync I/O removal —
ToList(),SaveChanges(), etc. on Cosmos provider always throw. Convert to async equivalents. -
SYSLIB0063:
NamedPipeClientStreamisConnectedparameter obsoleted — The constructor overload takingbool isConnectedis obsoleted. Remove theisConnectedargument and use the new 3-parameter constructor. Projects withTreatWarningsAsErrorswill fail to build. -
whenswitch-expression-arm parsing —(X.Y) whenis now parsed as a constant pattern with awhenclause instead of a cast expression, which can cause existing code to fail to compile or change meaning. Review switch expressions usingwhenand adjust syntax as needed. -
Microsoft.OpenApi v3 breaking changes —
Microsoft.AspNetCore.OpenApinow depends onMicrosoft.OpenApi3.x. Code usingMicrosoft.OpenApitypes directly (OpenApiDocument,OpenApiSchema, etc.) will have compile errors. Follow the v3 upgrade guide. -
EF Core Design package no longer transitive —
Microsoft.EntityFrameworkCore.Toolsand.Tasksno longer depend on.Design. Add an explicitPackageReferenceif needed. -
EFOptimizeContext MSBuild property removed — Replace with
<EFScaffoldModelStage>and<EFPrecompileQueriesStage>.
Step 4: Address behavioral changes
These changes compile successfully but alter runtime behavior. Review each one and determine impact:
-
DeflateStream/GZipStream empty payload — Now writes headers and footers even for empty payloads. If your code checks for zero-length output, update the check.
-
MemoryStream maximum capacity — Maximum capacity updated and exception behavior changed. Review code that creates large MemoryStreams or relies on specific exception types.
-
TAR header checksum validation — TAR-reading APIs now verify checksums. Corrupted or hand-crafted TAR files may now fail to read.
-
ZipArchive.CreateAsync eager loading —
ZipArchive.CreateAsynceagerly loads entries. May affect memory usage for large archives. -
Environment.TickCount consistency — Made consistent with Windows timeout behavior. Code relying on specific tick count behavior may need adjustment.
-
DSA removed from macOS — DSA cryptographic operations throw on macOS. Use a different algorithm (RSA, ECDSA).
-
Japanese Calendar minimum date — Minimum supported date corrected. Code using very early Japanese Calendar dates may be affected.
-
Minimum hardware requirements — x86/x64 baseline moved to
x86-64-v2; Windows Arm64 requiresLSE. Verify deployment targets meet requirements. -
Mono launch target for .NET Framework — No longer set automatically. If using Mono for .NET Framework apps on Linux, specify explicitly.
-
Unhandled BackgroundService exceptions stop the host — Exceptions from
ExecuteAsync()now propagate and crash the host. Add try/catch in background services that should not bring down the application. -
ZipArchive CRC32 validation — ZIP reads now validate CRC32 checksums. Corrupt or truncated archives that previously succeeded will now throw
InvalidDataException. -
TarWriter emits HardLink entries — Hard-linked files are now written as
HardLinkentries instead of duplicated data. Consumers of .NET-produced tar archives must handleHardLinkentries. -
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.
-
Blazor Virtualize OverscanCount default changed — Default
OverscanCountchanged from 3 to 15. Set explicitly if performance-sensitive. -
Microsoft.Data.SqlClient 7.0 — Entra ID auth separated — Azure/Entra ID authentication dependencies removed from the core SqlClient package. Add
Microsoft.Data.SqlClient.Extensions.Azureif using Entra ID auth. -
SqlVector<T> excluded from SELECT — Vector properties are no longer auto-loaded. Use explicit projections to include vector values.
-
SQLitePCLRaw encryption bundles removed —
bundle_e_sqlcipherand other encryption bundle packages removed in SQLitePCLRaw 3.0. -
NativeAOT Unix native library
libprefix — Output filenames now includelibprefix on Linux/macOS (e.g.,libMyLib.so).
Step 5: Update infrastructure
-
Dockerfiles: Update base images from 10.0 to 11.0:
# Before FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build FROM mcr.microsoft.com/dotnet/aspnet:10.0 # After FROM mcr.microsoft.com/dotnet/sdk:11.0 AS build FROM mcr.microsoft.com/dotnet/aspnet:11.0 -
CI/CD pipelines: Update SDK version references. If using
global.json, update thesdk.versionin your existing file while preserving other keys (such asrollForwardand test configuration):{ "sdk": { - "version": "10.0.100", - "rollForward": "latestFeature" + "version": "11.0.100-preview.3", + "rollForward": "latestFeature" }, "otherSettings": { "...": "..." } } -
Hardware deployment targets: Verify all deployment targets meet the updated minimum hardware requirements (x86-64-v2 for x86/x64, LSE for Windows Arm64).
Step 6: Verify
- Run a full clean build:
dotnet build --no-incremental - Run all tests:
dotnet test - If the application is containerized, build and test the container image
- Smoke-test the application, paying special attention to:
- Compression behavior with empty streams
- TAR file reading (checksum validation and HardLink entries)
- EF Core Cosmos DB operations (must be async)
- DSA usage on macOS
- Memory-intensive MemoryStream usage
- Span collection expression assignments
- BackgroundService exception handling
- mTLS / client certificate chain validation
- EF Core SQL Server with Entra ID authentication
- NativeAOT output filenames on Unix
- Review the diff and ensure no unintended behavioral changes were introduced
Reference Documents
The references/ folder contains detailed breaking change information organized by technology area. Load only the references relevant to the project being migrated:
| Reference file | When to load |
|---|---|
references/csharp-compiler-dotnet10to11.md | Always (C# 15 compiler breaking changes) |
references/core-libraries-dotnet10to11.md | Always (applies to all .NET 11 projects) |
references/sdk-msbuild-dotnet10to11.md | Always (SDK and build tooling changes) |
references/aspnetcore-dotnet10to11.md | Project uses ASP.NET Core (OpenAPI, Blazor) |
references/efcore-dotnet10to11.md | Project uses Entity Framework Core |
references/cryptography-dotnet10to11.md | Project uses cryptography APIs, mTLS, or targets macOS |
references/runtime-jit-dotnet10to11.md | Deploying to older hardware, embedded devices, or using NativeAOT |
Frequently asked questions about Migrate .NET 10 to .NET 11
Similar skills
React Composition Patterns
Streamline your React component architecture with proven patterns.
Pester Should Migration
Easily convert Pester v5 assertions to v6 syntax.
Radix to Base UI Migration
Seamlessly migrate React components from Radix UI to Base UI.
Migrate Next.js to Vinext
Seamlessly transition your Next.js projects to Vinext.
WinUI 3 Migration Guide
Streamline your UWP to WinUI 3 migration process.
Refactor
Enhance code maintainability without altering behavior.
