Merge branch 'main' into server2018@18months

This commit is contained in:
Rahul Bhandari 2021-07-15 20:27:32 -07:00 committed by GitHub
commit b99493fee5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 696 additions and 43 deletions

View file

@ -14,6 +14,7 @@
| Date | Release |
| :-- | :-- |
| 2021/07/14 | [6.0.0 Preview 6](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.6.md) |
| 2021/06/17 | [6.0.0 Preview 5](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.5.md) |
| 2021/05/25 | [6.0.0 Preview 4](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.4.md) |
| 2021/04/08 | [6.0.0 Preview 3](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.3.md) |

View file

@ -63,14 +63,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 -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/919880af-ab5a-4b58-8058-7baaea4a09d1/4fe186d747cf416cbdc83fd8354e15ea/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.tar.gz
~# curl -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/45f9f84c-dbe6-458e-bea1-c1e931802486/995edcbcd852a07b0a285626f30afb33/dotnet-sdk-6.0.100-preview.6.21355.2-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
6.0.100-preview.5.21302.13
6.0.100-preview.6.21355.2
```
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.

View file

@ -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 -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/919880af-ab5a-4b58-8058-7baaea4a09d1/4fe186d747cf416cbdc83fd8354e15ea/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.tar.gz
~# curl -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/fb01b89f-c07d-4e3f-b9c1-a8d3a074f290/4df3bd673a530e8febcf0089dc698106/dotnet-sdk-6.0.100-preview.6.21355.2-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
6.0.100-preview.5.21302.13
6.0.100-preview.6.21355.2
```
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.

View file

