Skip to content

April10 preview3 Release Artifacts #9845

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 10, 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
15 changes: 15 additions & 0 deletions release-notes/10.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,40 +16,55 @@ It is currently in development and not supported. .NET 10 is expected to be rele

| Date | Release |
| :-- | :-- |
| 2025/04/10 | [10.0.0 Preview 3](preview/preview3/README.md) |
| 2025/03/18 | [10.0.0 Preview 2](preview/preview2/README.md) |
| 2025/02/25 | [10.0.0 Preview 1](preview/preview1/README.md) |

### .NET Libraries

- [What's new in .NET 10 libraries](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/overview#net-libraries)
- [Preview 3](preview/preview3/libraries.md)
- [Preview 2](preview/preview2/libraries.md)
- [Preview 1](preview/preview1/libraries.md)

### .NET Runtime

- [What's new in the .NET 10 runtime](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/runtime)
- [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 10](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-10/sdk)
- [Preview 3](preview/preview3/sdk.md)
- [Preview 2](preview/preview2/sdk.md)
- [Preview 1](preview/preview1/sdk.md)

### C\#

- [What's new in C# 14](https://learn.microsoft.com/dotnet/csharp/whats-new/csharp-14)
- [Preview 3](preview/preview3/csharp.md)
- [Preview 2](preview/preview2/csharp.md)
- [Preview 1](preview/preview1/csharp.md)

### ASP.NET Core

- [What's new in ASP.NET Core 10.0](https://learn.microsoft.com/aspnet/core/release-notes/aspnetcore-10.0)
- [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 10](https://learn.microsoft.com/dotnet/maui/whats-new/dotnet-10)
- [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 10](https://learn.microsoft.com/ef/core/what-is-new/ef-core-10.0/whatsnew)
- [Preview 3](preview/preview3/efcore.md)
- [Preview 2](preview/preview2/efcore.md)
- [Preview 2](preview/preview1/efcore.md)
4 changes: 2 additions & 2 deletions release-notes/10.0/install-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,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/ed3f7a1c-0aeb-4bff-8f93-db1b48c13dbc/dbd62e4564414b7de38e32ca47a0e9e3/dotnet-sdk-10.0.100-preview.1.25120.13-linux-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-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
10.0.100-preview.1.25120.13
10.0.100-preview.3.25201.16
```

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/10.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/8462c34b-dc1e-4793-aab0-449bd1419d1c/bac3f5d229638e0d8600b9d4b304c26e/dotnet-sdk-10.0.100-preview.1.25120.13-osx-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-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
10.0.100-preview.1.25120.13
10.0.100-preview.3.25201.16
```

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/10.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/f8fc17aa-29b7-4a34-b164-3c91e2d5a728/9dfcf0628bcd2b6f53d573a100b4e3ca/dotnet-sdk-10.0.100-preview.1.25120.13-win-x64.exe
C:\>curl -Lo dotnet.zip https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-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
10.0.100-preview.1.25120.13
10.0.100-preview.3.25201.16
```

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