migrate-dotnet9-to-dotnet10
Migrate a .NET 9 project or solution to .NET 10 and resolve all breaking changes. USE FOR: upgrading TargetFramework from net9.0 to net10.0, fixing build errors after updating the .NET 10 SDK, resolving source and behavioral changes in .NET 10 / C# 14 / ASP.NET Core 10 / EF Core 10, updating Dockerf…
Install / Use
npx skills add dotnet/skills --skill migrate-dotnet9-to-dotnet10Installs into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
OperationsSupported Platforms
Our assessment of migrate-dotnet9-to-dotnet10
migrate-dotnet9-to-dotnet10 scores 87/100 on our quality scale, 207th of 339 Operations skills we index.
Its SKILL.md is 19 KB long, well organised into 12 sections and no code examples: a thorough specification that gives an agent plenty to work with.
With 5,471 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 2 days ago, so migrate-dotnet9-to-dotnet10 is actively maintained.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
migrate-dotnet9-to-dotnet10 compared with similar skills
All 4 of these similar skills score higher than migrate-dotnet9-to-dotnet10; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| migrate-dotnet9-to-dotnet10 (this skill)by dotnet | 87 | 5.5k | 2d ago | SKILL.md |
| Agent-Reachby Panniantong | 100 | 85.6k | 11d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.9k | today | CLAUDE.md |
| Scraplingby D4Vinci | 100 | 83.9k | today | MCP Server |
| LocalAIby mudler | 100 | 49.3k | today | MCP Server |
Frequently asked questions
- How do I install migrate-dotnet9-to-dotnet10?
- Run
npx skills add dotnet/skills --skill migrate-dotnet9-to-dotnet10. The install tabs above show the steps for each supported agent. - Which AI agents does migrate-dotnet9-to-dotnet10 work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is migrate-dotnet9-to-dotnet10 safe to use?
- It is MIT-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is migrate-dotnet9-to-dotnet10 still maintained?
- The repository was last updated 2 days ago, so migrate-dotnet9-to-dotnet10 is actively maintained.
Skill content
View source on GitHubname: migrate-dotnet9-to-dotnet10 description: > Migrate a .NET 9 project or solution to .NET 10 and resolve all breaking changes. USE FOR: upgrading TargetFramework from net9.0 to net10.0, fixing build errors after updating the .NET 10 SDK, resolving source and behavioral changes in .NET 10 / C# 14 / ASP.NET Core 10 / EF Core 10, updating Dockerfiles for Debian-to-Ubuntu base images, resolving obsoletion warnings (SYSLIB0058-SYSLIB0062), adapting to SDK/NuGet changes (NU1510, PrunePackageReference), migrating System.Linq.Async to built-in AsyncEnumerable, fixing OpenApi v2 API changes, cryptography renames, and C# 14 compiler changes (field keyword, extension keyword, span overloads). DO NOT USE FOR: .NET Framework migrations, upgrading from .NET 8 or earlier (use migrate-dotnet8-to-dotnet9 first), greenfield .NET 10 projects, or cosmetic modernization. LOADS REFERENCES: csharp-compiler, core-libraries, sdk-msbuild (always); aspnet-core, efcore, cryptography, extensions-hosting, serialization-networking, winforms-wpf, containers-interop (selective). license: MIT
.NET 9 → .NET 10 Migration
Migrate a .NET 9 project or solution to .NET 10, systematically resolving all breaking changes. The outcome is a project targeting net10.0 that builds cleanly, passes tests, and accounts for every behavioral, source-incompatible, and binary-incompatible change introduced in the .NET 10 release.
When to Use
- Upgrading
TargetFrameworkfromnet9.0tonet10.0 - Resolving build errors or new warnings after updating the .NET 10 SDK
- Adapting to behavioral changes in .NET 10 runtime, ASP.NET Core 10, or EF Core 10
- Updating CI/CD pipelines, Dockerfiles, or deployment scripts for .NET 10
- Migrating from the community
System.Linq.Asyncpackage to the built-inSystem.Linq.AsyncEnumerable
When Not to Use
- The project already targets
net10.0and builds cleanly — migration is done - Upgrading from .NET 8 or earlier — use the
migrate-dotnet8-to-dotnet9skill first to reachnet9.0, then return to this skill for thenet9.0→net10.0migration - Migrating from .NET Framework — that is a separate, larger effort
- Greenfield projects that start on .NET 10 (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, WinForms, WPF, containers, etc. Auto-detect from PackageReferences and SDK attributes if not provided |
Workflow
Answer directly from the loaded reference documents. Do not search the filesystem or fetch web pages for breaking change information — the references contain the authoritative details. Focus on identifying which breaking changes apply and providing concrete fixes. Exception: If you suspect a security vulnerability (CVE) may apply to the project's dependencies, check for published security advisories — the reference documents may not cover post-publication CVEs.
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 10 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.Data.Sqlite→ Sqlite;Microsoft.Extensions.Hosting→ Generic Host / BackgroundService - Dockerfile presence → Container changes relevant
- P/Invoke or native interop usage → Interop changes relevant
System.Linq.Asyncpackage reference → AsyncEnumerable migration neededSystem.Text.Jsonusage with polymorphism → Serialization changes relevant
- 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 currentnet9.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>net9.0</TargetFramework>to:
<TargetFramework>net10.0</TargetFramework>For multi-targeted projects, add
net10.0to<TargetFrameworks>or replacenet9.0. -
Update all
Microsoft.Extensions.*,Microsoft.AspNetCore.*,Microsoft.EntityFrameworkCore.*, and other Microsoft package references to their 10.0.x versions. If using Central Package Management (Directory.Packages.props), update versions there. -
Run
dotnet restore. Watch for:- NU1510: Direct references pruned by NuGet — the package may be included in the shared framework now. Remove the explicit
<PackageReference>if so. - PackageReference without a version now raises an error — every
<PackageReference>must have aVersion(or use CPM). - NuGet auditing of transitive packages (
dotnet restorenow audits transitive deps) — review any new vulnerability warnings.
- NU1510: Direct references pruned by NuGet — the package may be included in the shared framework now. Remove the explicit
-
Run a clean build. Collect all errors and new warnings. These will be addressed in Step 3.
Step 3: Resolve build errors and source-incompatible changes
Work through compilation errors and new warnings systematically. Load the appropriate reference documents based on the project type:
| If the project uses… | Load reference |
|-----------------------|----------------|
| Any .NET 10 project | references/csharp-compiler-dotnet9to10.md |
| Any .NET 10 project | references/core-libraries-dotnet9to10.md |
| Any .NET 10 project | references/sdk-msbuild-dotnet9to10.md |
| ASP.NET Core | references/aspnet-core-dotnet9to10.md |
| Entity Framework Core | references/efcore-dotnet9to10.md |
| Cryptography APIs | references/cryptography-dotnet9to10.md |
| Microsoft.Extensions.Hosting, BackgroundService, configuration | references/extensions-hosting-dotnet9to10.md |
| System.Text.Json, XmlSerializer, HttpClient, MailAddress, Uri | references/serialization-networking-dotnet9to10.md |
| Windows Forms or WPF | references/winforms-wpf-dotnet9to10.md |
| Docker containers, single-file apps, native interop | references/containers-interop-dotnet9to10.md |
Common source-incompatible changes to check for:
-
System.Linq.Asyncconflicts — Remove theSystem.Linq.Asyncpackage reference or upgrade to v7.0.0. If consumed transitively, add<ExcludeAssets>compile</ExcludeAssets>. RenameSelectAwaitcalls toSelectwhere needed. -
New obsoletion warnings (SYSLIB0058–SYSLIB0062):
SYSLIB0058: ReplaceSslStream.KeyExchangeAlgorithm/CipherAlgorithm/HashAlgorithmwithNegotiatedCipherSuite— if the old properties were used to reject weak TLS ciphers, preserve equivalent validation logic using the new APISYSLIB0059: ReplaceSystemEvents.EventsThreadShutdownwithAppDomain.ProcessExitSYSLIB0060: ReplaceRfc2898DeriveBytesconstructors withRfc2898DeriveBytes.Pbkdf2SYSLIB0061: ReplaceQueryable.MaxBy/MinByoverloads takingIComparer<TSource>with ones takingIComparer<TKey>SYSLIB0062: ReplaceXsltSettings.EnableScriptusage
-
C# 14
fieldkeyword in property accessors — The identifierfieldis now a contextual keyword inside propertyget/set/initaccessors. Local variables namedfieldcause CS9272 (error). Class members namedfieldreferenced withoutthis.cause CS9258 (warning). Fix by renaming (e.g.,fieldValue) or escaping with@field. Seereferences/csharp-compiler-dotnet9to10.md. -
C# 14
extensioncontextual keyword — Types, aliases, or type parameters namedextensionare disallowed. Rename or escape with@extension. -
C# 14 overload resolution with span parameters — Expression trees containing
.Contains()on arrays may now bind toMemoryExtensions.Containsinstead ofEnumerable.Contains.Enumerable.Reverseon arrays may resolve to the in-placeSpanextension. Fix by casting toIEnumerable<T>, using.AsEnumerable(), or explicit static invocations. Seereferences/csharp-compiler-dotnet9to10.mdfor full details. -
ASP.NET Core obsoletions (if applicable):
WebHostBuilder,IWebHost,WebHostare obsolete — migrate toHost.CreateDefaultBuilderorWebApplication.CreateBuilderIActionContextAccessor/ActionContextAccessorobsoleteWithOpenApiextension method deprecatedIncludeOpenAPIAnalyzersproperty deprecatedIPNetworkandForwardedHeadersOptions.KnownNetworksobsolete- Razor runtime compilation is obsolete
Microsoft.Extensions.ApiDescription.Clientpackage deprecatedMicrosoft.OpenApiv2.x breaking changes —Microsoft.AspNetCore.OpenApi 10.0pulls inMicrosoft.OpenApiv2.x which restructures namespaces and models.OpenApiString/OpenApiAnytypes are removed (useJsonNode),OpenApiSecurityScheme.Referencereplaced byOpenApiSecuritySchemeReference, collections on OpenAPI model objects may be null, andOpenApiSchema.Nullableis removed. Seereferences/aspnet-core-dotnet9to10.mdfor migration patterns.
-
SDK changes:
dotnet new slnnow defaults to SLNX format — use--format slnif the old format is needed- Double quotes in file-level directives are disallowed
dnx.ps1removed from .NET SDKproject.jsonno longer supported indotnet restore
-
EF Core source changes (if applicable) — See
references/efcore-dotnet9to10.mdfor:ExecuteUpdateAsyncnow accepts a regular lambda (expression tree construction code must be rewritten)IDiscriminatorPropertySetConventionsignature changedIRelationalCommandDiagnosticsLoggermethods addlogCommandTextparameter
-
WinForms/WPF source changes (if applicable):
- Applications referencing both WPF and WinForms must disambiguate
MenuItemandContextMenutypes - Renamed parameter in
HtmlElement.InsertAdjacentElement - Empty
ColumnDefinitionsandRowDefinitionsare disallowed in WPF
- Applications referencing both WPF and WinForms must disambiguate
-
Cryptography source changes (if applicable):
MLDsaandSlhDsamembers renamed fromSecretKeytoPrivateKey(e.g.,ExportMLDsaSecretKey→ExportMLDsaPrivateKey,SecretKeySizeInBytes→PrivateKeySizeInBytes)Rfc2898DeriveBytesconstructors are obsolete (SYSLIB0060) — replace with staticRfc2898DeriveBytes.Pbkdf2(password, salt, iterations, hashAlgorithm, outputLength)CoseSigner.Keycan now be null — check for null before useX509Certificate.GetKeyAlgorithmParameters()andPublicKey.EncodedParameterscan return null- Environment variable renamed from
CLR_OPENSSL_VERSION_OVERRIDEtoDOTNET_OPENSSL_VERSION_OVERRIDE
Build again after each batch of fixes. Repeat until the build is clean.
Step 4: Address behavioral changes
Behavioral changes do not cause build errors but may change runtime behavior. Review each applicable item and determine whether the previous behavior was relied upon.
High-impact behavioral changes (check first):
- SIGTERM signal handling removed — The .NET runtime no longer registers default SIGTERM handlers. If
Truncated for display — read the full file on GitHub.
Related Skills
Agent-Reach
85.6kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.9kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
Scrapling
83.9k🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
LocalAI
49.3kLocalAI is the open-source AI engine. Run any model - LLMs, vision, voice, image, video - on any hardware. No GPU required.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
