OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Hostinger VPS
Spin up a VPS in one click, 20% off
Launch on Hostinger →
Gojiberry
AI outreach that finds LinkedIn buyers in buying mode
Try Gojiberry free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
Jotform
Forms, workflows, and AI Agents for your team
Try Jotform free →
Runable
One AI agent to build, run, and grow your business
Try Runable free →
Your product here
Reach 100k AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/dotnet/skills/migrate-dotnet10-to-dotnet11
migrate-dotnet10-to-dotnet11 logo

migrate-dotnet10-to-dotnet11

dotnet/skills
892 installs5K stars
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/dotnet/skills --skill migrate-dotnet10-to-dotnet11

Summary

>

SKILL.md

.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 TargetFramework from net10.0 to net11.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.0 and 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

InputRequiredDescription
Project or solution pathYesThe .csproj, .sln, or .slnx entry point to migrate
Build commandNoHow to build (e.g., dotnet build, a repo build script). Auto-detect if not provided
Test commandNoHow to run tests (e.g., dotnet test). Auto-detect if not provided
Project type hintsNoWhether 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

  1. Identify how the project is built and tested. Look for build scripts, .sln/.slnx files, or individual .csproj files.
  2. Run dotnet --version to confirm the .NET 11 SDK is installed. If it is not, stop and inform the user.
  3. Determine which technology areas the project uses by examining:
  • SDK attribute: Microsoft.NET.Sdk.Web → ASP.NET Core; Microsoft.NET.Sdk.WindowsDesktop with <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
  • NamedPipeClientStream usage with SafePipeHandle → SYSLIB0063 constructor obsoletion relevant
  • BackgroundService usage → Unhandled exceptions now stop the host
  • Microsoft.OpenApi direct 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
  1. Record which reference documents are relevant (see the reference loading table in Step 3).
  2. Do a clean build (dotnet build --no-incremental or delete bin/obj) on the current net10.0 target to establish a clean baseline. Record any pre-existing warnings.

Step 2: Update the Target Framework

  1. 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.

  1. 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.
  1. Run dotnet restore. Fix any restore errors before continuing.
  1. 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 fileWhen to load
references/csharp-compiler-dotnet10to11.mdAlways (C# 15 compiler breaking changes)
references/core-libraries-dotnet10to11.mdAlways (applies to all .NET 11 projects)
references/sdk-msbuild-dotnet10to11.mdAlways (SDK and build tooling changes)
references/aspnetcore-dotnet10to11.mdProject uses ASP.NET Core (OpenAPI, Blazor)
references/efcore-dotnet10to11.mdProject uses Entity Framework Core
references/cryptography-dotnet10to11.mdProject uses cryptography APIs, mTLS, or targets macOS
references/runtime-jit-dotnet10to11.mdDeploying to older hardware, embedded devices, or using NativeAOT

Work through each build error systematically. Common patterns:

  1. 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.
  1. 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.
  1. nameof(this.) in attributes — Remove this. qualifier; use nameof(P) instead of nameof(this.P).
  1. 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.
  1. 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.
  1. EF Core Cosmos sync I/O removal — ToList(), SaveChanges(), etc. on Cosmos provider always throw. Convert to async equivalents.
  1. 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.
  1. 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.
  1. 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.
  1. EF Core Design package no longer transitive — Microsoft.EntityFrameworkCore.Tools and .Tasks no longer depend on .Design. Add an explicit PackageReference if needed.
  1. 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:

  1. DeflateStream/GZipStream empty payload — Now writes headers and footers even for empty payloads. If your code checks for zero-length output, update the check.
  1. MemoryStream maximum capacity — Maximum capacity updated and exception behavior changed. Review code that creates large MemoryStreams or relies on specific exception types.
  1. TAR header checksum validation — TAR-reading APIs now verify checksums. Corrupted or hand-crafted TAR files may now fail to read.
  1. ZipArchive.CreateAsync eager loading — ZipArchive.CreateAsync eagerly loads entries. May affect memory usage for large archives.
  1. Environment.TickCount consistency — Made consistent with Windows timeout behavior. Code relying on specific tick count behavior may need adjustment.
  1. DSA removed from macOS — DSA cryptographic operations throw on macOS. Use a different algorithm (RSA, ECDSA).
  1. Japanese Calendar minimum date — Minimum supported date corrected. Code using very early Japanese Calendar dates may be affected.
  1. Minimum hardware requirements — x86/x64 baseline moved to x86-64-v2; Windows Arm64 requires LSE. Verify deployment targets meet requirements.
  1. Mono launch target for .NET Framework — No longer set automatically. If using Mono for .NET Framework apps on Linux, specify explicitly.
  1. 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.
  1. ZipArchive CRC32 validation — ZIP reads now validate CRC32 checksums. Corrupt or truncated archives that previously succeeded will now throw InvalidDataException.
  1. 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.
  1. 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.
  1. Blazor Virtualize OverscanCount default changed — Default OverscanCount changed from 3 to 15. Set explicitly if performance-sensitive.
  1. 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.
  1. SqlVector&lt;T&gt; excluded from SELECT — Vector properties are no longer auto-loaded. Use explicit projections to include vector values.
  1. SQLitePCLRaw encryption bundles removed — bundle_e_sqlcipher and other encryption bundle packages removed in SQLitePCLRaw 3.0.
  1. NativeAOT Unix native library lib prefix — Output filenames now include lib prefix on Linux/macOS (e.g., libMyLib.so).

Step 5: Update infrastructure

  1. 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
  1. 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": {
        "...": "..."
      }
    }
  1. 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

  1. Run a full clean build: dotnet build --no-incremental
  2. Run all tests: dotnet test
  3. If the application is containerized, build and test the container image
  4. 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
  1. 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 fileWhen to load
