Fix linter errors (#9723)
* Fix linter errors * Add additional markdownlint rules * Update linter rules * Update .gitignore * Add settings.json
This commit is contained in:
22
.github/linters/.markdown-lint.yml
vendored
Normal file
22
.github/linters/.markdown-lint.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
###########################
|
||||
###########################
|
||||
## Markdown Linter rules ##
|
||||
###########################
|
||||
###########################
|
||||
|
||||
# Linter rules doc:
|
||||
# - https://github.com/DavidAnson/markdownlint
|
||||
#
|
||||
# Note:
|
||||
# To comment out a single error:
|
||||
# <!-- markdownlint-disable -->
|
||||
# any violations you want
|
||||
# <!-- markdownlint-restore -->
|
||||
#
|
||||
|
||||
###############
|
||||
# Rules by id #
|
||||
###############
|
||||
default: true
|
||||
MD013: false # line length
|
||||
12
.github/linters/.markdownlintignore
vendored
12
.github/linters/.markdownlintignore
vendored
@@ -1,11 +1,3 @@
|
||||
# Ignore errors from before linting was enabled to allow incremental fixes
|
||||
/*.md
|
||||
9.0/preview1/**
|
||||
9.0/preview2/**
|
||||
9.0/preview3/**
|
||||
9.0/preview4/**
|
||||
9.0/preview5/**
|
||||
9.0/preview6/**
|
||||
9.0/preview7/**
|
||||
9.0/README.md
|
||||
Aspire/announcing-preview-3.md
|
||||
|
||||
**/api-diff/**
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,7 +6,8 @@ project.lock.json
|
||||
nupkg/
|
||||
|
||||
# Visual Studio Code
|
||||
.vscode/
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
|
||||
# Rider
|
||||
.idea/
|
||||
|
||||
9
.vscode/settings.json
vendored
Normal file
9
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"markdownlint.lintWorkspaceGlobs": [
|
||||
"**/*.{md,mkd,mdwn,mdown,markdown,markdn,mdtxt,mdtext,workbook}",
|
||||
"!**/api-diff/**"
|
||||
],
|
||||
"markdownlint.config": {
|
||||
"MD013": false
|
||||
}
|
||||
}
|
||||
@@ -4,12 +4,12 @@ The .NET 8.0.112 release is available for download. This SDK includes the releas
|
||||
|
||||
## Downloads
|
||||
|
||||
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |Windows Desktop Runtime |
|
||||
| | SDK Installer | SDK Binaries | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |Windows Desktop Runtime |
|
||||
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: | :-----------------: |
|
||||
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] \| [Arm64][dotnet-sdk-win-arm64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm64][dotnet-sdk-win-arm64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] \| [Arm64][dotnet-runtime-win-arm64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm64][dotnet-runtime-win-arm64.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \|<br/> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] \| [Arm64][windowsdesktop-runtime-win-arm64.exe] |
|
||||
| macOS | [x64][dotnet-sdk-osx-x64.pkg] \| [ARM64][dotnet-sdk-osx-arm64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] \| [ARM64][dotnet-sdk-osx-arm64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] \| [ARM64][dotnet-runtime-osx-arm64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] \| [ARM64][dotnet-runtime-osx-arm64.tar.gz]| [x64][aspnetcore-runtime-osx-x64.tar.gz] \| [ARM64][aspnetcore-runtime-osx-arm64.tar.gz] | - |<sup>1</sup>
|
||||
| Linux | [Snap and Package Manager](../install-linux.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-sdk-linux-musl-arm.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | [Packages (x64)][linux-packages] | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-runtime-linux-musl-arm.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [Arm][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] | - | <sup>1</sup> |
|
||||
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime]
|
||||
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] \| [Arm64][dotnet-sdk-win-arm64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm64][dotnet-sdk-win-arm64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] \| [Arm64][dotnet-runtime-win-arm64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm64][dotnet-runtime-win-arm64.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [Hosting Bundle][dotnet-hosting-win.exe] | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] \| [Arm64][windowsdesktop-runtime-win-arm64.exe] |
|
||||
| macOS | [x64][dotnet-sdk-osx-x64.pkg] \| [ARM64][dotnet-sdk-osx-arm64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] \| [ARM64][dotnet-sdk-osx-arm64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] \| [ARM64][dotnet-runtime-osx-arm64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] \| [ARM64][dotnet-runtime-osx-arm64.tar.gz]| [x64][aspnetcore-runtime-osx-x64.tar.gz] \| [ARM64][aspnetcore-runtime-osx-arm64.tar.gz] | - |
|
||||
| Linux | [Snap and Package Manager](../install-linux.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-sdk-linux-musl-arm.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | [Packages (x64)][linux-packages] | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-runtime-linux-musl-arm.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz] \| [Arm][aspnetcore-runtime-linux-arm.tar.gz] \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz] \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] | - |
|
||||
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] |
|
||||
|
||||
1. Includes the .NET Runtime and ASP.NET Core Runtime
|
||||
2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Runtime.
|
||||
@@ -22,20 +22,16 @@ You can check your .NET SDK version by running the following command. The exampl
|
||||
$ dotnet --version
|
||||
8.0.112
|
||||
```
|
||||
|
||||
Visit [.NET Documentation](https://learn.microsoft.com/dotnet/) to learn about .NET, for building many different types of applications.
|
||||
|
||||
## Visual Studio Compatibility
|
||||
|
||||
You need [Visual Studio 17.8](https://visualstudio.microsoft.com) or later to use .NET 8.0 on Windows. On macOS, you need the latest version of [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/). The [C# extension](https://code.visualstudio.com/docs/languages/dotnet) for [Visual Studio Code](https://code.visualstudio.com/) supports .NET 8.0 and C# 10.0.
|
||||
|
||||
[blob-runtime]: https://builds.dotnet.microsoft.com/dotnet/Runtime/
|
||||
[blob-sdk]: https://builds.dotnet.microsoft.com/dotnet/Sdk/
|
||||
[release-notes]: 8.0.112.md
|
||||
|
||||
[checksums-runtime]: https://builds.dotnet.microsoft.com/dotnet/checksums/8.0.12-sha.txt
|
||||
[checksums-sdk]: https://builds.dotnet.microsoft.com/dotnet/checksums/8.0.12-sha.txt
|
||||
|
||||
[linux-install]: https://learn.microsoft.com/dotnet/core/install/linux
|
||||
[linux-packages]: ../install-linux.md
|
||||
|
||||
[//]: # ( Runtime 8.0.12)
|
||||
@@ -58,40 +54,24 @@ You need [Visual Studio 17.8](https://visualstudio.microsoft.com) or later to us
|
||||
|
||||
[//]: # ( WindowsDesktop 8.0.12)
|
||||
[windowsdesktop-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/87fb3e9d-aeac-4081-877f-bebee255590e/91660fdf05cd58d1dbecaa3b7f604159/windowsdesktop-runtime-8.0.12-win-arm64.exe
|
||||
[windowsdesktop-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/80f19884-cbf4-4480-8624-65c7daea32d3/5cfeae5f660f35e5f87793f58b2c8fbd/windowsdesktop-runtime-8.0.12-win-arm64.zip
|
||||
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/f1e7ffc8-c278-4339-b460-517420724524/f36bb75b2e86a52338c4d3a90f8dac9b/windowsdesktop-runtime-8.0.12-win-x64.exe
|
||||
[windowsdesktop-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/50c8d583-5433-4c69-9301-910c54c21e11/9a07f95ef6bfb572063b3e7f112c01bf/windowsdesktop-runtime-8.0.12-win-x64.zip
|
||||
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/acf6e5d3-1e2f-4072-833c-fa84a10841c5/acd48342207247f404a5aaa58d1a1ea1/windowsdesktop-runtime-8.0.12-win-x86.exe
|
||||
[windowsdesktop-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/6dba8a66-f1e1-4666-94b4-577ad5f4af96/e77fbdc4c5095194a87296ca2f133bd4/windowsdesktop-runtime-8.0.12-win-x86.zip
|
||||
|
||||
[//]: # ( ASP 8.0.12)
|
||||
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/26fe9c15-40f6-4eb5-88fd-63d98eb259fa/c36789f8460b7e20371c38129d7fc160/aspnetcore-runtime-8.0.12-linux-arm.tar.gz
|
||||
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8953c6fe-3542-4cee-b022-a50e029882a5/1bbce821b1ae97ed11b305dd708c0437/aspnetcore-runtime-8.0.12-linux-arm64.tar.gz
|
||||
[aspnetcore-runtime-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d7cca8a1-ed7d-4dd1-a993-6766287f2f39/2775af53e9a24ddc6afac345ad417b5e/aspnetcore-runtime-8.0.12-linux-musl-arm.tar.gz
|
||||
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/90290d06-b7b6-4ad0-99d6-1bab0a557051/3ba84f7ecb0f681b8f7cead66124c373/aspnetcore-runtime-8.0.12-linux-musl-arm64.tar.gz
|
||||
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8f3afd94-2927-4be9-a935-da9f4dcdb004/c594a54091b5b85063f38879d50123a4/aspnetcore-runtime-8.0.12-linux-musl-x64.tar.gz
|
||||
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/df752f45-7e9f-4d13-8568-a88adda5aa04/9d59726fb38525b4956cbb1e1fe8a2c8/aspnetcore-runtime-8.0.12-linux-x64.tar.gz
|
||||
[aspnetcore-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/16c2edb0-5977-4a8d-9060-1d8a673c6b44/6802cfea6e93712b7872614bf47ebb9f/aspnetcore-runtime-8.0.12-osx-arm64.tar.gz
|
||||
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2d69b57b-d997-4364-a898-220293f49d9f/c192bee87281e416703f53da103925d3/aspnetcore-runtime-8.0.12-osx-x64.tar.gz
|
||||
[aspnetcore-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/624ee47f-8abe-400a-a092-417b5937342d/a9fb583e5ec5b01170d779ea934dd0de/aspnetcore-runtime-8.0.12-win-arm64.exe
|
||||
[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/39c91812-45bc-43b1-acf5-0ff7656159b4/65fe28760d44b3032ad372e4460748c0/aspnetcore-runtime-8.0.12-win-arm64.zip
|
||||
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/462a0410-741f-4368-a3eb-9014e33d83be/fe802ebd409a3a1c8d2646c2ce546997/aspnetcore-runtime-8.0.12-win-x64.exe
|
||||
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/8d0d7926-8b5c-41fe-b3b3-3b5403463b82/14cf47a4a799dc8de46334359455fbec/aspnetcore-runtime-8.0.12-win-x64.zip
|
||||
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/dac8c971-de4e-4697-b08e-a601d42caae1/e93f55b140739da2392222946569f6a6/aspnetcore-runtime-8.0.12-win-x86.exe
|
||||
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/72c00f36-9fdf-49e7-b9cb-d959a4a296ee/6e20727162ad7d00ef073d35bac759f3/aspnetcore-runtime-8.0.12-win-x86.zip
|
||||
[aspnetcore-runtime-composite-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e29fde86-a11a-467e-8910-1022092455fb/9145dec78af4967c95de19ef40d93e47/aspnetcore-runtime-composite-8.0.12-linux-arm.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d607c4e0-b1a5-42f0-b6ac-027283d62c19/e0aa5c568b7a128bda09b931da9e55ad/aspnetcore-runtime-composite-8.0.12-linux-arm64.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6ca36067-ed30-4704-bf8b-8e083944cf6e/e77f983134d73eddee72ca742f91500c/aspnetcore-runtime-composite-8.0.12-linux-musl-arm.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ec91cd40-6280-471e-9772-16ae01c0c208/3b53761f9da3685ff5a97d6843d53ada/aspnetcore-runtime-composite-8.0.12-linux-musl-arm64.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f9a7561b-aaa3-42fa-ae90-543d238f39c7/ee41c0d3acd73a31435cb03e06204e46/aspnetcore-runtime-composite-8.0.12-linux-musl-x64.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/439907be-4685-4058-ac3e-2e8817e89056/de833ca8341b833acb3bafce6fbe0b80/aspnetcore-runtime-composite-8.0.12-linux-x64.tar.gz
|
||||
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/976226c0-41dc-49ba-ad3c-14ed3f55294d/adfedbe9509adcca236e9035d0ba7d0a/dotnet-hosting-8.0.12-win.exe
|
||||
|
||||
[//]: # ( SDK 8.0.112)
|
||||
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e9e78298-4150-465c-969b-8b1d2fb069e9/88bfb81d6fc900bf1b68ca3ab7631443/dotnet-sdk-8.0.112-linux-arm.tar.gz
|
||||
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f6d8b6bf-4e75-4ba0-a1e6-cb79255b48ab/b8cb663305eff90d17ac97e46e1e0066/dotnet-sdk-8.0.112-linux-arm64.tar.gz
|
||||
[dotnet-sdk-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/672126ac-5134-4b27-ba18-28cb02fdb168/1eaaea4bc9a463f692abca1a45e9b5fb/dotnet-sdk-8.0.112-linux-musl-arm.tar.gz
|
||||
[dotnet-sdk-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/933119f6-9819-4a3b-b6d9-e737054bdf60/9d27ea1e7a5d00226f4a343f2cda76ad/dotnet-sdk-8.0.112-linux-musl-arm64.tar.gz
|
||||
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7c1c61b0-ea00-4eb6-a97a-31560c81b5b0/f5a5ede05aca2fbaca5b1486c2571462/dotnet-sdk-8.0.112-linux-musl-x64.tar.gz
|
||||
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1f338ac7-da1a-4d21-b78c-6c769b9c2dbe/5fd0e2846ef9f7c8bf6095ce201f50de/dotnet-sdk-8.0.112-linux-x64.tar.gz
|
||||
[dotnet-sdk-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/0fe7dc6e-5226-4d63-b2f3-e3446e14f2e8/aa3cd7ca07e284ebcfeed53bd6b1753f/dotnet-sdk-8.0.112-osx-arm64.pkg
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -4,12 +4,12 @@ The .NET 8.0.308 release is available for download. This SDK includes the previo
|
||||
|
||||
## Downloads
|
||||
|
||||
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |Windows Desktop Runtime |
|
||||
| | SDK Installer | SDK Binaries | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |Windows Desktop Runtime |
|
||||
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: | :-----------------: |
|
||||
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] \| [Arm64][dotnet-sdk-win-arm64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm64][dotnet-sdk-win-arm64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] \| [Arm64][dotnet-runtime-win-arm64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm64][dotnet-runtime-win-arm64.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \|<br/> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] \| [Arm64][windowsdesktop-runtime-win-arm64.exe] |
|
||||
| macOS | [x64][dotnet-sdk-osx-x64.pkg] \| [ARM64][dotnet-sdk-osx-arm64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] \| [ARM64][dotnet-sdk-osx-arm64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] \| [ARM64][dotnet-runtime-osx-arm64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] \| [ARM64][dotnet-runtime-osx-arm64.tar.gz]| [x64][aspnetcore-runtime-osx-x64.tar.gz] \| [ARM64][aspnetcore-runtime-osx-arm64.tar.gz] | - |<sup>1</sup>
|
||||
| Linux | [Snap and Package Manager](../install-linux.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-sdk-linux-musl-arm.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | [Packages (x64)][linux-packages] | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-runtime-linux-musl-arm.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [Arm][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] | - | <sup>1</sup> |
|
||||
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime]
|
||||
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] \| [Arm64][dotnet-sdk-win-arm64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm64][dotnet-sdk-win-arm64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] \| [Arm64][dotnet-runtime-win-arm64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm64][dotnet-runtime-win-arm64.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [Hosting Bundle][dotnet-hosting-win.exe] | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] \| [Arm64][windowsdesktop-runtime-win-arm64.exe] |
|
||||
| macOS | [x64][dotnet-sdk-osx-x64.pkg] \| [ARM64][dotnet-sdk-osx-arm64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] \| [ARM64][dotnet-sdk-osx-arm64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] \| [ARM64][dotnet-runtime-osx-arm64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] \| [ARM64][dotnet-runtime-osx-arm64.tar.gz]| [x64][aspnetcore-runtime-osx-x64.tar.gz] \| [ARM64][aspnetcore-runtime-osx-arm64.tar.gz] | - |
|
||||
| Linux | [Snap and Package Manager](../install-linux.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-sdk-linux-musl-arm.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | [Packages (x64)][linux-packages] | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-runtime-linux-musl-arm.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz] \| [Arm][aspnetcore-runtime-linux-arm.tar.gz] \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz] \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] | - |
|
||||
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] |
|
||||
|
||||
1. Includes the .NET Runtime and ASP.NET Core Runtime
|
||||
2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Runtime.
|
||||
@@ -22,24 +22,16 @@ You can check your .NET SDK version by running the following command. The exampl
|
||||
$ dotnet --version
|
||||
8.0.308
|
||||
```
|
||||
|
||||
Visit [.NET Documentation](https://learn.microsoft.com/dotnet/) to learn about .NET, for building many different types of applications.
|
||||
|
||||
## Visual Studio Compatibility
|
||||
|
||||
You need [Visual Studio 17.10](https://visualstudio.microsoft.com) or later to use .NET 8.0 on Windows. On macOS, you need the latest version of [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/). The [C# extension](https://code.visualstudio.com/docs/languages/dotnet) for [Visual Studio Code](https://code.visualstudio.com/) supports .NET 8.0 and C# 10.0.
|
||||
|
||||
[blob-runtime]: https://builds.dotnet.microsoft.com/dotnet/Runtime/
|
||||
[blob-sdk]: https://builds.dotnet.microsoft.com/dotnet/Sdk/
|
||||
[release-notes]: 8.0.308.md
|
||||
|
||||
[checksums-runtime]: https://builds.dotnet.microsoft.com/dotnet/checksums/8.0.12-sha.txt
|
||||
[checksums-sdk]: https://builds.dotnet.microsoft.com/dotnet/checksums/8.0.12-sha.txt
|
||||
|
||||
[linux-install]: https://learn.microsoft.com/dotnet/core/install/linux
|
||||
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/january-2025-updates/
|
||||
[aspnet-blog]: https://devblogs.microsoft.com/dotnet/announcing-asp-net-core-in-net-8/
|
||||
[maui-blog]: https://devblogs.microsoft.com/dotnet/update-on-dotnet-maui/
|
||||
|
||||
[linux-packages]: ../install-linux.md
|
||||
|
||||
[//]: # ( Runtime 8.0.12)
|
||||
@@ -62,40 +54,24 @@ You need [Visual Studio 17.10](https://visualstudio.microsoft.com) or later to u
|
||||
|
||||
[//]: # ( WindowsDesktop 8.0.12)
|
||||
[windowsdesktop-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/87fb3e9d-aeac-4081-877f-bebee255590e/91660fdf05cd58d1dbecaa3b7f604159/windowsdesktop-runtime-8.0.12-win-arm64.exe
|
||||
[windowsdesktop-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/80f19884-cbf4-4480-8624-65c7daea32d3/5cfeae5f660f35e5f87793f58b2c8fbd/windowsdesktop-runtime-8.0.12-win-arm64.zip
|
||||
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/f1e7ffc8-c278-4339-b460-517420724524/f36bb75b2e86a52338c4d3a90f8dac9b/windowsdesktop-runtime-8.0.12-win-x64.exe
|
||||
[windowsdesktop-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/50c8d583-5433-4c69-9301-910c54c21e11/9a07f95ef6bfb572063b3e7f112c01bf/windowsdesktop-runtime-8.0.12-win-x64.zip
|
||||
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/acf6e5d3-1e2f-4072-833c-fa84a10841c5/acd48342207247f404a5aaa58d1a1ea1/windowsdesktop-runtime-8.0.12-win-x86.exe
|
||||
[windowsdesktop-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/6dba8a66-f1e1-4666-94b4-577ad5f4af96/e77fbdc4c5095194a87296ca2f133bd4/windowsdesktop-runtime-8.0.12-win-x86.zip
|
||||
|
||||
[//]: # ( ASP 8.0.12)
|
||||
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/26fe9c15-40f6-4eb5-88fd-63d98eb259fa/c36789f8460b7e20371c38129d7fc160/aspnetcore-runtime-8.0.12-linux-arm.tar.gz
|
||||
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8953c6fe-3542-4cee-b022-a50e029882a5/1bbce821b1ae97ed11b305dd708c0437/aspnetcore-runtime-8.0.12-linux-arm64.tar.gz
|
||||
[aspnetcore-runtime-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d7cca8a1-ed7d-4dd1-a993-6766287f2f39/2775af53e9a24ddc6afac345ad417b5e/aspnetcore-runtime-8.0.12-linux-musl-arm.tar.gz
|
||||
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/90290d06-b7b6-4ad0-99d6-1bab0a557051/3ba84f7ecb0f681b8f7cead66124c373/aspnetcore-runtime-8.0.12-linux-musl-arm64.tar.gz
|
||||
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8f3afd94-2927-4be9-a935-da9f4dcdb004/c594a54091b5b85063f38879d50123a4/aspnetcore-runtime-8.0.12-linux-musl-x64.tar.gz
|
||||
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/df752f45-7e9f-4d13-8568-a88adda5aa04/9d59726fb38525b4956cbb1e1fe8a2c8/aspnetcore-runtime-8.0.12-linux-x64.tar.gz
|
||||
[aspnetcore-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/16c2edb0-5977-4a8d-9060-1d8a673c6b44/6802cfea6e93712b7872614bf47ebb9f/aspnetcore-runtime-8.0.12-osx-arm64.tar.gz
|
||||
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2d69b57b-d997-4364-a898-220293f49d9f/c192bee87281e416703f53da103925d3/aspnetcore-runtime-8.0.12-osx-x64.tar.gz
|
||||
[aspnetcore-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/624ee47f-8abe-400a-a092-417b5937342d/a9fb583e5ec5b01170d779ea934dd0de/aspnetcore-runtime-8.0.12-win-arm64.exe
|
||||
[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/39c91812-45bc-43b1-acf5-0ff7656159b4/65fe28760d44b3032ad372e4460748c0/aspnetcore-runtime-8.0.12-win-arm64.zip
|
||||
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/462a0410-741f-4368-a3eb-9014e33d83be/fe802ebd409a3a1c8d2646c2ce546997/aspnetcore-runtime-8.0.12-win-x64.exe
|
||||
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/8d0d7926-8b5c-41fe-b3b3-3b5403463b82/14cf47a4a799dc8de46334359455fbec/aspnetcore-runtime-8.0.12-win-x64.zip
|
||||
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/dac8c971-de4e-4697-b08e-a601d42caae1/e93f55b140739da2392222946569f6a6/aspnetcore-runtime-8.0.12-win-x86.exe
|
||||
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/72c00f36-9fdf-49e7-b9cb-d959a4a296ee/6e20727162ad7d00ef073d35bac759f3/aspnetcore-runtime-8.0.12-win-x86.zip
|
||||
[aspnetcore-runtime-composite-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e29fde86-a11a-467e-8910-1022092455fb/9145dec78af4967c95de19ef40d93e47/aspnetcore-runtime-composite-8.0.12-linux-arm.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d607c4e0-b1a5-42f0-b6ac-027283d62c19/e0aa5c568b7a128bda09b931da9e55ad/aspnetcore-runtime-composite-8.0.12-linux-arm64.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6ca36067-ed30-4704-bf8b-8e083944cf6e/e77f983134d73eddee72ca742f91500c/aspnetcore-runtime-composite-8.0.12-linux-musl-arm.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ec91cd40-6280-471e-9772-16ae01c0c208/3b53761f9da3685ff5a97d6843d53ada/aspnetcore-runtime-composite-8.0.12-linux-musl-arm64.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f9a7561b-aaa3-42fa-ae90-543d238f39c7/ee41c0d3acd73a31435cb03e06204e46/aspnetcore-runtime-composite-8.0.12-linux-musl-x64.tar.gz
|
||||
[aspnetcore-runtime-composite-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/439907be-4685-4058-ac3e-2e8817e89056/de833ca8341b833acb3bafce6fbe0b80/aspnetcore-runtime-composite-8.0.12-linux-x64.tar.gz
|
||||
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/976226c0-41dc-49ba-ad3c-14ed3f55294d/adfedbe9509adcca236e9035d0ba7d0a/dotnet-hosting-8.0.12-win.exe
|
||||
|
||||
[//]: # ( SDK 8.0.308)
|
||||
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/faa351a2-48ab-46be-b7cb-88444c642735/7c711c1cdd133f3e9eb3243bf51af198/dotnet-sdk-8.0.308-linux-arm.tar.gz
|
||||
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/086519bb-5612-4c2c-8b80-c7984a46a276/4d4117e088dcda14516a8af754f25249/dotnet-sdk-8.0.308-linux-arm64.tar.gz
|
||||
[dotnet-sdk-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/711b3696-81d7-4369-b9d4-a80190675959/4c08677a37df7a25e2eb44e05eec9ea3/dotnet-sdk-8.0.308-linux-musl-arm.tar.gz
|
||||
[dotnet-sdk-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6f538f52-0116-408d-aee8-0e87d24c2f1a/14bbb255527d485953c961ae93b77778/dotnet-sdk-8.0.308-linux-musl-arm64.tar.gz
|
||||
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4801adb8-3aeb-4a4a-a2b4-78d213f7732c/a5f025926bd2463241d8774f4f6edf3f/dotnet-sdk-8.0.308-linux-musl-x64.tar.gz
|
||||
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d7207d3f-a42e-4304-b4c7-73aeac93577d/156593f4ffbc65dc2dab850ba37ca270/dotnet-sdk-8.0.308-linux-x64.tar.gz
|
||||
[dotnet-sdk-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/61cd18f3-cf9b-446c-a813-693833e147a6/dec6d37b5ddcd4113c48f662b351cd90/dotnet-sdk-8.0.308-osx-arm64.pkg
|
||||
|
||||
@@ -73,7 +73,6 @@ The NrbfDecoder component in .NET 9 contains a denial of service vulnerability d
|
||||
You need [Visual Studio 17.12](https://visualstudio.microsoft.com) or later to use .NET 9.0 on Windows. While not officially supported, we’ve also enabled rudimentary support for .NET 9 in Visual Studio for Mac. Users have to enable a preview feature in Preferences to enable the IDE to discover and use the .NET 9 SDK for creating, loading, building, and debugging projects.
|
||||
The [C# extension](https://code.visualstudio.com/docs/languages/dotnet) for [Visual Studio Code](https://code.visualstudio.com/) supports .NET 9.0 and C# 12.
|
||||
|
||||
|
||||
[9.0.100]: 9.0.0.md
|
||||
[9.0.101]: 9.0.101.md
|
||||
[9.0.200 Preview]: 9.0.200-preview.md
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -30,80 +30,80 @@
|
||||
|
||||
### .NET Libraries
|
||||
|
||||
* [What's new in .NET 9 libraries](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-9/overview#net-libraries)
|
||||
* [RC 2](preview/rc2/libraries.md)
|
||||
* [RC 1](preview/rc1/libraries.md)
|
||||
* [Preview 7](preview/preview7/libraries.md)
|
||||
* [Preview 6](preview/preview6/libraries.md)
|
||||
* [Preview 5](preview/preview5/libraries.md)
|
||||
* [Preview 4](preview/preview4/libraries.md)
|
||||
* [Preview 3](preview/preview3/libraries.md)
|
||||
* Preview 2: No release notes
|
||||
* [Preview 1](preview/preview1/libraries.md)
|
||||
- [What's new in .NET 9 libraries](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-9/overview#net-libraries)
|
||||
- [RC 2](preview/rc2/libraries.md)
|
||||
- [RC 1](preview/rc1/libraries.md)
|
||||
- [Preview 7](preview/preview7/libraries.md)
|
||||
- [Preview 6](preview/preview6/libraries.md)
|
||||
- [Preview 5](preview/preview5/libraries.md)
|
||||
- [Preview 4](preview/preview4/libraries.md)
|
||||
- [Preview 3](preview/preview3/libraries.md)
|
||||
- Preview 2: No release notes
|
||||
- [Preview 1](preview/preview1/libraries.md)
|
||||
|
||||
### .NET Runtime
|
||||
|
||||
* [What's new in the .NET 9 runtime](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-9/runtime)
|
||||
* [RC 2](preview/rc2/runtime.md)
|
||||
* RC 1: No release notes
|
||||
* [Preview 7](preview/preview7/runtime.md)
|
||||
* [Preview 6](preview/preview6/runtime.md)
|
||||
* Preview 5: No release notes
|
||||
* [Preview 4](preview/preview4/runtime.md)
|
||||
* [Preview 3](preview/preview3/runtime.md)
|
||||
* [Preview 2](preview/preview2/runtime.md)
|
||||
* [Preview 1](preview/preview1/runtime.md)
|
||||
- [What's new in the .NET 9 runtime](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-9/runtime)
|
||||
- [RC 2](preview/rc2/runtime.md)
|
||||
- RC 1: No release notes
|
||||
- [Preview 7](preview/preview7/runtime.md)
|
||||
- [Preview 6](preview/preview6/runtime.md)
|
||||
- Preview 5: No release notes
|
||||
- [Preview 4](preview/preview4/runtime.md)
|
||||
- [Preview 3](preview/preview3/runtime.md)
|
||||
- [Preview 2](preview/preview2/runtime.md)
|
||||
- [Preview 1](preview/preview1/runtime.md)
|
||||
|
||||
### .NET SDK
|
||||
|
||||
* [What's new in the SDK for .NET 9](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-9/sdk)
|
||||
* [RC 2](preview/rc2/sdk.md)
|
||||
* [RC 1](preview/rc1/sdk.md)
|
||||
* [Preview 7](preview/preview7/sdk.md)
|
||||
* [Preview 6](preview/preview6/sdk.md)
|
||||
* Preview 5: No release notes
|
||||
* Preview 4: No release notes
|
||||
* [Preview 3](preview/preview3/sdk.md)
|
||||
* [Preview 2](preview/preview2/sdk.md)
|
||||
* [Preview 1](preview/preview1/sdk.md)
|
||||
- [What's new in the SDK for .NET 9](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-9/sdk)
|
||||
- [RC 2](preview/rc2/sdk.md)
|
||||
- [RC 1](preview/rc1/sdk.md)
|
||||
- [Preview 7](preview/preview7/sdk.md)
|
||||
- [Preview 6](preview/preview6/sdk.md)
|
||||
- Preview 5: No release notes
|
||||
- Preview 4: No release notes
|
||||
- [Preview 3](preview/preview3/sdk.md)
|
||||
- [Preview 2](preview/preview2/sdk.md)
|
||||
- [Preview 1](preview/preview1/sdk.md)
|
||||
|
||||
### C\#
|
||||
|
||||
* [What's new in C# 13](https://learn.microsoft.com/dotnet/csharp/whats-new/csharp-13)
|
||||
* [Preview 7](preview/preview7/csharp.md)
|
||||
* [Preview 6](preview/preview6/csharp.md)
|
||||
- [What's new in C# 13](https://learn.microsoft.com/dotnet/csharp/whats-new/csharp-13)
|
||||
- [Preview 7](preview/preview7/csharp.md)
|
||||
- [Preview 6](preview/preview6/csharp.md)
|
||||
|
||||
### ASP.NET Core
|
||||
|
||||
* [What's new in ASP.NET Core 9.0](https://learn.microsoft.com/aspnet/core/release-notes/aspnetcore-9.0)
|
||||
* [RC 2](preview/rc2/aspnetcore.md)
|
||||
* [RC 1](preview/rc1/aspnetcore.md)
|
||||
* [Preview 7](preview/preview7/aspnetcore.md)
|
||||
* [Preview 6](preview/preview6/aspnetcore.md)
|
||||
* [Preview 5](preview/preview5/aspnetcore.md)
|
||||
* [Preview 4](preview/preview4/aspnetcore.md)
|
||||
* [Preview 3](preview/preview3/aspnetcore.md)
|
||||
* [Preview 2](preview/preview2/aspnetcore.md)
|
||||
* [Preview 1](preview/preview1/aspnetcore.md)
|
||||
- [What's new in ASP.NET Core 9.0](https://learn.microsoft.com/aspnet/core/release-notes/aspnetcore-9.0)
|
||||
- [RC 2](preview/rc2/aspnetcore.md)
|
||||
- [RC 1](preview/rc1/aspnetcore.md)
|
||||
- [Preview 7](preview/preview7/aspnetcore.md)
|
||||
- [Preview 6](preview/preview6/aspnetcore.md)
|
||||
- [Preview 5](preview/preview5/aspnetcore.md)
|
||||
- [Preview 4](preview/preview4/aspnetcore.md)
|
||||
- [Preview 3](preview/preview3/aspnetcore.md)
|
||||
- [Preview 2](preview/preview2/aspnetcore.md)
|
||||
- [Preview 1](preview/preview1/aspnetcore.md)
|
||||
|
||||
### .NET MAUI
|
||||
|
||||
* [What's new in .NET MAUI for .NET 9](https://learn.microsoft.com/dotnet/maui/whats-new/dotnet-9)
|
||||
* [RC 2](preview/rc2/dotnetmaui.md)
|
||||
* [RC 1](preview/rc1/dotnetmaui.md)
|
||||
* [Preview 7](preview/preview7/dotnetmaui.md)
|
||||
* [Preview 6](preview/preview6/dotnetmaui.md)
|
||||
* [Preview 5](preview/preview5/dotnetmaui.md)
|
||||
* [Preview 4](preview/preview4/dotnetmaui.md)
|
||||
* [Preview 3](preview/preview3/dotnetmaui.md)
|
||||
* [Preview 2](preview/preview2/dotnetmaui.md)
|
||||
* [Preview 1](preview/preview1/dotnetmaui.md)
|
||||
- [What's new in .NET MAUI for .NET 9](https://learn.microsoft.com/dotnet/maui/whats-new/dotnet-9)
|
||||
- [RC 2](preview/rc2/dotnetmaui.md)
|
||||
- [RC 1](preview/rc1/dotnetmaui.md)
|
||||
- [Preview 7](preview/preview7/dotnetmaui.md)
|
||||
- [Preview 6](preview/preview6/dotnetmaui.md)
|
||||
- [Preview 5](preview/preview5/dotnetmaui.md)
|
||||
- [Preview 4](preview/preview4/dotnetmaui.md)
|
||||
- [Preview 3](preview/preview3/dotnetmaui.md)
|
||||
- [Preview 2](preview/preview2/dotnetmaui.md)
|
||||
- [Preview 1](preview/preview1/dotnetmaui.md)
|
||||
|
||||
### Entity Framework Core
|
||||
|
||||
* [What's new in EF Core 9](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew)
|
||||
* [Preview 5](preview/preview5/efcoreanddata.md)
|
||||
* [Preview 4](preview/preview4/efcoreanddata.md)
|
||||
* [Preview 3](preview/preview3/efcoreanddata.md)
|
||||
* [Preview 2](preview/preview2/efcoreanddata.md)
|
||||
* [Preview 1](preview/preview1/efcoreanddata.md)
|
||||
- [What's new in EF Core 9](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew)
|
||||
- [Preview 5](preview/preview5/efcoreanddata.md)
|
||||
- [Preview 4](preview/preview4/efcoreanddata.md)
|
||||
- [Preview 3](preview/preview3/efcoreanddata.md)
|
||||
- [Preview 2](preview/preview2/efcoreanddata.md)
|
||||
- [Preview 1](preview/preview1/efcoreanddata.md)
|
||||
|
||||
@@ -22,20 +22,20 @@ Patch releases are published monthly, often including fixes for vulnerabilities
|
||||
|
||||
Release notes include:
|
||||
|
||||
- Links to binaries
|
||||
- Notable changes, including CVEs
|
||||
- Compatibility information
|
||||
- Updated packages
|
||||
* Links to binaries
|
||||
* Notable changes, including CVEs
|
||||
* Compatibility information
|
||||
* Updated packages
|
||||
|
||||
Example markdown files:
|
||||
|
||||
- [8.0/8.0.12/8.0.12.md](./8.0/8.0.12/8.0.12.md)
|
||||
- [9.0/9.0.1/9.0.1.md](./9.0/9.0.1/9.0.1.md)
|
||||
* [8.0/8.0.12/8.0.12.md](./8.0/8.0.12/8.0.12.md)
|
||||
* [9.0/9.0.1/9.0.1.md](./9.0/9.0.1/9.0.1.md)
|
||||
|
||||
Example JSON files:
|
||||
|
||||
- [Major releases index](./releases-index.json)
|
||||
- [Major release](./9.0/releases.json)
|
||||
* [Major releases index](./releases-index.json)
|
||||
* [Major release](./9.0/releases.json)
|
||||
|
||||
`releases-index.json` and all the files it references are stored in blob storage and in GitHub. We use GitHub for easy discoverability of the files and Azure Blob Storage as our production platform.
|
||||
|
||||
@@ -49,8 +49,8 @@ We typically release a preview for the next major version each month. These incl
|
||||
|
||||
Examples:
|
||||
|
||||
- [.NET 9 Preview 1](./9.0/preview/preview1/README.md)
|
||||
- [.NET 9 Preview 6](./9.0/preview/preview6/README.md)
|
||||
* [.NET 9 Preview 1](./9.0/preview/preview1/README.md)
|
||||
* [.NET 9 Preview 6](./9.0/preview/preview6/README.md)
|
||||
|
||||
This content is used as source material for [What's New](https://learn.microsoft.com/dotnet/core/whats-new/) pages in official Microsoft docs.
|
||||
|
||||
@@ -62,8 +62,8 @@ Supported OS information is published for each major release. This information i
|
||||
|
||||
Examples:
|
||||
|
||||
- [.NET 8 Supported OSes (json)](./8.0/supported-os.json)
|
||||
- [.NET 8 Supported OSes (markdown)](./8.0/supported-os.md)
|
||||
* [.NET 8 Supported OSes (json)](./8.0/supported-os.json)
|
||||
* [.NET 8 Supported OSes (markdown)](./8.0/supported-os.md)
|
||||
|
||||
## OS packages
|
||||
|
||||
@@ -71,5 +71,5 @@ OS package information is published for each major release. This information ind
|
||||
|
||||
Examples:
|
||||
|
||||
- [.NET 9 OS packages (json)](./9.0/os-packages.json)
|
||||
- [.NET 9 OS packages (markdown)](./9.0/os-packages.md)
|
||||
* [.NET 9 OS packages (json)](./9.0/os-packages.json)
|
||||
* [.NET 9 OS packages (markdown)](./9.0/os-packages.md)
|
||||
|
||||
@@ -16,7 +16,6 @@ The following table lists supported releases.
|
||||
[9.0.1]: release-notes/9.0/9.0.1/9.0.1.md
|
||||
[8.0.12]: release-notes/8.0/8.0.12/8.0.12.md
|
||||
|
||||
|
||||
## End-of-life releases
|
||||
|
||||
The following table lists end-of-life releases.
|
||||
|
||||
Reference in New Issue
Block a user