@ -1,6 +1,29 @@
# Install .NET Multi-platform App UI Workloads
To check your environment for dependencies and obtain the latest .NET MAUI SDKs, we recommend using the `maui-check` dotnet tool.
As of .NET 6 preview 6, .NET MAUI is a workload. To install .NET MAUI with Android, iOS, and macOS (Mac Catalyst) SDKs:
```console
$ dotnet workload install maui
```
We also have targeted workload manifests for mobile and desktop only:
```console
$ dotnet workload install maui-desktop
$ dotnet workload install maui-mobile
```
Optionally, for more granular control you can install platform SDKs individually:
```console
$ 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
```
To check your environment for additional dependencies and obtain the latest .NET MAUI SDKs, we recommend using our `maui-check` dotnet tool.
```console
$ dotnet tool install -g redth.net.maui.check
@ -12,35 +35,25 @@ Then run the tool and follow the instructions presented:
$ maui-check
```
Optionally, you can also use `dotnet workload install` from the command line to install individual SDKs:
```console
$ 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
```
See the [dotnet/maui-samples](https://github.com/dotnet/maui-samples/) repo for sample projects and further details about getting started.
See our [documentation](https://docs.microsoft.com/dotnet/maui/get-started/installation) for further details about getting started, including installing Windows App SDK requirements.
### Android
Prerequisites:
* [Install .NET 6.0.0 Preview 5](#downloads)
* [Install .NET 6.0.0 Preview 6](#downloads)
* You will need the Android SDK installed as well as `Android SDK Platform 30`. One way to acquire this is to install the Xamarin workload in the Visual Studio installer. You can manage Android SDKs from `Tools > Android > Android SDK Manager` from within Visual Studio.
### iOS, Mac Catalyst, and macOS (Cocoa)
Prerequisites:
* [Install .NET 6.0.0 Preview 5](#downloads)
* Xcode 12.5
* [Install .NET 6.0.0 Preview 6](#downloads)
* Xcode 13.0 Beta 1
## Downloads
Download links are provided for each of the distributions at:
- [Microsoft .NET website](https://dotnet.microsoft.com/download/dotnet/6.0)
- [.NET 6 release notes](README.md)
- [.NET 6 release notes](README.md)

View file

@ -40,13 +40,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 -o dotnet.zip https://download.visualstudio.microsoft.com/download/pr/74448616-c6d2-40bf-b6da-aa3a6c1009ab/62702150054089e2961aaf32e8ab3ffc/dotnet-sdk-6.0.100-preview.5.21302.13-win-x64.zip
C:\>curl -o dotnet.zip https://download.visualstudio.microsoft.com/download/pr/9da8718a-a4cf-42dc-a86c-1ea648acf136/73e158f3e4dfb1446595d0dba5b6343a/dotnet-sdk-6.0.100-preview.6.21355.2-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
6.0.100-preview.5.21302.13
6.0.100-preview.6.21355.2
```
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.

View file

@ -37,7 +37,7 @@ You can determine what is installed on your machine (assuming .NET is installed)
```console
C:\>dotnet --info
.NET SDK (reflecting any global.json):
Version: 6.0.100-preview.5.21302.13
Version: 6.0.100-preview.6.21355.2
Commit: 1a9103db2d
Runtime Environment:
@ -45,19 +45,19 @@ Runtime Environment:
OS Version: 10.0.17763
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\6.0.100-preview.5.21302.13\
Base Path: C:\Program Files\dotnet\sdk\6.0.100-preview.6.21355.2\
Host (useful for support):
Version: 6.0.0-preview.5.21301.5
Version: 6.0.0-preview.6.21355.2
Commit: 3eaf1f316b
.NET SDKs installed:
6.0.100-preview.5.21302.13 [C:\Program Files\dotnet\sdk]
6.0.100-preview.6.21355.2 [C:\Program Files\dotnet\sdk]
.NET runtimes installed:
Microsoft.AspNetCore.App 6.0.0-preview.5.21301.17 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 6.0.0-preview.5.21301.5 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 6.0.0-preview.5.21301.4 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.AspNetCore.App 6.0.0-preview.6.21355.2 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 6.0.0-preview.6.21352.12 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 6.0.0-preview.6.21353.1 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
```
If you have the .NET SDK installed, you can also use `dotnet --version` as demonstrated in the following example:

View file

@ -0,0 +1,176 @@
# .NET 6.0.0 Preview 6 - July 14, 2021
The .NET 6.0.0 Preview 6 and .NET SDK 6.0.100-preview.6.21355.2 releases are available for download. The latest 6.0 release is always listed at [.NET 6.0 Releases](../README.md).
## What's new in .NET 6 Preview 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 Preview 6 at [dotnet/core #6325](https://github.com/dotnet/core/issues/6325).
See the [.NET][dotnet-blog], [ASP.NET Core][aspnet-blog], [Entity Framework Core][ef-blog] and [.NET MAUI][maui-blog] blogs for additional details.
Here is list of some of the additions and updates we're excited to bring in Preview 6.
* EntityFramework Core: [bugs][ef_bugs] | [features][ef_features]
* .NET SDK [bugs][sdk_bugs]
## Downloads
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | 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.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.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] \| [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] \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] \| [Arm64 Alpine][aspnetcore-runtime-linux-musl-arm64.tar.gz] | - | <sup>1</sup> |
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime]
</br>
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.
</br>
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.
```console
$ dotnet --version
6.0.100-preview.6.21355.2
```
### .NET Multi-Platform App UI (MAUI) Workload Downloads
.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](https://github.com/dotnet/maui). See [documentation](https://docs.microsoft.com/dotnet/maui/get-started/installation) 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:
```console
$ dotnet workload install maui
```
The following workloads are also available to install individually:
```console
$ 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
```
</br>
Visit [.NET Documentation](https://docs.microsoft.com/dotnet/core/) to learn about .NET, for building many different types of applications.
## Docker Images
The [.NET Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) 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:
```console
docker run --rm mcr.microsoft.com/dotnet/samples
```
The following repos have been updated.
* [dotnet/sdk](https://hub.docker.com/_/microsoft-dotnet-sdk/): .NET SDK
* [dotnet/aspnet](https://hub.docker.com/_/microsoft-dotnet-aspnet/): ASP.NET Core Runtime
* [dotnet/runtime](https://hub.docker.com/_/microsoft-dotnet-runtime/): .NET Runtime
* [dotnet/runtime-deps](https://hub.docker.com/_/microsoft-dotnet-runtime-deps/): .NET Runtime Dependencies
* [dotnet/samples](https://hub.docker.com/_/microsoft-dotnet-samples/): .NET Samples
## Visual Studio Compatibility
You need [Visual Studio 2019 version 17.0](https://visualstudio.microsoft.com) or later to use .NET 6.0 on Windows.
## Feedback
Your feedback is important and appreciated. We've created an issue at [dotnet/core #6467](https://github.com/dotnet/core/issues/6467) for your questions and comments.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.6.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/6.0.0-preview.6-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/6.0.0-preview.6-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-6/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-6
[maui-blog]: https://devblogs.microsoft.com/dotnet/announcing-net-maui-preview-6/
[ef-blog]: https://devblogs.microsoft.com/dotnet/announcing-entity-framework-core-6-0-preview-6-configure-conventions
[ef_bugs]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A6.0.0-preview6+is%3Aclosed+label%3Atype-bug
[ef_features]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A6.0.0-preview6+is%3Aclosed+label%3Atype-enhancement
[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A6.0.0-preview6+label%3ADone+label%3Abug
[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A6.0.0-preview6+label%3ADone+label%3Aenhancement
[runtime_bugs]: https://github.com/dotnet/runtime/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A6.0+label%3Abug+
[runtime_features]: https://github.com/dotnet/runtime/issues?q=is%3Aissue+milestone%3A6.0+label%3Aenhancement
[sdk_bugs]: https://github.com/dotnet/sdk/issues?q=is%3Aissue+is%3Aclosed+milestone%3A6.0.1xx
[linux-packages]: ../install-linux.md
[//]: # ( Runtime 6.0.0-preview.6.21352.12)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8338df6d-f649-447f-8998-e393c63c6645/19f0f84b693fc54222b50870baca4899/dotnet-runtime-6.0.0-preview.6.21352.12-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/28b6d195-c69d-445a-b1c1-821e1a1cd8a1/6c85254b5cd005094a41ebd56774d4e5/dotnet-runtime-6.0.0-preview.6.21352.12-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a5dbb2b9-ee75-4863-9495-a3b725023b0b/97d974fbe72d6c4515a2f93a88244ddf/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-arm.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b1434d75-89c3-4b52-9a43-870c0a017897/6c50fdffdc2bd153c809e8dad409c9fe/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/026cb7b2-fe95-4234-878e-410f678112f9/659fe44ad45762b42a13e66dd2795028/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/841cf439-e6c6-4164-ae75-e4f1f3aafe0c/fd64b0395f6f0dee9ed184d918e49cd7/dotnet-runtime-6.0.0-preview.6.21352.12-linux-x64.tar.gz
[dotnet-runtime-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/3e5fcfb9-e470-4989-9677-39dc2fafd154/6b2a23abd069560e975e4c517df7b74c/dotnet-runtime-6.0.0-preview.6.21352.12-osx-arm64.pkg
[dotnet-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e6e0f9af-9d3a-4a31-b260-666b0b3e4221/51b3052f9c84277b38578c5d7281dc4a/dotnet-runtime-6.0.0-preview.6.21352.12-osx-arm64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/fd4e78c4-eb09-4e98-9a60-0cf796a8af20/1095c137d3801cffaa6ada35eae0c1a3/dotnet-runtime-6.0.0-preview.6.21352.12-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/67ae4f96-a7b5-49e3-809d-50de8e771c0f/ef5e3b6a1ff3abcf881b7ae880253469/dotnet-runtime-6.0.0-preview.6.21352.12-osx-x64.tar.gz
[dotnet-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/e40dee15-1d90-4917-8a41-d5ce3f218407/4b412277f3b9c39e9288bb4020240546/dotnet-runtime-6.0.0-preview.6.21352.12-win-arm64.exe
[dotnet-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/b68e27f8-d382-40f6-adc9-17aa1013925d/7cbd7bb99d2f181c40290b97018071b5/dotnet-runtime-6.0.0-preview.6.21352.12-win-arm64.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d8031c86-e522-40eb-8c5e-edffcd711268/1880257fd9d1cdff0d3d4733c7246376/dotnet-runtime-6.0.0-preview.6.21352.12-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/7282c65e-b906-48b7-b8f7-6bf3a6f980f0/ca7af999c52955ffdc45300b1de97a08/dotnet-runtime-6.0.0-preview.6.21352.12-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/547ecbd0-9861-4ad1-beab-cfb256c2d212/f1e11ce269c7e8b8d91139075cde2d59/dotnet-runtime-6.0.0-preview.6.21352.12-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/fa4333d5-b145-4bd1-b86d-101e758ff253/3b813e4a0f98fcc4f9f0930ab43a26df/dotnet-runtime-6.0.0-preview.6.21352.12-win-x86.zip
[//]: # ( WindowsDesktop 6.0.0-preview.6.21353.1)
[windowsdesktop-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/7c074ee8-043b-4f50-a135-e198b4a26bb2/fc4e30c8c0a7266cc92fbe7221173fad/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-arm64.exe
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/b6bef7e7-7d36-41fa-a937-119a786bdae3/b8251935ec30137f6d83dab3e6f1f12c/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/14c95c30-bc3b-43d9-b569-4e388ab7ab19/2e3b68dc6ee53a6aab3f71ad891215d3/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-x86.exe
[//]: # ( ASP 6.0.0-preview.6.21355.2)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fead33a0-bfa8-4a3c-93c2-fa6dcd7fce47/11681525584ed1a381ecae3536693250/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7535469b-06d6-407d-b751-732ba8ba12d2/9ae4e842565ae3c50e5c2673c06bbe37/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ff9927bd-791b-4d24-9a0c-efb0ed21fef2/655e8c11a83cf865400654fc473b3f8b/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-arm.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bab174a9-3aef-467a-82d3-3fec5a8e562a/ea80ec9fb413a934e5b8f4d2e60ec5c7/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0678c787-648a-4385-9b33-af728cba9e0b/56171f0269e38da631bf1ed416edb7d9/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/24e3144f-550d-49a2-bb40-8fb06aaf29a8/300b021763dbff231af63adb28ec6abd/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-x64.tar.gz
[aspnetcore-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3830a164-7a1d-43b9-ad38-175f11a3731c/2f9e05c8da288e93154810154616dfa2/aspnetcore-runtime-6.0.0-preview.6.21355.2-osx-arm64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/392fdec4-7fee-4b86-9497-c1f63eb87acb/e5c215160b9e93e43f581e59bff87c9d/aspnetcore-runtime-6.0.0-preview.6.21355.2-osx-x64.tar.gz
[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/72a69c8a-e91c-4328-8cb1-699af101fe9f/19354d5c08dadc1812115a21e18655ce/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-arm64.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/02355756-f7fc-43fc-a752-e7dbf3098b1c/4972c4b8b2973b00042a11d39a2d3d10/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/706b6612-e557-432b-88ea-96d13e2af5a3/f00c6537f1a7711138216555797d6833/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/1bfa5cd7-d533-4457-90c4-e412610464d0/7b3fc132d204581a9d0f2c809e5b837f/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/5062e035-1f6f-48af-88b1-51ff3a67f7fc/fea719da53e107752b6d1c7e2001f758/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/cf05db87-6052-43ae-8cda-c0aaf1e455d9/a09408560e38c80529d42bbf1bdf552b/dotnet-hosting-6.0.0-preview.6.21355.2-win.exe
[//]: # ( SDK 6.0.100-preview.6.21355.2 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5aed712c-c0bc-43fd-9fca-9483af66c8f1/66093c96a21248ee1ec77110478d13b3/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8a6a12fc-35bb-47ca-9353-b1e97d569382/61221db91a720e7ae5833460f2ea53d2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7f8958ec-0b14-4bc9-9519-41864d501b26/0fd817bc76e6ae0ad5b4a2f3549a3c75/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm.tar.gz
[dotnet-sdk-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0ff6fc52-91f0-4aa5-baa8-e2d4cf46b3e2/40b9c873ac7c37d578a4f3795758651c/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/41ee1046-a104-4983-82c3-1a33f6b85e31/658fc456b3b8b4435f7556a2c5d5f16d/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/45f9f84c-dbe6-458e-bea1-c1e931802486/995edcbcd852a07b0a285626f30afb33/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.tar.gz
[dotnet-sdk-linux-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/494d6cb2-7c5d-4fa6-a1c2-5b76762be9eb/17cd976b4fedc3e2ddeeb0910031ccde/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.zip
[dotnet-sdk-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/10bb818e-3d14-435c-a76b-40da0a8c561a/616dd2f1d72c8725270530bf67907068/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.pkg
[dotnet-sdk-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fd0b8343-1875-4ffc-aab6-00d57ac223a2/00d7942d7ed9c4333f6f0be9d9678e60/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/767abef9-9636-47a7-9929-6ac4201b6837/95c3c13e937efb01255843a6d4adf9ed/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fb01b89f-c07d-4e3f-b9c1-a8d3a074f290/4df3bd673a530e8febcf0089dc698106/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.tar.gz
[dotnet-sdk-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/af2fcf31-22b3-43c9-b127-d3d2569a4e76/396c947b23cd32f49e2cb12321321d65/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.exe
[dotnet-sdk-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/96dfe5eb-3837-4541-8878-7258647e8fd7/d90954b202dd3bbb0608fc68080a0bfb/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/9da8718a-a4cf-42dc-a86c-1ea648acf136/73e158f3e4dfb1446595d0dba5b6343a/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/a83c721e-ae81-4d88-9c3e-239e08e664be/ef2e40c18b8f87611477376bc3f6a8e5/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/8598c905-5911-4f50-9e8b-1f4dc53d213c/5f57f06cc04861b2f01ded57de212636/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/6395e8ff-c40e-450b-a663-23aa1b29c19f/516ced1b50fba44e17e5d1cc0bea981d/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.zip
[//]: # ( Symbols )

View file

@ -1,12 +1,475 @@
{
"channel-version": "6.0",
"latest-release": "6.0.0-preview.5",
"latest-release-date": "2021-06-17",
"latest-runtime": "6.0.0-preview.5.21301.5",
"latest-sdk": "6.0.100-preview.5.21302.13",
"latest-release": "6.0.0-preview.6",
"latest-release-date": "2021-07-14",
"latest-runtime": "6.0.0-preview.6.21352.12",
"latest-sdk": "6.0.100-preview.6.21355.2",
"support-phase": "preview",
"lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/",
"releases": [
{
"release-date": "2021-07-14",
"release-version": "6.0.0-preview.6",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.6.md",
"runtime": {
"version": "6.0.0-preview.6.21352.12",
"version-display": "6.0.0-preview.6",
"vs-version": "17.0",
"vs-mac-version": "8.10",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8338df6d-f649-447f-8998-e393c63c6645/19f0f84b693fc54222b50870baca4899/dotnet-runtime-6.0.0-preview.6.21352.12-linux-arm.tar.gz",
"hash": "7983d25361d7acf405ea2296e94231c3f313791d775fb44aa7b8455c17a5908a983ba43a0a9a67daf83a9fdccfa87f6bce6b931bbb43bb6896959ac00819ac36"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/28b6d195-c69d-445a-b1c1-821e1a1cd8a1/6c85254b5cd005094a41ebd56774d4e5/dotnet-runtime-6.0.0-preview.6.21352.12-linux-arm64.tar.gz",
"hash": "6d05901324593d52b39d26ab09649377c888e22346f97e4b98a7487798ae2fe3cf9e2afc6b835b1b038890c6b9aa91741c91f9427958e138050d86cc00c1c673"
},
{
"name": "dotnet-runtime-linux-musl-arm.tar.gz",
"rid": "linux-musl-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/a5dbb2b9-ee75-4863-9495-a3b725023b0b/97d974fbe72d6c4515a2f93a88244ddf/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-arm.tar.gz",
"hash": "0cb731082c257294b97a2a0536ed9fc4f156cdfc58e15f60ffb575d43c082ac68ffadd63137b0d9b29a459f782c9ef86b972c8c42c15c567d570e069be66d91e"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b1434d75-89c3-4b52-9a43-870c0a017897/6c50fdffdc2bd153c809e8dad409c9fe/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-arm64.tar.gz",
"hash": "95f6d50107cbd82afa6fc4a637109430e5c1162689e898f24fbc62ea95eb75ac7d122dd27d6b89c86212265fdfcbcea49356ea52eecae5ebd76b928e515a2b9d"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/026cb7b2-fe95-4234-878e-410f678112f9/659fe44ad45762b42a13e66dd2795028/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-x64.tar.gz",
"hash": "ccd1da6558a1d54e5ad4b651684990d56b7516c5968371f04a9d8f59c847073270ff916b185a1cbd93ddb362ff44e358db1be0335af12bbae0aa22db845057d4"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/841cf439-e6c6-4164-ae75-e4f1f3aafe0c/fd64b0395f6f0dee9ed184d918e49cd7/dotnet-runtime-6.0.0-preview.6.21352.12-linux-x64.tar.gz",
"hash": "b060e5c1d568cadfd813d8b1dd3b378fa7465e47829c4b6831eeb6af9760db456a60da54c99a705b68269ddb8287def6119814514d24a38ed2f0d08464381211"
},
{
"name": "dotnet-runtime-osx-arm64.pkg",
"rid": "osx-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3e5fcfb9-e470-4989-9677-39dc2fafd154/6b2a23abd069560e975e4c517df7b74c/dotnet-runtime-6.0.0-preview.6.21352.12-osx-arm64.pkg",
"hash": "ecc91d0e6f727452b3e48e69514ab2373fb226b6bcde107b61d6d53767371b6aa60b133940a2eb1bf813a2d8a9c8c6aa53ef20c6111a24950456cc73a77d259e"
},
{
"name": "dotnet-runtime-osx-arm64.tar.gz",
"rid": "osx-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e6e0f9af-9d3a-4a31-b260-666b0b3e4221/51b3052f9c84277b38578c5d7281dc4a/dotnet-runtime-6.0.0-preview.6.21352.12-osx-arm64.tar.gz",
"hash": "1dd308ad7582358f82872478369ea69d2e4c53a73fb63d22c7d4e4a87cf01df4fa980710d1a1346bfcd589437b9d3a037e9801baeae4637fc8fd44d7156dab78"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fd4e78c4-eb09-4e98-9a60-0cf796a8af20/1095c137d3801cffaa6ada35eae0c1a3/dotnet-runtime-6.0.0-preview.6.21352.12-osx-x64.pkg",
"hash": "84da9c4cb6b67bfdde401008ed30dfc79e7c4229a90a3b44e4f60b4523f3ced4ac112e93a09368d480d3614b9e1c5039ea6119f7157ff6d532d95ae7466a926d"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/67ae4f96-a7b5-49e3-809d-50de8e771c0f/ef5e3b6a1ff3abcf881b7ae880253469/dotnet-runtime-6.0.0-preview.6.21352.12-osx-x64.tar.gz",
"hash": "fab8e70b0aae1ce65fb7de263215b6e2fdce22d491a1041017dce88b8a4ddc354781a65fc5ae9e5a15448f1192cd1321c876659d2b44332389de01fbf3e371c8"
},
{
"name": "dotnet-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e40dee15-1d90-4917-8a41-d5ce3f218407/4b412277f3b9c39e9288bb4020240546/dotnet-runtime-6.0.0-preview.6.21352.12-win-arm64.exe",
"hash": "9b75ab7057cf1edc131081e87e3921e5d96554d7a3615d01ac9f7b236a825b0b29bc5a83dbb625fdf89b27f341dc84e339affa788d4eb07c0b9aed0e194152ed"
},
{
"name": "dotnet-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b68e27f8-d382-40f6-adc9-17aa1013925d/7cbd7bb99d2f181c40290b97018071b5/dotnet-runtime-6.0.0-preview.6.21352.12-win-arm64.zip",
"hash": "bb37d1837f877d2164aa18c1866af7c97cdc281580a0a4403dd4ecb2edc8b4070bc00ff1fe2dae7be44e132d48d828ff6d483b6eb4e5a42a4ef0e4afb1cbc6de"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d8031c86-e522-40eb-8c5e-edffcd711268/1880257fd9d1cdff0d3d4733c7246376/dotnet-runtime-6.0.0-preview.6.21352.12-win-x64.exe",
"hash": "77f4023d0ec8ca1aef1f0e6eb133e565a7e0f40a5079fa8b1548c850496a728246d111d5603070b4dbc6dba9eb192fa2fbe52a179a97b75c6336dd1e2f51aea3"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7282c65e-b906-48b7-b8f7-6bf3a6f980f0/ca7af999c52955ffdc45300b1de97a08/dotnet-runtime-6.0.0-preview.6.21352.12-win-x64.zip",
"hash": "d2d6b16fd5eeb9b39afdf2e0b6ce732fde0e90806e6c63dfaf88434d306251e5cf344b55e253cb6e7f38da19899e845a76a8e63ed7836f94ecdcd0256fda73e4"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/547ecbd0-9861-4ad1-beab-cfb256c2d212/f1e11ce269c7e8b8d91139075cde2d59/dotnet-runtime-6.0.0-preview.6.21352.12-win-x86.exe",
"hash": "87dbb4ec5249ced9644bc30479b6b273f27d8de51416167b0a7daa7d9e84bd93c42fabaff93aabc536e0ef60dbfc34f9da37a76ff032f5e74a569dbd1e816c4b"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/fa4333d5-b145-4bd1-b86d-101e758ff253/3b813e4a0f98fcc4f9f0930ab43a26df/dotnet-runtime-6.0.0-preview.6.21352.12-win-x86.zip",
"hash": "aaebb57a19a965ac998e3c6bd2ed4f4a792cc21a49e32ba74754e4d66aac82a461821bb0f704fd42bb8b9af13c9fc459e7e6c86c5c67def4e225e72aee4dfc9f"
}
]
},
"sdk": {
"version": "6.0.100-preview.6.21355.2",
"version-display": "6.0.100-preview.6",
"runtime-version": "6.0.0-preview.6.21352.12",
"vs-version": "17.0",
"vs-mac-version": "8.10",
"vs-support": "Visual Studio 2019 (v17.0 latest preview)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.10)",
"csharp-version": "10.0",
"fsharp-version": "5.0",
"vb-version": "16.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/5aed712c-c0bc-43fd-9fca-9483af66c8f1/66093c96a21248ee1ec77110478d13b3/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm.tar.gz",
"hash": "dae9d60048b453f30c74668623e6526fe9ec1a4b55f4c5ad13e250b797c253b3da33933170d0c1852587a995393da29a63fb6c2dd7d08857bbe98ca038e28444"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a6a12fc-35bb-47ca-9353-b1e97d569382/61221db91a720e7ae5833460f2ea53d2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm64.tar.gz",
"hash": "44202a25b62172edac367b87b4a1521a4c009defba8d1818fdad7436d58cab54894dcd4d341b49f34ac83842ce76a080757bf7514d9ba03cd26152310fde61c3"
},
{
"name": "dotnet-sdk-linux-musl-arm.tar.gz",
"rid": "linux-musl-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/7f8958ec-0b14-4bc9-9519-41864d501b26/0fd817bc76e6ae0ad5b4a2f3549a3c75/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm.tar.gz",
"hash": "6a9a0e1affde3766e8b06a1bf105abfdc0d02d33e0f9b3512d4c419f4443a24bca171dd5231e999fae5581ceaaee8064ac5e1c6dedc62da2bd29fa3c9a5a06a3"
},
{
"name": "dotnet-sdk-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0ff6fc52-91f0-4aa5-baa8-e2d4cf46b3e2/40b9c873ac7c37d578a4f3795758651c/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm64.tar.gz",
"hash": "367e6a90e2527e0f1f3f63a245a7026e64d9d4407159f620bb2c4c90f3981266bab55e0adcc6e7b9861c1b8be50867dbfa33ecb7ba4c56936029aee1fcfafdae"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/41ee1046-a104-4983-82c3-1a33f6b85e31/658fc456b3b8b4435f7556a2c5d5f16d/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-x64.tar.gz",
"hash": "3674633032ddd934ba743de7e3904ae033c55f2d649db89cb76e3a298a9871932d46687586215719a9c2540e0c9706fa3cd7b285a50308fc5b45621014bec8a1"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/45f9f84c-dbe6-458e-bea1-c1e931802486/995edcbcd852a07b0a285626f30afb33/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.tar.gz",
"hash": "b4d9282a43fc244f6576ea70b03af1727b5910481f3d5c51c0535c7dfffbc943742041bd8174fdd7ede677f9c99ec917dd3c119710b4a2169862eeacee026ac2"
},
{
"name": "dotnet-sdk-linux-x64.zip",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/494d6cb2-7c5d-4fa6-a1c2-5b76762be9eb/17cd976b4fedc3e2ddeeb0910031ccde/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.zip",
"hash": "f200b8fb4699c28aa60b172f590eb3ecf9a58e1d2a102377f7ed451f9a72f077cf0cea9163363c1cd746759d65e89cac4776d9cf3faedcfb43d1a8d2c5542c59"
},
{
"name": "dotnet-sdk-osx-arm64.pkg",
"rid": "osx-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/10bb818e-3d14-435c-a76b-40da0a8c561a/616dd2f1d72c8725270530bf67907068/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.pkg",
"hash": "6394e0c2ea126574a3c518e23dce493b67279c1e31ec20088504d669376ed9d5579f6124f2df92e23e847e3dd9673ab23cbd20f40d234cc49ff86469f1567ca9"
},
{
"name": "dotnet-sdk-osx-arm64.tar.gz",
"rid": "osx-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fd0b8343-1875-4ffc-aab6-00d57ac223a2/00d7942d7ed9c4333f6f0be9d9678e60/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.tar.gz",
"hash": "702781aad7793fc74a04765421dd7d037630f8ad498e0ffb82c3e48e88ed799498755572e34c6e6bf8065bcaf8eb2a417056ac300ce1b4b0f114c049b396183a"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/767abef9-9636-47a7-9929-6ac4201b6837/95c3c13e937efb01255843a6d4adf9ed/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.pkg",
"hash": "27723bd0c643264fda9ce49c81de1c56ef2492e1b2e328271008eec52d90511e80e6d75d8c823555c258ef306e25af926f169dbc9052c37f3acf630edc6a57ce"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fb01b89f-c07d-4e3f-b9c1-a8d3a074f290/4df3bd673a530e8febcf0089dc698106/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.tar.gz",
"hash": "b9e74e48a64c4f9123fe9ff6400797394d8048aff8a0dabda53fef91b00dec41030d2c41d42dc1af972f7f3d46edcc44585a43bf57c36732a7280f741e672dcd"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/af2fcf31-22b3-43c9-b127-d3d2569a4e76/396c947b23cd32f49e2cb12321321d65/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.exe",
"hash": "bf046e4b05bd4bf93c5c9955c9e6668626e1067634738bf053980c912cfc1310b6dda0d00ff3a54c1610143c89c7caad1b9cf891d5a9ea1efd18d3068b4d4819"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/96dfe5eb-3837-4541-8878-7258647e8fd7/d90954b202dd3bbb0608fc68080a0bfb/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.zip",
"hash": "ea573499f65e146bbb7cf2efe663053053d8cc7bf7fdb12ff4257826593a0f0ba4cc703e8a79492a6bbf5fb353cecc931edf3d1ef4e72108eca20c7dd0a4aaef"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9da8718a-a4cf-42dc-a86c-1ea648acf136/73e158f3e4dfb1446595d0dba5b6343a/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.exe",
"hash": "201d3304d45265c4fac2e21b52a7e0b61bca54a12aeb87a0a7ba86eb36b7e6cfa0bd7469cd3d3ce6b6adf6cb6eafb1923543529e773b43ccc72f5a1f539b6e74"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a83c721e-ae81-4d88-9c3e-239e08e664be/ef2e40c18b8f87611477376bc3f6a8e5/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.zip",
"hash": "e126fea62f3719cc2c0cef9858e2dad85b31029e1766f2df091c611396ed5b8f02e3874827a4f30e3d5ef0b7b3a318d8bf9a728c74c14425c42befca5c85b26d"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/8598c905-5911-4f50-9e8b-1f4dc53d213c/5f57f06cc04861b2f01ded57de212636/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.exe",
"hash": "1d8a93d0b82458cdf5bf0c242598bccf2ab05136822d1917b5724beec6b897c3ec74487af4e13a93bc89eab11342598d2cc1b3ae3d2dccf486cd2311a39ca357"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/6395e8ff-c40e-450b-a663-23aa1b29c19f/516ced1b50fba44e17e5d1cc0bea981d/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.zip",
"hash": "b937af04b6533fc124163e2dd4f87d88e188da620622d6117e3a6c4093d8dd9f53d84c8b0936bb4ffd14cb4cd93635dce90e747b432cb12454190646317b8ffa"
}
]
},
"sdks": [
{
"version": "6.0.100-preview.6.21355.2",
"version-display": "6.0.100-preview.6",
"runtime-version": "6.0.0-preview.6.21352.12",
"vs-version": "17.0",
"vs-mac-version": "8.10",
"vs-support": "Visual Studio 2019 (v17.0 latest preview)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.10)",
"csharp-version": "10.0",
"fsharp-version": "5.0",
"vb-version": "16.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/5aed712c-c0bc-43fd-9fca-9483af66c8f1/66093c96a21248ee1ec77110478d13b3/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm.tar.gz",
"hash": "dae9d60048b453f30c74668623e6526fe9ec1a4b55f4c5ad13e250b797c253b3da33933170d0c1852587a995393da29a63fb6c2dd7d08857bbe98ca038e28444"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a6a12fc-35bb-47ca-9353-b1e97d569382/61221db91a720e7ae5833460f2ea53d2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm64.tar.gz",
"hash": "44202a25b62172edac367b87b4a1521a4c009defba8d1818fdad7436d58cab54894dcd4d341b49f34ac83842ce76a080757bf7514d9ba03cd26152310fde61c3"
},
{
"name": "dotnet-sdk-linux-musl-arm.tar.gz",
"rid": "linux-musl-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/7f8958ec-0b14-4bc9-9519-41864d501b26/0fd817bc76e6ae0ad5b4a2f3549a3c75/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm.tar.gz",
"hash": "6a9a0e1affde3766e8b06a1bf105abfdc0d02d33e0f9b3512d4c419f4443a24bca171dd5231e999fae5581ceaaee8064ac5e1c6dedc62da2bd29fa3c9a5a06a3"
},
{
"name": "dotnet-sdk-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0ff6fc52-91f0-4aa5-baa8-e2d4cf46b3e2/40b9c873ac7c37d578a4f3795758651c/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm64.tar.gz",
"hash": "367e6a90e2527e0f1f3f63a245a7026e64d9d4407159f620bb2c4c90f3981266bab55e0adcc6e7b9861c1b8be50867dbfa33ecb7ba4c56936029aee1fcfafdae"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/41ee1046-a104-4983-82c3-1a33f6b85e31/658fc456b3b8b4435f7556a2c5d5f16d/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-x64.tar.gz",
"hash": "3674633032ddd934ba743de7e3904ae033c55f2d649db89cb76e3a298a9871932d46687586215719a9c2540e0c9706fa3cd7b285a50308fc5b45621014bec8a1"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/45f9f84c-dbe6-458e-bea1-c1e931802486/995edcbcd852a07b0a285626f30afb33/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.tar.gz",
"hash": "b4d9282a43fc244f6576ea70b03af1727b5910481f3d5c51c0535c7dfffbc943742041bd8174fdd7ede677f9c99ec917dd3c119710b4a2169862eeacee026ac2"
},
{
"name": "dotnet-sdk-linux-x64.zip",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/494d6cb2-7c5d-4fa6-a1c2-5b76762be9eb/17cd976b4fedc3e2ddeeb0910031ccde/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.zip",
"hash": "f200b8fb4699c28aa60b172f590eb3ecf9a58e1d2a102377f7ed451f9a72f077cf0cea9163363c1cd746759d65e89cac4776d9cf3faedcfb43d1a8d2c5542c59"
},
{
"name": "dotnet-sdk-osx-arm64.pkg",
"rid": "osx-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/10bb818e-3d14-435c-a76b-40da0a8c561a/616dd2f1d72c8725270530bf67907068/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.pkg",
"hash": "6394e0c2ea126574a3c518e23dce493b67279c1e31ec20088504d669376ed9d5579f6124f2df92e23e847e3dd9673ab23cbd20f40d234cc49ff86469f1567ca9"
},
{
"name": "dotnet-sdk-osx-arm64.tar.gz",
"rid": "osx-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fd0b8343-1875-4ffc-aab6-00d57ac223a2/00d7942d7ed9c4333f6f0be9d9678e60/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.tar.gz",
"hash": "702781aad7793fc74a04765421dd7d037630f8ad498e0ffb82c3e48e88ed799498755572e34c6e6bf8065bcaf8eb2a417056ac300ce1b4b0f114c049b396183a"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/767abef9-9636-47a7-9929-6ac4201b6837/95c3c13e937efb01255843a6d4adf9ed/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.pkg",
"hash": "27723bd0c643264fda9ce49c81de1c56ef2492e1b2e328271008eec52d90511e80e6d75d8c823555c258ef306e25af926f169dbc9052c37f3acf630edc6a57ce"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fb01b89f-c07d-4e3f-b9c1-a8d3a074f290/4df3bd673a530e8febcf0089dc698106/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.tar.gz",
"hash": "b9e74e48a64c4f9123fe9ff6400797394d8048aff8a0dabda53fef91b00dec41030d2c41d42dc1af972f7f3d46edcc44585a43bf57c36732a7280f741e672dcd"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/af2fcf31-22b3-43c9-b127-d3d2569a4e76/396c947b23cd32f49e2cb12321321d65/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.exe",
"hash": "bf046e4b05bd4bf93c5c9955c9e6668626e1067634738bf053980c912cfc1310b6dda0d00ff3a54c1610143c89c7caad1b9cf891d5a9ea1efd18d3068b4d4819"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/96dfe5eb-3837-4541-8878-7258647e8fd7/d90954b202dd3bbb0608fc68080a0bfb/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.zip",
"hash": "ea573499f65e146bbb7cf2efe663053053d8cc7bf7fdb12ff4257826593a0f0ba4cc703e8a79492a6bbf5fb353cecc931edf3d1ef4e72108eca20c7dd0a4aaef"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9da8718a-a4cf-42dc-a86c-1ea648acf136/73e158f3e4dfb1446595d0dba5b6343a/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.exe",
"hash": "201d3304d45265c4fac2e21b52a7e0b61bca54a12aeb87a0a7ba86eb36b7e6cfa0bd7469cd3d3ce6b6adf6cb6eafb1923543529e773b43ccc72f5a1f539b6e74"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a83c721e-ae81-4d88-9c3e-239e08e664be/ef2e40c18b8f87611477376bc3f6a8e5/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.zip",
"hash": "e126fea62f3719cc2c0cef9858e2dad85b31029e1766f2df091c611396ed5b8f02e3874827a4f30e3d5ef0b7b3a318d8bf9a728c74c14425c42befca5c85b26d"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/8598c905-5911-4f50-9e8b-1f4dc53d213c/5f57f06cc04861b2f01ded57de212636/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.exe",
"hash": "1d8a93d0b82458cdf5bf0c242598bccf2ab05136822d1917b5724beec6b897c3ec74487af4e13a93bc89eab11342598d2cc1b3ae3d2dccf486cd2311a39ca357"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/6395e8ff-c40e-450b-a663-23aa1b29c19f/516ced1b50fba44e17e5d1cc0bea981d/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.zip",
"hash": "b937af04b6533fc124163e2dd4f87d88e188da620622d6117e3a6c4093d8dd9f53d84c8b0936bb4ffd14cb4cd93635dce90e747b432cb12454190646317b8ffa"
}
]
}
],
"aspnetcore-runtime": {
"version": "6.0.0-preview.6.21355.2",
"version-display": "6.0.0-preview.6",
"version-aspnetcoremodule": [
"16.0.21186.0"
],
"vs-version": "",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/fead33a0-bfa8-4a3c-93c2-fa6dcd7fce47/11681525584ed1a381ecae3536693250/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-arm.tar.gz",
"hash": "aaf6919f55864234a5eee7126d1a79d2dc3bb2bc0d746cc8302c56dc62a683b6a662140b8c4875576e5c24eab41a993eb848f68dfb3096386a935ff3bf41c9ce"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7535469b-06d6-407d-b751-732ba8ba12d2/9ae4e842565ae3c50e5c2673c06bbe37/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-arm64.tar.gz",
"hash": "27f9b870debb847fc4da084f2ccab8da3c04684fe8343c0f3aa079a54add5967f3efc1dd8d8a0d2bc92198f2bd03b42e3fc3eb4aff425baed97972397870c8b2"
},
{
"name": "aspnetcore-runtime-linux-musl-arm.tar.gz",
"rid": "linux-musl-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/ff9927bd-791b-4d24-9a0c-efb0ed21fef2/655e8c11a83cf865400654fc473b3f8b/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-arm.tar.gz",
"hash": "50f1c68f64aeb576452ddf11a26e5e2bbb9d713ebb9bead6f8d73b16b8111eafec5841c470332a8700ebcd7234b87d453751857fc93ec6cc20a5fcdbbe42c6ef"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/bab174a9-3aef-467a-82d3-3fec5a8e562a/ea80ec9fb413a934e5b8f4d2e60ec5c7/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-arm64.tar.gz",
"hash": "ff591e1da80ae387e6b9f53bd0ab5fe778ed3334a0249b68d3b7610b6ee5cc036006bb5b596c8b36f6b6a1e71e12c4d241ec308e7a54ec6e66fc76f552c7c72c"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0678c787-648a-4385-9b33-af728cba9e0b/56171f0269e38da631bf1ed416edb7d9/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-x64.tar.gz",
"hash": "4c5c327e431903d05524b4cbb506a6b4fa18f342caf0fb3ce28068fae86c1428c8ae6ef324a7885031d33f91009b5e6eed48b3352ece1351a86c08b42d5d0702"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/24e3144f-550d-49a2-bb40-8fb06aaf29a8/300b021763dbff231af63adb28ec6abd/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-x64.tar.gz",
"hash": "42cc384554caef8f72b5410aab196f3d62cdb053dbc56e8bd4e0411de5deac19b9524b7cfebb14c69d583842b477e830bc34e8e9d76f723ea02470488d172f47"
},
{
"name": "aspnetcore-runtime-osx-arm64.tar.gz",
"rid": "osx-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3830a164-7a1d-43b9-ad38-175f11a3731c/2f9e05c8da288e93154810154616dfa2/aspnetcore-runtime-6.0.0-preview.6.21355.2-osx-arm64.tar.gz",
"hash": "9806a42586010817aad59a778dd26461e3633d3ac3d97170863c41ff5f38003eaf91e9f153156d6e92a60c8cc94a5cce6f07e194f0987255938cc4fdf8e464e5"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/392fdec4-7fee-4b86-9497-c1f63eb87acb/e5c215160b9e93e43f581e59bff87c9d/aspnetcore-runtime-6.0.0-preview.6.21355.2-osx-x64.tar.gz",
"hash": "781edd3f28c754acf32a54ccb57f507aa839ec637883f21bb4e687f3a234ae0a9fc966b529afd928fc57e4a23bbd797a8ebbae0d2f5a107f9322d7f071c86b8e"
},
{
"name": "aspnetcore-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/72a69c8a-e91c-4328-8cb1-699af101fe9f/19354d5c08dadc1812115a21e18655ce/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-arm64.zip",
"hash": "f7e0b22f34a1a435b76525222c6ef7cd80e845fd2be8fabc3825f764c10d49b56a25e985e2c687b9fdf7df65d03bd27d8e1a77e50c9320e48434ce3fc5542c67"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/02355756-f7fc-43fc-a752-e7dbf3098b1c/4972c4b8b2973b00042a11d39a2d3d10/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x64.exe",
"hash": "a7fa47dc733235f18ca1376486c90c8f1aa44530f57bfef0a632a93cb250c1d41be56d9cffcd6ddfc064cafeb64da23fc01cc8653d82f6343ce3ed760177bc5a"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/706b6612-e557-432b-88ea-96d13e2af5a3/f00c6537f1a7711138216555797d6833/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x64.zip",
"hash": "3220634d47d556caedbe3f8b11d37f819226654e52fb5641ac705b34f19105144908008c4557213cc61765a2f78f17c21b076217feb911729d9aa0b2f131fd03"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/1bfa5cd7-d533-4457-90c4-e412610464d0/7b3fc132d204581a9d0f2c809e5b837f/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x86.exe",
"hash": "eb5af3a38dd9b1f2c8e4cddea0e33bafe8961fc52589dbd6bf41c94f6e2539b7448ec79a59ecdb9c3a7eb19605cb7b610401f21782c09bc174eb58e3a018693a"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/5062e035-1f6f-48af-88b1-51ff3a67f7fc/fea719da53e107752b6d1c7e2001f758/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x86.zip",
"hash": "3dd1cab40b2f5663d7fd96fd778ab481dc33a8be6a170cc80d3e26d6c2b11802649ebe2872c4a3d07abc0cb40a45dde5e949eccb13601e4fad983427bd92e108"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/cf05db87-6052-43ae-8cda-c0aaf1e455d9/a09408560e38c80529d42bbf1bdf552b/dotnet-hosting-6.0.0-preview.6.21355.2-win.exe",
"hash": "f15b02946c33a3117110428a773a4af6c453140995da7c1a69f68c7ec900643eb5080b20f8ee2ac32fe0ddc900fd59aa7a4389da348abed3bfb07d0a8ed1bb68",
"akams": "https://aka.ms/dotnetcore-6-0-windowshosting"
}
]
},
"windowsdesktop": {
"version": "6.0.0-preview.6.21353.1",
"version-display": "6.0.0-preview.6",
"files": [
{
"name": "windowsdesktop-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7c074ee8-043b-4f50-a135-e198b4a26bb2/fc4e30c8c0a7266cc92fbe7221173fad/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-arm64.exe",
"hash": "7712970bbfa4e1adb3c5d0c2ecf98fb5b2b0e978f5aad746f5073ab6abb3e3db9582697860307cba41c2e07baaf16e1a7713e3a23c7eb2b9b43cebcd7b23985c"
},
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b6bef7e7-7d36-41fa-a937-119a786bdae3/b8251935ec30137f6d83dab3e6f1f12c/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-x64.exe",
"hash": "9837420074eed77e0dcd879f05c0b67d3a402a8cfccef34b62ebdbcbf7f828e42d75df134ed252c6969757a7a174b616b57a56a348ff9e3acb635435ad1e53f4"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/14c95c30-bc3b-43d9-b569-4e388ab7ab19/2e3b68dc6ee53a6aab3f71ad891215d3/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-x86.exe",
"hash": "8cbfdd74f6267ce9127c8aa0e72efc6c9445fc9b99e4121f4d573f57a679f4110c7546be26a71ef5ad87a0073c52cbf28e173607dbb86995255a66cfcae9637d"
}
]
}
},
{
"release-date": "2021-06-17",
"release-version": "6.0.0-preview.5",

View file

@ -4,14 +4,14 @@ The following [.NET releases](../releases.md) are currently supported:
| Version | Release Date | Support | Latest Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
| [.NET 6](6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-5/) | [Preview][policies] | [6.0 Preview 5][6.0 Preview 5] | November, 2024 |
| [.NET 6](6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-5/) | [Preview][policies] | [6.0 Preview 6][6.0 Preview 6] | November, 2024 |
| [.NET 5](5.0/README.md) | [November 10, 2020](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | [Current][policies] | [5.0.8][5.0.8] | February, 2022 |
| [.NET Core 3.1](3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.17][3.1.17] | December 3, 2022 |
| [.NET Core 2.1](2.1/README.md) | [May 30, 2018](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-1/) | [LTS][policies] | [2.1.28][2.1.28] | August 21, 2021 |
You can find release notes for all releases, including out-of-support releases, in the [release-notes](.) directory.
[6.0 Preview 5]: 6.0/preview/6.0.0-preview.5.md
[6.0 Preview 6]: 6.0/preview/6.0.0-preview.6.md
[5.0.8]: 5.0/5.0.8/5.0.8.md
[3.1.17]: 3.1/3.1.17/3.1.17.md
[2.1.28]: 2.1/2.1.28/2.1.28.md

View file

@ -2,11 +2,11 @@
"releases-index": [
{
"channel-version": "6.0",
"latest-release": "6.0.0-preview.5",
"latest-release-date": "2021-06-17",
"latest-release": "6.0.0-preview.6",
"latest-release-date": "2021-07-14",
"security": false,
"latest-runtime": "6.0.0-preview.5.21301.5",
"latest-sdk": "6.0.100-preview.5.21302.13",
"latest-runtime": "6.0.0-preview.6.21352.12",
"latest-sdk": "6.0.100-preview.6.21355.2",
"product": ".NET",
"support-phase": "preview",
"eol-date": null,

View file

@ -11,12 +11,12 @@ The following table lists in-support .NET releases.
| Version | Release Date | Support | Latest Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
| [.NET 6](release-notes/6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-5/) | [Preview][policies] | [6.0 Preview 5][6.0 Preview 5] | November, 2024 |
| [.NET 5](release-notes/5.0/README.md) | [November 10, 2020](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | [Current][policies] | [5.0.7][5.0.7] | May, 2022 |
| [.NET Core 3.1](release-notes/3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.16][3.1.16] | December 3, 2022 |
| [.NET 6](release-notes/6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-5/) | [Preview][policies] | [6.0 Preview 6][6.0 Preview 6] | November, 2024 |
| [.NET 5](release-notes/5.0/README.md) | [November 10, 2020](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | [Current][policies] | [5.0.8][5.0.8] | May, 2022 |
| [.NET Core 3.1](release-notes/3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.17][3.1.17] | December 3, 2022 |
| [.NET Core 2.1](release-notes/2.1/README.md) | [May 30, 2018](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-1/) | [LTS][policies] | [2.1.28][2.1.28] | [August 21, 2021](https://devblogs.microsoft.com/dotnet/net-core-2-1-will-reach-end-of-support-on-august-21-2021/) |
[6.0 Preview 5]: release-notes/6.0/preview/6.0.0-preview.5.md
[6.0 Preview 6]: release-notes/6.0/preview/6.0.0-preview.6.md
[5.0.8]: release-notes/5.0/5.0.8/5.0.8.md
[3.1.17]: release-notes/3.1/3.1.17/3.1.17.md
[2.1.28]: release-notes/2.1/2.1.28/2.1.28.md