references/csharp-compiler-dotnet10to11.mdAlways (C# 15 compiler breaking changes)
references/core-libraries-dotnet10to11.mdAlways (applies to all .NET 11 projects)
references/sdk-msbuild-dotnet10to11.mdAlways (SDK and build tooling changes)
references/aspnetcore-dotnet10to11.mdProject uses ASP.NET Core (OpenAPI, Blazor)
references/efcore-dotnet10to11.mdProject uses Entity Framework Core
references/cryptography-dotnet10to11.mdProject uses cryptography APIs, mTLS, or targets macOS
references/runtime-jit-dotnet10to11.mdDeploying to older hardware, embedded devices, or using NativeAOT

Score

0–100
57/ 100

Grade

C

Popularity17/30

892 installs — growing adoption. Source repo has 5,054 GitHub stars.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Migrate Dotnet10 To Dotnet11 skill score badge previewScore badge

Markdown

[![Migrate Dotnet10 To Dotnet11 skill](https://www.claudemarket.ai/skills/dotnet/skills/migrate-dotnet10-to-dotnet11/badges/score.svg)](https://www.claudemarket.ai/skills/dotnet/skills/migrate-dotnet10-to-dotnet11)

HTML

<a href="https://www.claudemarket.ai/skills/dotnet/skills/migrate-dotnet10-to-dotnet11"><img src="https://www.claudemarket.ai/skills/dotnet/skills/migrate-dotnet10-to-dotnet11/badges/score.svg" alt="Migrate Dotnet10 To Dotnet11 skill"/></a>

Migrate Dotnet10 To Dotnet11 FAQ

How do I install the Migrate Dotnet10 To Dotnet11 skill?

Run “npx skills add https://github.com/dotnet/skills --skill migrate-dotnet10-to-dotnet11” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Migrate Dotnet10 To Dotnet11 skill do?

> The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Migrate Dotnet10 To Dotnet11 skill free?

Yes. Migrate Dotnet10 To Dotnet11 is a free, open-source skill published from dotnet/skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Migrate Dotnet10 To Dotnet11 work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Migrate Dotnet10 To Dotnet11 works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
azure-cloud-migrate logo

azure-cloud-migrate

microsoft/azure-skills

442K installsInstall
migrate-to-shoehorn logo

migrate-to-shoehorn

mattpocock/skills

195K installsInstall
find-skills logo

find-skills

vercel-labs/skills

2.9M installsInstall
grill-me logo

grill-me

mattpocock/skills

797K installsInstall
frontend-design logo

frontend-design

anthropics/skills

755K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

678K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+27 more

MCP servers by category

MCP & ToolingBackend & APIsData & AnalysisDevOps & CI/CDAutomationSecurityDocsTesting & QA+24 more

Plugins by category

AutomationDevOps & CI/CDData & AnalysisDesign & CreativeSecurityBackend & APIsFrontendTesting & QA+16 more

Marketplaces by category

AutomationData & AnalysisDevOps & CI/CDDesign & CreativeFrontendBackend & APIsTesting & QASecurity+21 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins
  • Browse Marketplaces
  • Newsletter

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed