The .NET 6.0.0 RC 1 and .NET SDK 6.0.100-rc.1.21463.6 releases are available for download. The latest 6.0 release is always listed at .NET 6.0 Releases.
During the hot reload compilation, tag helpers from references were not being resolved which resulted in component tags being treated as plain html. The fix for this issue has been made to the Razor Source Generator. As a result we have updated the .NET 6 RC1 SDK to 6.0.100-rc.1.21463.6.
.NET 6 is the next major release of .NET following .NET 5. You can see some of the new features available with .NET 6 RC 1 at dotnet/core #6569.
See the .NET, ASP.NET Core and .NET MAUI blogs for additional details. Here is list of some of the additions and updates we're excited to bring in RC 1.
SDK Installer1 | SDK Binaries1 | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime | Windows Desktop Runtime | |
---|---|---|---|---|---|---|
Windows | x86 | x64 | Arm64 | x86 | x64 | Arm64 | x86 | x64 | Arm64 | x86 | x64 | Arm64 | x86 | x64 | Hosting Bundle2 |
x86 | x64 | Arm64 |
macOS | x64 | Arm64 | x64 | Arm64 | x64 | Arm64 | x64 | Arm64 | x64 | Arm64 | - |
Linux | Snap and Package Manager | x64 | Arm | Arm64 | x64 Alpine | Packages (x64) | x64 | Arm | Arm64 | Arm64 Alpine | x64 Alpine | x641 | Arm | Arm641 | x64 Alpine | Arm64 Alpine | - |
Checksums | Checksums | Checksums | Checksums | Checksums | Checksums |
- Includes the .NET Runtime and ASP.NET Core Runtime
- 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.
The .NET SDK includes a matching updated .NET Runtime. Downloading the Runtime or ASP.NET Core packages is not needed when installing the SDK.
You can check your .NET SDK version by running the following command. The example version shown is for this release.
$ dotnet --version
6.0.100-rc.1.21458.32
.NET 6 RC1 is supported for use in production, which means you can build an app using .NET 6 RC1, deploy this app to a production environment, and expect the level of support and servicing you would normally get for a stable (non-preview) release such as .NET 5. We will continue to support RC1 for 30 days after RC2 ships and support RC2 for 30 days after .NET 6 GA ships.
You can contact the team directly at [email protected] if you run into challenges in your production environment.
.NET 6 RC1 will not be updated after it is released. You will need to update your environment to .NET 6 RC2 and .NET 6 GA for future improvements, including security updates.
.NET 6 introduces Android, iOS, and macOS SDKs for developing native applications. These provide the foundational mobile and desktop pieces for the new .NET MAUI. See documentation for additional setup instructions and creating your first .NET MAUI application.
After installing the .NET SDK, you can install .NET MAUI using the dotnet workload install
command:
$ dotnet workload install maui
The following workloads are also available to install individually:
$ dotnet workload install microsoft-android-sdk-full
$ dotnet workload install microsoft-ios-sdk-full
$ dotnet workload install microsoft-maccatalyst-sdk-full
$ dotnet workload install microsoft-macos-sdk-full
$ dotnet workload install microsoft-tvos-sdk-full
Visit .NET Documentation to learn about .NET, for building many different types of applications.
The .NET Docker images have been updated for this release. The .NET Docker samples show various ways to use .NET and Docker together. You can use the following command to try running the latest .NET 6.0 release in containers:
docker run --rm mcr.microsoft.com/dotnet/samples
The following repos have been updated.
- dotnet/sdk: .NET SDK
- dotnet/aspnet: ASP.NET Core Runtime
- dotnet/runtime: .NET Runtime
- dotnet/runtime-deps: .NET Runtime Dependencies
- dotnet/samples: .NET Samples
Visual Studio users must use Visual Studio 2022 and MSBuild 17 to use .NET 6. Visual Studio 2019 and MSBuild 16 are not supported with .NET 6.
Your feedback is important and appreciated. We've created an issue at dotnet/core #6688 for your questions and comments.