migrate-dotnet8-to-dotnet9
Migrate a .NET 8 project to .NET 9 and resolve all breaking changes. USE FOR: upgrading TargetFramework from net8.0 to net9.0, fixing build errors after updating the .NET 9 SDK, resolving behavioral changes in .NET 9 / C# 13 / ASP.NET Core 9 / EF Core 9, replacing BinaryFormatter (now always throws)…
Install / Use
npx skills add dotnet/skills --skill migrate-dotnet8-to-dotnet9Installs into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Development & EngineeringSupported Platforms
Tags
Our assessment of migrate-dotnet8-to-dotnet9
migrate-dotnet8-to-dotnet9 scores 87/100 on our quality scale, 896th of 2,398 Development & Engineering skills we index (top 38%).
Its SKILL.md is 15 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-dotnet8-to-dotnet9 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-dotnet8-to-dotnet9 compared with similar skills
All 4 of these similar skills score higher than migrate-dotnet8-to-dotnet9; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| migrate-dotnet8-to-dotnet9 (this skill)by dotnet | 87 | 5.5k | 2d ago | SKILL.md |
| ai-job-searchby MadsLorentzen | 100 | 44.0k | 5d ago | CLAUDE.md |
| claude-howtoby luongnv89 | 100 | 41.7k | today | CLAUDE.md |
| algorithmic-artby anthropics | 100 | 177.9k | 4d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 4d ago | SKILL.md |
Frequently asked questions
- How do I install migrate-dotnet8-to-dotnet9?
- Run
npx skills add dotnet/skills --skill migrate-dotnet8-to-dotnet9. The install tabs above show the steps for each supported agent. - Which AI agents does migrate-dotnet8-to-dotnet9 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-dotnet8-to-dotnet9 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-dotnet8-to-dotnet9 still maintained?
- The repository was last updated 2 days ago, so migrate-dotnet8-to-dotnet9 is actively maintained.
Skill content
View source on GitHubname: migrate-dotnet8-to-dotnet9 description: > Migrate a .NET 8 project to .NET 9 and resolve all breaking changes. USE FOR: upgrading TargetFramework from net8.0 to net9.0, fixing build errors after updating the .NET 9 SDK, resolving behavioral changes in .NET 9 / C# 13 / ASP.NET Core 9 / EF Core 9, replacing BinaryFormatter (now always throws), resolving SYSLIB0054-SYSLIB0057, adapting to params span overload resolution, fixing C# 13 compiler changes, updating HttpClientFactory for SocketsHttpHandler, and resolving EF Core 9 migration/Cosmos DB changes. DO NOT USE FOR: .NET Framework migrations, upgrading from .NET 7 or earlier, greenfield .NET 9 projects, or cosmetic modernization unrelated to the upgrade. license: MIT
.NET 8 → .NET 9 Migration
Migrate a .NET 8 project or solution to .NET 9, systematically resolving all breaking changes. The outcome is a project targeting net9.0 that builds cleanly, passes tests, and accounts for every behavioral, source-incompatible, and binary-incompatible change introduced in the .NET 9 release.
When to Use
- Upgrading
TargetFrameworkfromnet8.0tonet9.0 - Resolving build errors or new warnings after updating the .NET 9 SDK
- Adapting to behavioral changes in .NET 9 runtime, ASP.NET Core 9, or EF Core 9
- Replacing
BinaryFormatterusage (now always throws at runtime) - Updating CI/CD pipelines, Dockerfiles, or deployment scripts for .NET 9
When Not to Use
- The project already targets
net9.0and builds cleanly — migration is done. If the goal is to reachnet10.0, use themigrate-dotnet9-to-dotnet10skill as the next step. - Upgrading from .NET 7 or earlier — address the prior version breaking changes first
- Migrating from .NET Framework — that is a separate, larger effort
- Greenfield projects that start on .NET 9 (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.
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 9 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.Extensions.Http→ HttpClientFactory - Dockerfile presence → Container changes relevant
- P/Invoke or native interop usage → Interop changes relevant
BinaryFormatterusage → Serialization migration neededSystem.Text.Jsonusage → Serialization changes relevant- X509Certificate constructors → Cryptography 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 currentnet8.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>net8.0</TargetFramework>to:
<TargetFramework>net9.0</TargetFramework>For multi-targeted projects, add
net9.0to<TargetFrameworks>or replacenet8.0. -
Update all
Microsoft.Extensions.*,Microsoft.AspNetCore.*,Microsoft.EntityFrameworkCore.*, and other Microsoft package references to their 9.0.x versions. If using Central Package Management (Directory.Packages.props), update versions there. -
Run
dotnet restore. Watch for:- Version requirements: .NET 9 SDK requires Visual Studio 17.12+ to target
net9.0(17.11 fornet8.0and earlier). - New warnings for .NET Standard 1.x and .NET 7 targets — consider updating or removing outdated target frameworks.
- Version requirements: .NET 9 SDK requires Visual Studio 17.12+ to target
-
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 9 project | references/csharp-compiler-dotnet8to9.md |
| Any .NET 9 project | references/core-libraries-dotnet8to9.md |
| Any .NET 9 project | references/sdk-msbuild-dotnet8to9.md |
| ASP.NET Core | references/aspnet-core-dotnet8to9.md |
| Entity Framework Core | references/efcore-dotnet8to9.md |
| Cryptography APIs | references/cryptography-dotnet8to9.md |
| System.Text.Json, HttpClient, networking | references/serialization-networking-dotnet8to9.md |
| Windows Forms or WPF | references/winforms-wpf-dotnet8to9.md |
| Docker containers, native interop | references/containers-interop-dotnet8to9.md |
| Runtime configuration, deployment | references/deployment-runtime-dotnet8to9.md |
Common source-incompatible changes to check for:
-
paramsspan overload resolution — Newparams ReadOnlySpan<T>overloads onString.Join,String.Concat,Path.Combine,Task.WhenAll, and many more now bind preferentially. Code calling these methods insideExpressionlambdas will fail (CS8640/CS9226). Seereferences/core-libraries-dotnet8to9.md. -
StringValuesambiguous overload — Theparams Span<T>feature creates ambiguity withStringValuesimplicit operators on methods likeString.Concat,String.Join,Path.Combine. Fix by explicitly casting arguments. Seereferences/core-libraries-dotnet8to9.md. -
New obsoletion warnings (SYSLIB0054–SYSLIB0057):
SYSLIB0054: ReplaceThread.VolatileRead/VolatileWritewithVolatile.Read/Volatile.WriteSYSLIB0057: ReplaceX509Certificate2/X509Certificatebinary/file constructors withX509CertificateLoadermethods- Also
SYSLIB0055(ARM AdvSimd signed overloads) andSYSLIB0056(Assembly.LoadFrom with hash algorithm) — seereferences/core-libraries-dotnet8to9.md
-
C# 13
InlineArrayon record structs —[InlineArray]attribute onrecord structtypes is now disallowed (CS9259). Change to a regularstruct. Seereferences/csharp-compiler-dotnet8to9.md. -
C# 13 iterator safe context — Iterators now introduce a safe context in C# 13. Local functions inside iterators that used unsafe code inherited from an outer
unsafeclass will now error. Addunsafemodifier to the local function. Seereferences/csharp-compiler-dotnet8to9.md. -
C# 13 collection expression overload resolution — Empty collection expressions (
[]) no longer use span vs non-span to tiebreak overloads. Exact element type is now preferred. Seereferences/csharp-compiler-dotnet8to9.md. -
String.Trim(params ReadOnlySpan<char>)removed — Code compiled against .NET 9 previews that passesReadOnlySpan<char>toTrim/TrimStart/TrimEndmust rebuild; the overload was removed in GA. Seereferences/core-libraries-dotnet8to9.md. -
BinaryFormatteralways throws — If the project usesBinaryFormatter, stop and inform the user — this is a major decision. Seereferences/serialization-networking-dotnet8to9.md. -
HttpListenerRequest.UserAgentis nullable — The property is nowstring?. Add null checks. Seereferences/serialization-networking-dotnet8to9.md. -
Windows Forms nullability annotation changes — Some WinForms API parameters changed from nullable to non-nullable. Update call sites. See
references/winforms-wpf-dotnet8to9.md. -
Windows Forms security analyzers (WFO1000) — New analyzers produce errors for properties without explicit serialization configuration. See
references/winforms-wpf-dotnet8to9.md.
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):
-
Floating-point to integer conversions are now saturating — Conversions from
float/doubleto integer types now saturate instead of wrapping on x86/x64. Seereferences/deployment-runtime-dotnet8to9.md. -
EF Core: Pending model changes exception —
Migrate()/MigrateAsync()now throws if the model has pending changes. Search forDateTime.Now,DateTime.UtcNow, orGuid.NewGuid()in anyHasDatacall — these must be replaced with fixed constants (e.g.,new DateTime(2024, 1, 1, 0, 0, 0, DateTimeKind.Utc)). Seereferences/efcore-dotnet8to9.md. -
EF Core: Explicit transaction exception —
Migrate()inside a user transaction now throws. Seereferences/efcore-dotnet8to9.md. -
HttpClientFactory uses
SocketsHttpHandlerby default — Code that casts the primary handler toHttpClientHandlerwill getInvalidCastException. Seereferences/serialization-networking-dotnet8to9.md. -
HttpClientFactory header redaction by default — All header values in
Trace-level logs are now redacted. Seereferences/serialization-networking-dotnet8to9.md. -
Environment variables take precedence over runtimeconfig.json — Runtime configuration settings from environment variables now override
runtimeconfig.json. Seereferences/deployment-runtime-dotnet8to9.md. -
ASP.NET Core
ValidateOnBuild/ValidateScopesin development —HostBuildernow enables DI validation in development by default. Seereferences/aspnet-core-dotnet8to9.md.
Other behavioral changes to review (may cause runtime exceptions ⚠️ or subtle behavioral differences):
- ⚠️
FromKeyedServicesAttributeno longer injects non-keyed service fallback — throwsInvalidOperationException - ⚠️ Container images no longer install zlib — apps depending on system zlib will fail
- ⚠️ Intel CET is now enabled by default — non-CET-compatible native libraries may cause process termination
BigIntegernow has a maximum length of(2^31) - 1bitsJsonDocumentdeserialization of JSONnullnow returns non-nullJsonDocumentwithJsonValueKind.Nullinstead of C#nullSystem.Text.Jsonmetadata reader now unescapes metadata property namesZipArchiveEntrynames/comments now respect the UTF-8 flagIncrementingPollingCounterinitial callback is now asynchronousInMemoryDirectoryInfoprepends rootDir to filesRuntimeHelpers.GetSubArrayreturns a different typePictureBoxraisesHttpRequestExceptioninstead ofWebExceptionStatusStripuses a different default rendererIMsoComponentsupport is opt-inSafeEvpPKeyHandle.DuplicateHandleup-refs the handleHttpClientmetrics reportserver.portuncon
Truncated for display — read the full file on GitHub.
Related Skills
ai-job-search
44.0kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
claude-howto
41.7kA visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
pptx
177.9kUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an em…
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.
