Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

migrate-dotnet10-to-dotnet11将 dotnet10 迁移到 dotnet11

Agent Skill

migrate-dotnet10-to-dotnet11 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,963

周安装

211

GitHub Stars

1,509

下载量

1,739
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:migrate-dotnet10-to-dotnet11(将 dotnet10 迁移到 dotnet11)
来源仓库:https://github.com/dotnet/skills
仓库路径:skills/migrate-dotnet10-to-dotnet11
安装命令:
npx skills add https://github.com/dotnet/skills --skill migrate-dotnet10-to-dotnet11
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

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

简介

用于 .NET 10 到 11 版本迁移的 GitHub 信息处理。

  • 适合跟踪迁移过程中的 Issue 与 PR 变更。
  • 通过 GitHub 安装,建议查看维护状态与兼容性说明。
  • 使用前应确认是否触发构建或部署操作。
  • migrate-dotnet10-to-dotnet11 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

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 1. It will be updated as additional previews ship.

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 - Compression API usage → DeflateStream/GZipStream/ZipArchive changes relevant - TAR API usage → Header checksum validation change relevant - NamedPipeClientStream usage with SafePipeHandle → SYSLIB0063 constructor obsoletion relevant

  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.
  2. 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.
  3. Run dotnet restore. Fix any restore errors before continuing.
  4. 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/efcore-dotnet10to11.mdProject uses Entity Framework Core (especially Cosmos DB provider)
references/cryptography-dotnet10to11.mdProject uses cryptography APIs or targets macOS
references/runtime-jit-dotnet10to11.mdDeploying to older hardware or embedded devices

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.
  2. 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.
  3. nameof(this.) in attributes — Remove this. qualifier; use nameof(P) instead of nameof(this.P).
  4. 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.
  5. 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.
  6. EF Core Cosmos sync I/O removalToList(), SaveChanges(), etc. on Cosmos provider always throw. Convert to async equivalents.
  7. 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.
  8. 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.

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.
  2. MemoryStream maximum capacity — Maximum capacity updated and exception behavior changed. Review code that creates large MemoryStreams or relies on specific exception types.
  3. TAR header checksum validation — TAR-reading APIs now verify checksums. Corrupted or hand-crafted TAR files may now fail to read.
  4. ZipArchive.CreateAsync eager loadingZipArchive.CreateAsync eagerly loads entries. May affect memory usage for large archives.
  5. Environment.TickCount consistency — Made consistent with Windows timeout behavior. Code relying on specific tick count behavior may need adjustment.
  6. DSA removed from macOS — DSA cryptographic operations throw on macOS. Use a different algorithm (RSA, ECDSA).
  7. Japanese Calendar minimum date — Minimum supported date corrected. Code using very early Japanese Calendar dates may be affected.
  8. Minimum hardware requirements — x86/x64 baseline moved to x86-64-v2; Windows Arm64 requires LSE. Verify deployment targets meet requirements.
  9. Mono launch target for.NET Framework — No longer set automatically. If using Mono for.NET Framework apps on Linux, specify explicitly.

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
  2. 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.1", + "rollForward": "latestFeature"}, "otherSettings": {"...": "..."}}
  3. 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 - EF Core Cosmos DB operations (must be async) - DSA usage on macOS - Memory-intensive MemoryStream usage - Span collection expression assignments

  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/efcore-dotnet10to11.mdProject uses Entity Framework Core (especially Cosmos DB provider)
references/cryptography-dotnet10to11.mdProject uses cryptography APIs or targets macOS
references/runtime-jit-dotnet10to11.mdDeploying to older hardware or embedded devices

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.35%
按下载量换算597

Claude

30.48%
按下载量换算530

Cursor

18.03%
按下载量换算314

Gemini CLI

8.31%
按下载量换算145

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills