Skip to content

Commit 6e9706e

Browse files
Add .NET 10.0.0 release notes (#10145)
* Add .NET 10.0.0 release notes and update markdown link-check config - Add complete release notes for .NET 10.0.0 (release-notes/10.0/10.0.0/): README.md, 10.0.0.md and per-area pages (aspnetcore, csharp, dotnetmaui, efcoreanddata, fsharp, libraries, runtime, sdk, winforms, wpf) - Update .github/workflows/markdown-link-check-config.json ignore patterns/formatting * Delete release-notes/10.0/10.0.0/10.0.0.md * Add F# 10 documentation link to release notes for .NET 10 * Update README.md for .NET 10 release notes --------- Co-authored-by: victorisr <[email protected]>
1 parent 4747bd2 commit 6e9706e

File tree

12 files changed

+206
-2
lines changed

12 files changed

+206
-2
lines changed

.github/workflows/markdown-link-check-config.json

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,25 @@
55
},
66
{
77
"pattern": "^release-notes/templates/"
8+
},
9+
{
10+
"pattern": "dotnet\\.microsoft\\.com/download/dotnet/10\\.0"
11+
},
12+
{
13+
"pattern": "github\\.com/.*/releases/tag/10\\.0"
14+
},
15+
{
16+
"pattern": "github\\.com/.*/compare/.*10\\.0"
17+
},
18+
{
19+
"pattern": "builds\\.dotnet\\.microsoft\\.com/.*10\\.0"
20+
},
21+
{
22+
"pattern": "devblogs\\.microsoft\\.com/.*servicing-updates"
823
}
924
],
10-
"aliveStatusCodes": [429, 200]
11-
}
25+
"aliveStatusCodes": [
26+
429,
27+
200
28+
]
29+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# .NET 10 - Release Notes
2+
3+
.NET 10 was released on November 11th, 2025. Find more information on new features released in .NET 10 by browsing through the release notes below:
4+
5+
* [Libraries](./libraries.md)
6+
* [Runtime](./runtime.md)
7+
* [SDK](./sdk.md)
8+
9+
## Feature Release Notes
10+
11+
* [.NET MAUI](./dotnetmaui.md)
12+
* [ASP.NET Core](./aspnetcore.md)
13+
* [C#](./csharp.md)
14+
* [EF Core and Data](./efcoreanddata.md)
15+
* [F#](./fsharp.md)
16+
* [WinForms](./winforms.md)
17+
* [WPF](./wpf.md)
18+
19+
## Get Started
20+
21+
Instructions on getting started with .NET 10 can be found in the [getting started guide](../get-started.md). Installers and binaries for .NET 10 can be found [here on GitHub](./10.0.0.md).
22+
23+
## Announcements & Discussions
24+
25+
Celebrate the launch of .NET 10 and find out more through the [.NET 10 Announcement](https://aka.ms/dotnet10) blog.
26+
27+
## Stay up-to-date
28+
29+
You can find a detailed overview of all new features in .NET 10:
30+
31+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview): [Runtime](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/runtime), [Libraries](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/libraries), and [SDK](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/sdk)
32+
* [What's new in C# 14](https://learn.microsoft.com/dotnet/csharp/whats-new/csharp-14)
33+
* [What's new in F# 10](https://learn.microsoft.com/dotnet/fsharp/whats-new/fsharp-10)
34+
* [What's new in ASP.NET Core](https://learn.microsoft.com/aspnet/core/release-notes/aspnetcore-10.0)
35+
* [What's new in .NET Aspire](https://learn.microsoft.com/dotnet/aspire/whats-new/)
36+
* [What's new in .NET MAUI](https://learn.microsoft.com/dotnet/maui/whats-new/dotnet-10)
37+
* [What's new in EF Core](https://learn.microsoft.com/ef/core/what-is-new/ef-core-10.0/whatsnew)
38+
* [What's new in WPF](https://learn.microsoft.com/dotnet/desktop/wpf/whats-new/net100)
39+
* [What's new in Windows Forms](https://learn.microsoft.com/dotnet/desktop/winforms/whats-new/net100)
40+
41+
The latest .NET 10 release is always available at [dotnet.microsoft.com](https://dotnet.microsoft.com/download/dotnet/10.0) and [.NET 10 Releases](../../README.md).
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# ASP.NET Core updates in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10).
4+
5+
This release was focused on quality improvements for the general availability of .NET 10. See the [GitHub Release changelog](https://github.com/dotnet/aspnetcore/compare/v10.0.0-rc.2.24474.3...v10.0.0) for more information in changes between this release and RC 2.
6+
7+
ASP.NET Core updates in .NET 10:
8+
9+
* [What's new in ASP.NET Core in .NET 10](https://learn.microsoft.com/aspnet/core/release-notes/aspnetcore-10.0) documentation.
10+
* [Breaking changes](https://docs.microsoft.com/dotnet/core/compatibility/10.0#aspnet-core)
11+
* [Roadmap](https://aka.ms/aspnet/roadmap)
12+
13+
.NET 10 Release:
14+
15+
* [Announcement Blog](https://aka.ms/dotnet10)
16+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
17+
* [Release notes](README.md)
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# C# in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10). This release was focused on quality improvements for the general availability of .NET 10.
4+
5+
C# 14 in .NET 10:
6+
7+
* [What's new in C# 14](https://learn.microsoft.com/dotnet/csharp/whats-new/csharp-14) documentation.
8+
* [Breaking changes in C# 14](https://learn.microsoft.com/dotnet/csharp/whats-new/breaking-changes/compiler%20breaking%20changes%20-%20dotnet%2010) documentation.
9+
10+
.NET 10 Release:
11+
12+
* [Announcement Blog](https://aka.ms/dotnet10)
13+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
14+
* [Release notes](README.md)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# .NET MAUI updates in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10).
4+
5+
This release was focused on quality improvements for the general availability of .NET 10. See the [GitHub Release changelog](https://github.com/dotnet/maui/releases/tag/10.0.0) for more information in changes between this release and RC 2.
6+
7+
.NET MAUI updates in .NET 10:
8+
9+
* [What's new in .NET MAUI in .NET 10](https://learn.microsoft.com/dotnet/maui/whats-new/dotnet-10) documentation.
10+
11+
.NET 10 Release:
12+
13+
* [Announcement Blog](https://aka.ms/dotnet10)
14+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
15+
* [Release notes](README.md)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EF Core and Data in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10). This release was focused on quality improvements for the general availability of .NET 10.
4+
5+
EF Core:
6+
7+
* [What's new in EF Core 10](https://learn.microsoft.com/ef/core/what-is-new/ef-core-10.0/whatsnew) documentation.
8+
9+
.NET 10 Release:
10+
11+
* [Announcement Blog](https://aka.ms/dotnet10)
12+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
13+
* [Release notes](README.md)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# F# in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10). This release was focused on quality improvements for the general availability of .NET 10.
4+
5+
F# 10:
6+
7+
* [What's new in F# 10](https://learn.microsoft.com/dotnet/fsharp/whats-new/fsharp-10) documentation.
8+
9+
.NET 10 Release:
10+
11+
* [Announcement Blog](https://aka.ms/dotnet10)
12+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
13+
* [Release notes](README.md)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Libraries updates in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10).
4+
5+
This release was focused on quality improvements for the general availability of .NET 10. See the [GitHub Release changelog](https://github.com/dotnet/runtime/compare/v10.0.0-rc.2.24473.5...v10.0.0) for more information in changes between this release and RC 2.
6+
7+
Libraries updates in .NET 10:
8+
9+
* [What's new in .NET 10 libraries](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/libraries) documentation.
10+
11+
.NET 10 Release:
12+
13+
* [Announcement Blog](https://aka.ms/dotnet10)
14+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
15+
* [Release notes](README.md)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Runtime updates in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10).
4+
5+
This release was focused on quality improvements for the general availability of .NET 10. See the [GitHub Release changelog](https://github.com/dotnet/runtime/compare/v10.0.0-rc.2.24473.5...v10.0.0) for more information in changes between this release and RC 2.
6+
7+
Runtime updates in .NET 10:
8+
9+
* [What's new in the .NET Runtime in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/runtime) documentation.
10+
11+
.NET 10 Release:
12+
13+
* [Announcement Blog](https://aka.ms/dotnet10)
14+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
15+
* [Release notes](README.md)

release-notes/10.0/10.0.0/sdk.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# SDK updates in .NET 10
2+
3+
.NET 10 is now generally available. Read about the final release on the [.NET Blog announcement](https://aka.ms/dotnet10).
4+
5+
This release was focused on quality improvements for the general availability of .NET 10. See the [GitHub Release changelog](https://github.com/dotnet/sdk/compare/v10.0.100-rc.2.25502.107...v10.0.100) for more information in changes between this release and RC 2.
6+
7+
SDK updates in .NET 10:
8+
9+
* [What's new in the .NET SDK in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/sdk) documentation
10+
11+
.NET 10 Release:
12+
13+
* [Announcement Blog](https://aka.ms/dotnet10)
14+
* [What's new in .NET 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview)
15+
* [Release notes](README.md)

0 commit comments

Comments
 (0)