Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Febcore2025 #9728

Merged
merged 17 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Welcome to the home of .NET [release notes](./release-notes/README.md) and [news

| Version | Release Date | Support | Latest Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
| [.NET 9](release-notes/9.0/README.md) | November 12, 2024 | [STS][policies] | [9.0.1][9.0.1] | May 12, 2026 |
| [.NET 8](release-notes/8.0/README.md) | [November 14, 2023](https://devblogs.microsoft.com/dotnet/announcing-dotnet-8/) | [LTS][policies] | [8.0.12][8.0.12] | November 10, 2026 |
| [.NET 9](release-notes/9.0/README.md) | November 12, 2024 | [STS][policies] | [9.0.2][9.0.2] | May 12, 2026 |
| [.NET 8](release-notes/8.0/README.md) | [November 14, 2023](https://devblogs.microsoft.com/dotnet/announcing-dotnet-8/) | [LTS][policies] | [8.0.13][8.0.13] | November 10, 2026 |

[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
[9.0.2]: release-notes/9.0/9.0.2/9.0.2.md
[8.0.13]: release-notes/8.0/8.0.13/8.0.13.md
[policies]: release-policies.md

* [Release notes](./release-notes/README.md)
Expand Down
106 changes: 106 additions & 0 deletions release-notes/8.0/8.0.13/8.0.113.md

Large diffs are not rendered by default.

721 changes: 721 additions & 0 deletions release-notes/8.0/8.0.13/8.0.13.md

Large diffs are not rendered by default.

110 changes: 110 additions & 0 deletions release-notes/8.0/8.0.13/8.0.309.md

Large diffs are not rendered by default.

738 changes: 738 additions & 0 deletions release-notes/8.0/8.0.13/release.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions release-notes/8.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

| Date | Release |
| :-- | :-- |
| 2025/02/11 | [8.0.13](./8.0.13/8.0.13.md) |
| 2025/01/14 | [8.0.12](./8.0.12/8.0.12.md) |
| 2024/11/12 | [8.0.11](./8.0.11/8.0.11.md) |
| 2024/10/08 | [8.0.10](./8.0.10/8.0.10.md) |
Expand Down
4 changes: 2 additions & 2 deletions release-notes/8.0/install-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```bash
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/a91ddad4-a3c2-4303-9efc-1ca6b7af850c/be1763df9211599df1cf1c6f504b3c41/dotnet-sdk-8.0.405-linux-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/d2abdb4c-a96e-4123-9351-e4dd2ea20905/e8010ae2688786ffc1ebca4ebb52f41b/dotnet-sdk-8.0.406-linux-x64.tar.gz
~# mkdir dotnet
~# tar -C dotnet -xf dotnet.tar.gz
~# rm dotnet.tar.gz
~# export DOTNET_ROOT=~/dotnet
~# export PATH=$PATH:~/dotnet
~# dotnet --version
8.0.405
8.0.406
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
4 changes: 2 additions & 2 deletions release-notes/8.0/install-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```bash
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/485c72db-0004-4f65-a37f-1f80bb445fd5/dc59499a684b6c8677ae7f43ff0e0062/dotnet-sdk-8.0.405-osx-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/23552ac2-5161-402d-a7d7-397c909d945e/28a0315d5442c2a4da5374e421e41e3e/dotnet-sdk-8.0.406-osx-x64.tar.gz
~# mkdir dotnet
~# tar -C dotnet -xf dotnet.tar.gz
~# rm dotnet.tar.gz
~# export DOTNET_ROOT=~/dotnet
~# export PATH=$PATH:~/dotnet
~# dotnet --version
8.0.405
8.0.406
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
4 changes: 2 additions & 2 deletions release-notes/8.0/install-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```console
C:\>curl -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/4b3b488c-9e69-4d60-bba2-79412b68d15d/b55f49a270c3413a6ea4b208f820515d/dotnet-sdk-8.0.405-win-x64.exe
C:\>curl -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/bd44cdb8-dcac-4f1f-8246-1ee392c68dac/ba818a6e513c305d4438c7da45c2b085/dotnet-sdk-8.0.406-win-x64.exe
C:\>tar -C dotnet -xf dotnet.zip
C:\>del dotnet.zip
C:\>set DOTNET_ROOT=C:\dotnet
C:\>set PATH=%PATH%;C:\dotnet
C:\>dotnet --version
8.0.405
8.0.406
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
Loading