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/CD 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.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionmigrate-dotnet10-to-dotnet11Execute the skills CLI command in your project's root directory to begin installation:
Fetches migrate-dotnet10-to-dotnet11 from dotnet/skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate migrate-dotnet10-to-dotnet11. Access via /migrate-dotnet10-to-dotnet11 in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
2.6K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
2.6K
stars
| name | migrate-dotnet10-to-dotnet11 |
| description | > 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/CD 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. |
| license | MIT |
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.
TargetFramework from net10.0 to net11.0net11.0 and builds cleanly — migration is done| 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 |
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.
.sln/.slnx files, or individual .csproj files.dotnet --version to confirm the .NET 11 SDK is installed. If it is not, stop and inform the user.Microsoft.NET.Sdk.Web → ASP.NET Core; Microsoft.NET.Sdk.WindowsDesktop with <UseWPF> or <UseWindowsForms> → WPF/WinFormsMicrosoft.EntityFrameworkCore.* → EF Core; Microsoft.EntityFrameworkCore.Cosmos → Cosmos DB providerNamedPipeClientStream usage with SafePipeHandle → SYSLIB0063 constructor obsoletion relevantBackgroundService usage → Unhandled exceptions now stop the hostMicrosoft.OpenApi direct usage → v3 API breaking changes in ASP.NET Core OpenAPIdotnet build --no-incremental or delete bin/obj) on the current net10.0 target to establish a clean baseline. Record any pre-existing warnings.In each .csproj (or Directory.Build.props if centralized), change:
<TargetFramework>net10.0</TargetFramework>
to:
<TargetFramework>net11.0</TargetFramework>
For multi-targeted projects, add net11.0 to <TargetFrameworks> or replace net10.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.
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 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.
ref readonly delegates/local functions need InAttribute — If synthesizing delegates from ref readonly-returning methods or using ref readonly local functions, ensure System.Runtime.InteropServices.InAttribute is available.
nameof(this.) in attributes — Remove this. qualifier; use nameof(P) instead of nameof(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 named with.
Dynamic &&/|| with interface operand — Interface types as left operand of &&/|| with dynamic right operand now errors at compile time. Cast to concrete type or dynamic.
EF Core Cosmos sync I/O removal — ToList(), SaveChanges(), etc. on Cosmos provider always throw. Convert to async equivalents.
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.
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.
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.
EF Core Design package no longer transitive — Microsoft.EntityFrameworkCore.Tools and .Tasks no longer depend on .Design. Add an explicit PackageReference if needed.
EFOptimizeContext MSBuild property removed — Replace with <EFScaffoldModelStage> and <EFPrecompileQueriesStage>.
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.CreateAsync eagerly 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 requires LSE. 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 HardLink entries instead of duplicated data. Consumers of .NET-produced tar archives must handle HardLink entries.
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 OverscanCount changed 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.Azure if 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_sqlcipher and other encryption bundle packages removed in SQLitePCLRaw 3.0.
NativeAOT Unix native library lib prefix — Output filenames now include lib prefix on Linux/macOS (e.g., libMyLib.so).
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 the sdk.version in your existing file while preserving other keys (such as rollForward and 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).
dotnet build --no-incrementaldotnet testThe 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 |
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
dotnet/skills
dotnet/skills
dotnet/skills
dotnet/skills
dotnet/skills
dotnet/skills
Registry listing for migrate-dotnet10-to-dotnet11 matched our evaluation — installs cleanly and behaves as described in the markdown.
Registry listing for migrate-dotnet10-to-dotnet11 matched our evaluation — installs cleanly and behaves as described in the markdown.
migrate-dotnet10-to-dotnet11 fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Keeps context tight: migrate-dotnet10-to-dotnet11 is the kind of skill you can hand to a new teammate without a long onboarding doc.
migrate-dotnet10-to-dotnet11 reduced setup friction for our internal harness; good balance of opinion and flexibility.
migrate-dotnet10-to-dotnet11 has been reliable in day-to-day use. Documentation quality is above average for community skills.
I recommend migrate-dotnet10-to-dotnet11 for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added migrate-dotnet10-to-dotnet11 from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in migrate-dotnet10-to-dotnet11 — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Useful defaults in migrate-dotnet10-to-dotnet11 — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 58