Release artifacts for .NET 6 Preview 2

This commit is contained in:
Rahul Bhandari 2021-03-11 09:14:38 -08:00
parent ab3d281752
commit 88947c0641
6 changed files with 759 additions and 20 deletions

View file

@ -34,3 +34,10 @@ You can workaround these issues by setting the IncludePackageReferencesDuringMar
`<PropertyGroup>
<IncludePackageReferencesDuringMarkupCompilation>false</IncludePackageReferencesDuringMarkupCompilation>
</PropertyGroup>`
## Windows Forms
* `PropertyGrid` values are rendered at incorrect location.
The issue is tracked in [dotnet/winforms#4593](https://github.com/dotnet/winforms/issues/4593) and is expected to be fixed in 6.0 Preview3.

View file

@ -6,4 +6,5 @@ Install the latest [.NET 6 Preview](https://dotnet.microsoft.com/download/dotnet
| Release Date | Description |
| :-- | :-- |
| 2021/03/11 | [6.0.0 Preview 2](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.2.md) |
| 2021/02/17 | [6.0.0 Preview 1](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.1.md) |

View file

@ -0,0 +1,139 @@
# .NET 6.0.0 Preview 2
.NET 6.0.0 Preview 2 comprises:
* .NET Runtime 6.0.0-preview.2.21154.6
* ASP.NET Core 6.0.0-preview.2.21154.6
* .NET SDK 6.0.100-preview.2.21155.3
* Windowsdesktop 6.0.0-preview.2.21154.2
See the [Release Notes][release-notes] for details about what is included in this update.
## Docker
[.NET container images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. [Staying safe with .NET containers](https://devblogs.microsoft.com/dotnet/staying-safe-with-dotnet-containers/) provides insight and guidance on managing container images, with respect to pedigree, provenance and CVE management.
## Install .NET on Linux
### Install using Snap
Because of the isolated environment, using Snap is the preferred way to install and try .NET Previews on [Linux distributions that support Snap](https://docs.snapcraft.io/installing-snapd/6735).
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
`sudo snap install dotnet-sdk --channel=6.0/beta --classic`
When .NET Core is installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distributions require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
### Install using deb/rpm packages
Preview release installers are not available from the Microsoft package repositories. The steps below provide an easy way to install .NET 6 using your Distro package manager.
**Note:** `curl` must be available on the system before running the following steps. Once you have confirmed that `curl` is available, complete the steps to download and install the latest .NET 6 Preview SDK and Runtime.
1. Create a directory to use for the download location and change into that directory. For example `mkdir $HOME/dotnet_install && cd $HOME/dotnet_install`
2. Run `curl -L https://aka.ms/install-dotnet-preview -o install-dotnet-preview.sh`
3. Run the script with `sudo bash install-dotnet-preview.sh`
Here's what the script does.
* Detects the distribution and version. The script supports platforms and versions listed in [.NET 6.0 - Supported OS versions](https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0-supported-os.md).
* Determines if additional system dependencies or utilities are needed to successfully complete and install them. For example `tar` is used to unpack that installer packages.
* Downloads the tar.gz containing the .NET preview installer packages for the detected distribution.
* Downloads the system dependency installer, if needed.
* Expands the tar.gz into ./dotnet_pacakges
* Attempts to install the contents of ./dotnet_packages using `rpm` or `dpkg`, as appropriate, for the detected distribution.
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## .NET Core Runtime-only installation
If only the .NET Core Runtime is needed, install `dotnet-runtime-6.0` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-6.0` will install both the ASP Runtime and .NET Core Runtime.
## Windows Server Hosting
If you are looking to host stand-alone apps on Servers, the following installer can be used on Windows systems.
### Windows
You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
* [dotnet-hosting-6.0.0-preview.2.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
## Install Mobile Workloads
### Downloads
* Android: [[Windows][android-win]] [[Mac][android-mac]]
* iOS: [[Windows][ios-win]] [[Mac][ios-mac]]
* Mac Catalyst: [[Mac][maccatalyst-mac]]
See the [net6-mobile-samples](https://github.com/dotnet/net6-mobile-samples/tree/net6-preview2) repo for sample projects and further details about getting started.
Android, iOS, and Mac Catalyst projects will need to add additional NuGet feeds. An example `NuGet.config` file would be:
```xml
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<!-- ensure only the sources defined below are used -->
<add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
<add key="xamarin" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/xamarin-impl/nuget/v3/index.json" />
</packageSources>
</configuration>
```
### Android
Prerequisites:
* Install .NET 6.0.0 Preview 2
* 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 and Mac Catalyst
Prerequisites:
* Install .NET 6.0.0 Preview 2
* Xcode 12.4
[android-mac]: https://dl.internalx.com/vsts-devdiv/Xamarin.Android/public/net6/4534967/main/f4d8fe238b15eadfc7842749bf13e5fca3e2f2d2/Microsoft.NET.Workload.Android-11.0.200-ci.f4d8fe238b15eadfc7842749bf13e5fca3e2f2d2.148.pkg
[android-win]: https://dl.internalx.com/vsts-devdiv/Xamarin.Android/public/net6/4534967/main/f4d8fe238b15eadfc7842749bf13e5fca3e2f2d2/Microsoft.NET.Workload.Android.11.0.200.148.msi
[ios-mac]: https://bosstoragemirror.azureedge.net/wrench/main/98c8649d0c7d1e3c4c8d8d09e022befa853fb1e7/4541181/package/notarized/Microsoft.iOS.Bundle.14.4.100-ci.main.1192.pkg
[ios-win]: https://bosstoragemirror.azureedge.net/wrench/main/98c8649d0c7d1e3c4c8d8d09e022befa853fb1e7/4541181/package/Microsoft.NET.Workload.iOS.14.4.100-ci.main.1192.msi
[maccatalyst-mac]: https://bosstoragemirror.azureedge.net/wrench/main/98c8649d0c7d1e3c4c8d8d09e022befa853fb1e7/4541181/package/notarized/Microsoft.MacCatalyst.Bundle.14.3.100-ci.main.337.pkg
[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.2.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/6.0.0-preview.2-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/6.0.0-preview.2-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-core-5-0-preview-2/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-and-blazor-updates-in-net-core-5-0-preview-2/
[ef-blog]: https://devblogs.microsoft.com/dotnet/
[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A6.0.0-preview2+label%3ADone+label%3Abug
[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A6.0.0-preview2+label%3ADone+label%3Aenhancement
[runtime_bugs]: https://github.com/dotnet/runtime/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A5.0+label%3Abug+
[runtime_features]: https://github.com/dotnet/runtime/issues?q=is%3Aissue+milestone%3A5.0+label%3Aenhancement
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/8f7df454-eea2-4b8c-9194-910fb611679f/8fa8d8415b488668b2d2c6a68e1c63d5/dotnet-hosting-6.0.0-preview.2.21154.6-win.exe

View file

@ -0,0 +1,165 @@
# .NET 6.0.0 Preview 2 - March 11, 2021
The .NET 6.0.0 Preview 2 and .NET SDK 6.0.100-preview.2.21155.3 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 2
.NET 6 is the next major release of .NET following .NET 5.0. You can see some of the new features available with .NET 6 Preview 2 at [dotnet/core #5889](https://github.com/dotnet/core/issues/5889).
See the [.NET][dotnet-blog], [EF Core][ef-blog] and [ASP.NET Core][aspnet-blog] blogs for additional details.
Here is list of some of the additions and updates we're excited to bring in Preview 2.
* 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](6.0.0-preview.2-install-instructions.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.2.21155.3
```
### .NET Multi-Platform App UI 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 Multi-platform App UI](https://github.com/dotnet/maui). See [dotnet/net6-mobile-samples](https://github.com/dotnet/net6-mobile-samples) for additional setup instructions and sample projects you can run today.
| | Android SDK Installer | iOS SDK Installer | Mac Catalyst SDK Installer |
| --------- | :------------------------------------------: | :----------------------: | :----------------------: |
| Windows | [x64][android-win] | [x64][ios-win] | |
| macOS | [x64][android-mac] | [x64][ios-mac] | [x64][maccatalyst-mac] |
</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/master/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 16.9 Preview 4](https://visualstudio.microsoft.com) or later to use .NET 6.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 6.0 and C# 9.
## Feedback
Your feedback is important and appreciated. We've created an issue at [dotnet/core #5967](https://github.com/dotnet/core/issues/5967) 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.2.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/6.0.0-preview.2-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/6.0.0-preview.2-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-2/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-2
[ef-blog]: https://devblogs.microsoft.com/dotnet/announcing-entity-framework-core-6-0-preview-2/
[ef_bugs]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A6.0.0-preview2+is%3Aclosed+label%3Atype-bug
[ef_features]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A6.0.0-preview2+is%3Aclosed+label%3Atype-enhancement
[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A6.0.0-preview2+label%3ADone+label%3Abug
[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A6.0.0-preview2+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]: 6.0.0-preview.2-install-instructions.md
[//]: # ( Runtime 6.0.0-preview.2.21154.6)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8b73c053-23f8-4d2f-9566-04bca14c6dcb/7aea2327f5a57e552c82443746a2693b/dotnet-runtime-6.0.0-preview.2.21154.6-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8015ee86-0721-4efc-86ea-f906898084d6/68bc54d347db3f4f9e016c8a32ba11ea/dotnet-runtime-6.0.0-preview.2.21154.6-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f90b01ae-16b8-4635-98e5-2c5fd37f2a5f/5cdd644c60eb2aba19e302c1e6c9b7aa/dotnet-runtime-6.0.0-preview.2.21154.6-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e4e3f21d-1057-4610-aeaf-dfa219d424f8/2f6d98e193d3d08b50c5fbce3d4c4ad6/dotnet-runtime-6.0.0-preview.2.21154.6-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2c88db43-4d92-433d-b95f-81bc9118a67e/08ec34f28dca0af4e8cf551299aa4367/dotnet-runtime-6.0.0-preview.2.21154.6-linux-x64.tar.gz
[dotnet-runtime-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/3de6add5-a77c-4621-bf77-1722073ac0a7/4535dfffd67bbbf59b06c1b59c0b2f29/dotnet-runtime-6.0.0-preview.2.21154.6-osx-arm64.pkg
[dotnet-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cb98c2ee-cca5-4218-bfff-f7a809557e3e/4beba22c9a0c68729b5b26a1bb284323/dotnet-runtime-6.0.0-preview.2.21154.6-osx-arm64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/51cb50a7-c2e6-49f9-a172-e1dd0dd0f40f/d3cd57a2fc52ff8e85d8f52ba27f2e2f/dotnet-runtime-6.0.0-preview.2.21154.6-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/915ecb99-2324-4dcc-a69d-01c4cd52e119/32ade9437306585ea2656fd8bdaef5d4/dotnet-runtime-6.0.0-preview.2.21154.6-osx-x64.tar.gz
[dotnet-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/3d6eb088-7e93-47e0-a60b-4126c2f52a35/ec3cee12fba7464c31043da34408a87e/dotnet-runtime-6.0.0-preview.2.21154.6-win-arm64.exe
[dotnet-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/72e707fa-8bc1-424f-b588-8e2d75c29680/d0e128b706c27ec1a43803332beb74cc/dotnet-runtime-6.0.0-preview.2.21154.6-win-arm64.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/8e797f52-3308-4b2a-befc-ff1f0c58f0d8/65f18aaea3a58537efbfdf98e1939d35/dotnet-runtime-6.0.0-preview.2.21154.6-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/cebc9139-b042-46ec-b8bd-98b432536a00/d56de26bfdd627d5e6f2f88ae6c58c8a/dotnet-runtime-6.0.0-preview.2.21154.6-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/5a094930-41b4-4f04-967f-9a3d33b8b6fa/af9b3d71c2ca497940d05765e55f07e1/dotnet-runtime-6.0.0-preview.2.21154.6-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/e76ec995-5d51-4bd2-983f-ce1ad0f3605c/ea7fd63e7272ce7b482ec2e7ed9c6510/dotnet-runtime-6.0.0-preview.2.21154.6-win-x86.zip
[//]: # ( WindowsDesktop 6.0.0-preview.2.21154.2)
[windowsdesktop-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/3abda7f1-e93b-4aa5-ae35-9cfc09e1257a/f92e63d978f22d480adc74570112c074/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-arm64.exe
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/487e7b8f-bd02-4403-8032-27ae2dad9e8e/f959e79463be4ccc69b24c5754ca980e/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/343d8b74-b7d8-439c-9d7e-42cb15313f62/c5e2a3d0d3fa0d12347fb445b9640b79/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-x86.exe
[//]: # ( ASP 6.0.0-preview.2.21154.6)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/471390d6-e308-41d7-8727-57ff3878bd28/306c3671d0129187e5f82d63058820d8/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2439a067-d1e8-4f01-b0eb-fc36e2024eef/9ac2ce92d3465b6e0a4981014b098619/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/88056730-b112-4b37-b9c9-2a28274499d4/640e171ccdf76103ef284d83cdea95e8/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d992937e-43f3-4f26-9c3c-39dd6e94c9e8/b8d49e845722a84e93178a383bf96e48/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/49e8a9d0-78a5-4045-8813-924e1bf99372/da066c42bf329b46359c1bfefdda462d/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-x64.tar.gz
[aspnetcore-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/36ae4114-cd59-4107-97e5-85b337c4969b/44dd3dcb76d158b1dbb39fdd51db3dd9/aspnetcore-runtime-6.0.0-preview.2.21154.6-osx-arm64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/caa6644e-34b6-49ba-8c2d-4a0767d0763c/185c1925693b6028cd54d7e1b3c3c018/aspnetcore-runtime-6.0.0-preview.2.21154.6-osx-x64.tar.gz
[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/3290547f-1fff-4f3d-a4ff-188ef8c09d1c/0b1734a65f4e839ac7c1ca48ea456791/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-arm64.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/65c5f480-ee27-49fe-9402-c4bf16c5543b/8eb03f9c1530e079fd3475da0bcd5b88/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/4e958603-2934-4a0c-8867-060a09ce8d10/460f1ff233ba7511b74751d3df82111a/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/8a1e869b-4b6d-4127-97cb-d1d5a3814e94/aa7415b512d9ae37ecf88943f318eb60/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/d844044f-6a74-4ae7-950e-7a36296305fc/266a39da931e196d4fe2b2ba88f32ccd/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/8f7df454-eea2-4b8c-9194-910fb611679f/8fa8d8415b488668b2d2c6a68e1c63d5/dotnet-hosting-6.0.0-preview.2.21154.6-win.exe
[//]: # ( SDK w.2.21155 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8c9dc65d-e004-4fe3-8327-4ba4c235095c/d16e99faf79b817b846f5734e94830de/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1d639275-6a89-45e9-a337-725c3ce49439/aa35a5e06539c6ffe1f81e74e45784e9/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cdc62c8d-ccf3-4296-a6e1-88db75ad0805/33648a6a493ad507671d01776abbfd76/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ae5c17cb-7e03-4564-85cc-c53abc3827b6/30b8f35934437db6f4b5a9624faaf872/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/25c7e38e-0a6a-4d66-ac4e-b550a44b8a98/49128be84b903799259e7bebe8e9d969/dotnet-sdk-6.0.100-preview.2.21155.3-linux-x64.tar.gz
[dotnet-sdk-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/e5cbc909-e705-4bc1-9327-15c9f905a149/6da57e95a58cef98444698fa72378e23/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.pkg
[dotnet-sdk-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/37b33b92-1f3e-4f72-a636-d82fd01bb725/792c44980047c5c77a8a07916db87783/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/5e10dc75-294e-49f4-972e-218ae86191a3/e46d3533c30c8a864252a334820263a9/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/da2b7ceb-4248-4d0b-ba7f-7f60c3e704b6/fa7a19c67639e0bff34cdd93e303d431/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.tar.gz
[dotnet-sdk-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/a8c2e17e-fdd4-4f7f-ad2b-a1a7d05b49c9/cc664a6b59e1f585a71bf9f19c4728ea/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.exe
[dotnet-sdk-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/f54929fa-5fca-46ec-87b3-6e8338e0794a/1741b333fd0bc6771d628e2ab8317d61/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/2290b039-85d8-4d95-85f7-edbd9fcd118d/a64bef89625bc61db2a6832878610214/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/5b31ca8e-f684-4de7-9889-c53ce6cf9a3c/e85b1ef8dc6004c5f5bd0019771b21c5/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/867f39f5-2b26-4eb0-8924-d55de52cd3f3/6cec1d027f099d69ba335ec309d87529/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9f0adbca-2b5e-435c-91f0-48873304ab7d/4bcbacd1506ac33b62c439cd5ebed32a/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.zip
[//]: # ( MAUI )
[ios-win]: https://bosstoragemirror.azureedge.net/wrench/main/98c8649d0c7d1e3c4c8d8d09e022befa853fb1e7/4541181/package/Microsoft.NET.Workload.iOS.14.4.100-ci.main.1192.msi
[ios-mac]: https://bosstoragemirror.azureedge.net/wrench/main/98c8649d0c7d1e3c4c8d8d09e022befa853fb1e7/4541181/package/notarized/Microsoft.iOS.Bundle.14.4.100-ci.main.1192.pkg
[maccatalyst-mac]: https://bosstoragemirror.azureedge.net/wrench/main/98c8649d0c7d1e3c4c8d8d09e022befa853fb1e7/4541181/package/notarized/Microsoft.MacCatalyst.Bundle.14.3.100-ci.main.337.pkg
[android-win]: https://dl.internalx.com/vsts-devdiv/Xamarin.Android/public/net6/4534967/main/f4d8fe238b15eadfc7842749bf13e5fca3e2f2d2/Microsoft.NET.Workload.Android.11.0.200.148.msi
[android-mac]: https://dl.internalx.com/vsts-devdiv/Xamarin.Android/public/net6/4534967/main/f4d8fe238b15eadfc7842749bf13e5fca3e2f2d2/Microsoft.NET.Workload.Android-11.0.200-ci.f4d8fe238b15eadfc7842749bf13e5fca3e2f2d2.148.pkg
[//]: # ( Symbols )

View file

@ -1,12 +1,439 @@
{
"channel-version": "6.0",
"latest-release": "6.0.0-preview.1",
"latest-release-date": "2021-02-17",
"latest-runtime": "6.0.0-preview.1.21102.12",
"latest-sdk": "6.0.100-preview.1.21103.13",
"latest-release": "6.0.0-preview.2",
"latest-release-date": "2021-03-11",
"latest-runtime": "6.0.0-preview.2.21154.6",
"latest-sdk": "6.0.100-preview.2.21155.3",
"support-phase": "preview",
"lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/",
"releases": [
{
"release-date": "2021-03-11",
"release-version": "6.0.0-preview.2",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/6.0/preview/6.0.0-preview.2.md",
"runtime": {
"version": "6.0.0-preview.2.21154.6",
"version-display": "6.0.0-preview.2",
"vs-version": "16.9",
"vs-mac-version": "8.9",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8b73c053-23f8-4d2f-9566-04bca14c6dcb/7aea2327f5a57e552c82443746a2693b/dotnet-runtime-6.0.0-preview.2.21154.6-linux-arm.tar.gz",
"hash": "212a01b3910e58b23911b41b70902b77f3c110521657fd0e00ddb3ce99da3a62139bab29e2a8c679ade07a1a478c8b983bd06e985600739bee273424ef2c0906"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8015ee86-0721-4efc-86ea-f906898084d6/68bc54d347db3f4f9e016c8a32ba11ea/dotnet-runtime-6.0.0-preview.2.21154.6-linux-arm64.tar.gz",
"hash": "e24196fda89b2c2576e8260adcae966cc5d6831f78bbfaa3d420e7e335cde7559204d0a7c130a7e21909cde21fea421be8251f877f73b649c5c2c4513e11dfc9"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f90b01ae-16b8-4635-98e5-2c5fd37f2a5f/5cdd644c60eb2aba19e302c1e6c9b7aa/dotnet-runtime-6.0.0-preview.2.21154.6-linux-musl-arm64.tar.gz",
"hash": "2f41731749ecdf2255f734749631534e9afc1317e97da41588eae94a5dcb45b2a5e97b57c0abfd0dddc2fb7bc9632377bf56977825567310815eb8c23cd930d7"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e4e3f21d-1057-4610-aeaf-dfa219d424f8/2f6d98e193d3d08b50c5fbce3d4c4ad6/dotnet-runtime-6.0.0-preview.2.21154.6-linux-musl-x64.tar.gz",
"hash": "a562ee9bb11f9b572478bf8d773734bdcc25e1a82f818c5f5eff402066d2844f1d99b458d8b6611c60222c8f3b5236fc3b6eb70ef0939a29368c2cf12696aec9"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2c88db43-4d92-433d-b95f-81bc9118a67e/08ec34f28dca0af4e8cf551299aa4367/dotnet-runtime-6.0.0-preview.2.21154.6-linux-x64.tar.gz",
"hash": "88ba8c4fe252fb76e0c40a4dcd2fe3e9c2960f445dd97a8044be9900f3641f18b2687ec10a36545a141a1e6820bb61278d2047cacd93365954a124c92463b17b"
},
{
"name": "dotnet-runtime-osx-arm64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3de6add5-a77c-4621-bf77-1722073ac0a7/4535dfffd67bbbf59b06c1b59c0b2f29/dotnet-runtime-6.0.0-preview.2.21154.6-osx-arm64.pkg",
"hash": "7710903e7b1c7423bf863b95a78a3c62f51b9dff13c9055cfc4f7ec93c6fe7a4b7597d0cd89a2579ee3c449cdf99d0e1d7c2e68a364d52e62a1814e9a538c3f6"
},
{
"name": "dotnet-runtime-osx-arm64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cb98c2ee-cca5-4218-bfff-f7a809557e3e/4beba22c9a0c68729b5b26a1bb284323/dotnet-runtime-6.0.0-preview.2.21154.6-osx-arm64.tar.gz",
"hash": "759af37378d4db3ce6961872baaac333851d3152df0990507716a31abc3f8c115a709994ab037adeb45814d54c7e7ce1ba27d49684a4485c38533627a0042df9"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/51cb50a7-c2e6-49f9-a172-e1dd0dd0f40f/d3cd57a2fc52ff8e85d8f52ba27f2e2f/dotnet-runtime-6.0.0-preview.2.21154.6-osx-x64.pkg",
"hash": "f84c1c77d9079cf75ab2dd30b4bbe1b55946eef890909e75ee51327ecc69cd90281c116d0092e5eeb646e2da73478a903bb023db31ea8d998fe3b7c2ab0007f2"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/915ecb99-2324-4dcc-a69d-01c4cd52e119/32ade9437306585ea2656fd8bdaef5d4/dotnet-runtime-6.0.0-preview.2.21154.6-osx-x64.tar.gz",
"hash": "4a6d4577a35d08eec28c0f33f62be94202ce831d263380c4c30c5cd8490eab88a9947d21bee58744e0380a26fd0a9247eb730fb2dd243513c68f97bfa45b55d0"
},
{
"name": "dotnet-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3d6eb088-7e93-47e0-a60b-4126c2f52a35/ec3cee12fba7464c31043da34408a87e/dotnet-runtime-6.0.0-preview.2.21154.6-win-arm64.exe",
"hash": "9b6be99ae6e839e711faa96324b5e8c7b66b5f2d90cb06be233b73e1bd67fc8b259ef62274336f90b490f16782f08ee15fde1e98fee539bff396b59448075bbd"
},
{
"name": "dotnet-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/72e707fa-8bc1-424f-b588-8e2d75c29680/d0e128b706c27ec1a43803332beb74cc/dotnet-runtime-6.0.0-preview.2.21154.6-win-arm64.zip",
"hash": "c315b97bf30a419e71fc2242997fc051d46efd935d70f09aa2d3d61075e6cdb8fcda93d1138e3d4c3a316df276dbae3e9c805045acc404aea0342c4dc7a05781"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8e797f52-3308-4b2a-befc-ff1f0c58f0d8/65f18aaea3a58537efbfdf98e1939d35/dotnet-runtime-6.0.0-preview.2.21154.6-win-x64.exe",
"hash": "1d53a7a0affdf1b074db6347af4c62757b9d4906e55d3ab2d735fc565daa151cd0911b7d9e43cd5601133485360e429f11a163a7c9c2e130610b698e270005f9"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cebc9139-b042-46ec-b8bd-98b432536a00/d56de26bfdd627d5e6f2f88ae6c58c8a/dotnet-runtime-6.0.0-preview.2.21154.6-win-x64.zip",
"hash": "353bb6e108abf76ff4621db570a853effdb1969b73c59643b7b78cc60e43bc5ff3572e789032aa384a5cb668d31173b75476702fb23caad1ae438578ea1f27ee"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/5a094930-41b4-4f04-967f-9a3d33b8b6fa/af9b3d71c2ca497940d05765e55f07e1/dotnet-runtime-6.0.0-preview.2.21154.6-win-x86.exe",
"hash": "ceb3b2817937f8977ae38c18c6bb635c70cc52d3b9ce4871d3cff1c7a4f7ae907674923b1061c1c06bf0e4f0e3ab7a09b9047a117e12db04073a102a5867fa1d"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/e76ec995-5d51-4bd2-983f-ce1ad0f3605c/ea7fd63e7272ce7b482ec2e7ed9c6510/dotnet-runtime-6.0.0-preview.2.21154.6-win-x86.zip",
"hash": "2640b109e0c64010f9e50edb2c8583d8ea81a704d02f6e0044336367bd9aee94c1c3cb094c0f107f6e56f23446cf227ce162095b29df03cb70101aa9e5b0d52c"
}
]
},
"sdk": {
"version": "6.0.100-preview.2.21155.3",
"version-display": "6.0.100-preview.2",
"runtime-version": "6.0.0-preview.2.21154.6",
"vs-version": "16.9",
"vs-mac-version": "8.9",
"vs-support": "Visual Studio 2019 (v16.9 latest preview)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.9)",
"csharp-version": "9.0",
"fsharp-version": "5.0",
"vb-version": "16.0",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8c9dc65d-e004-4fe3-8327-4ba4c235095c/d16e99faf79b817b846f5734e94830de/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm.tar.gz",
"hash": "82adee2db3b57388bd0d48e5eaab64e5e6bece462d49cc0161c8b3b7559ecbc764d48ad112c7893f86858610e21342c7ca50ee1e090a4ddfd09483c24f6e5c63"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1d639275-6a89-45e9-a337-725c3ce49439/aa35a5e06539c6ffe1f81e74e45784e9/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm64.tar.gz",
"hash": "91796b6d611b3a8c1e85d8f2fd07f8889d15f4bcab7307cd1ca24c51cc1f352e3bb77f0e6219ddf92b210030feeffe18ebd1ab97b4256202e287e7e7a5236df0"
},
{
"name": "dotnet-sdk-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cdc62c8d-ccf3-4296-a6e1-88db75ad0805/33648a6a493ad507671d01776abbfd76/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-arm64.tar.gz",
"hash": "9b4fb5eab781a7ac06e8e1c4d5e5484d714d890762787ed7a81778ebdfa9fd9db6c2c6eb0432b663a4d4b9a435b2b7ec945415b47d6e3a1a6e5bb99e2d1dfc0d"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ae5c17cb-7e03-4564-85cc-c53abc3827b6/30b8f35934437db6f4b5a9624faaf872/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-x64.tar.gz",
"hash": "116ca2b5d7aede990bfe9d15918909857d15c9a64fa39faa20374fced4c82110a03484ca8c49ae17fefe4540b3c6c9dee6c13127400c1c93636800b07fa1d9f6"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/25c7e38e-0a6a-4d66-ac4e-b550a44b8a98/49128be84b903799259e7bebe8e9d969/dotnet-sdk-6.0.100-preview.2.21155.3-linux-x64.tar.gz",
"hash": "90d9b6070f7732dcf75f5a09a4f10f9b23c835a3bb144e0c3f1fa451cadd3d49c9781973b180f70a4d2798358a7c00f3c0b9b3bf35326fe4c94e470e84ac8c35"
},
{
"name": "dotnet-sdk-osx-arm64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e5cbc909-e705-4bc1-9327-15c9f905a149/6da57e95a58cef98444698fa72378e23/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.pkg",
"hash": "b76cf55453269c34b19797aa86f84a176ae3c87de58f11edb1e57831f76c672f5d0fe64a61a98b97bf3b2081e7975136a1d0f4c5f6d14f2b3d98febfb6c9bbaf"
},
{
"name": "dotnet-sdk-osx-arm64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/37b33b92-1f3e-4f72-a636-d82fd01bb725/792c44980047c5c77a8a07916db87783/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.tar.gz",
"hash": "7e38c4a5d586458aad5b81378ac1245368d95a403047878bec49103d96ba3b24b51f991f4d01b7b36220c77cbe041da7708763f7011553eb3948624932a719f4"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5e10dc75-294e-49f4-972e-218ae86191a3/e46d3533c30c8a864252a334820263a9/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.pkg",
"hash": "bb063b1f5c07f8ba082073d2404704a9ff3e6d2f5aab50ff59e6f26863f0242b3287ccd94df0fee18c152f9841af8f05fb9ce615f026b524647b704e22772689"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/da2b7ceb-4248-4d0b-ba7f-7f60c3e704b6/fa7a19c67639e0bff34cdd93e303d431/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.tar.gz",
"hash": "f86476980aed8a9520dfff22f54f9800195df611cddd08283e4d6475720eb1423d6e34356e1c21be30882f04348ca645b6992a56279df8fff845751178ac6dba"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a8c2e17e-fdd4-4f7f-ad2b-a1a7d05b49c9/cc664a6b59e1f585a71bf9f19c4728ea/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.exe",
"hash": "d6a5034fbe8ca8321968345389cdd5d9a7e79204773a8e01b141eb24da5fb269aa00bcd932d624266d6a206079c809700d52b4a87d564824e5cf2a62312906d9"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f54929fa-5fca-46ec-87b3-6e8338e0794a/1741b333fd0bc6771d628e2ab8317d61/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.zip",
"hash": "af54e25b4d4c7f2e84ed35c7c25b4ea1aac9af0f59060f4dd29ab5e1b7a8bebb3080375d27b119750b356e74c4692e541036819a9cb4c9c4cf1cb7d49f2405e1"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2290b039-85d8-4d95-85f7-edbd9fcd118d/a64bef89625bc61db2a6832878610214/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.exe",
"hash": "c49e168b4acdc17d15cc8c021d51b4300a1c19eb05ac0b4a879370199471afd09c0a51557e11a53b8b42c50be6710c6135a82662662f65dde1956f67304508d8"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5b31ca8e-f684-4de7-9889-c53ce6cf9a3c/e85b1ef8dc6004c5f5bd0019771b21c5/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.zip",
"hash": "a56debdba83e7477c069aff43bf1fc7f552b68879ed6a36e4f3903dd121ab70a762acc2120b7cd95d5d45b8f762ae71dfa2fd8b3b6165673ac2e7251682a1f6b"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/867f39f5-2b26-4eb0-8924-d55de52cd3f3/6cec1d027f099d69ba335ec309d87529/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.exe",
"hash": "fb71c70aa4a3faf59b861e915313dce548e94a49969c029b651c941ed900deee4fe3ff8399e402bb6b7f61a65f089078973a9916c7f1c52f2b0c8a547c120275"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/9f0adbca-2b5e-435c-91f0-48873304ab7d/4bcbacd1506ac33b62c439cd5ebed32a/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.zip",
"hash": "4b9b4db78152c648fcf316396f7af833b8a6b948dd005ced011dbf7ad0c55bc23835b148ce2da6949545c3003e726d4503fcc6dde9110541f6efd8973a82e1d2"
}
]
},
"sdks": [
{
"version": "6.0.100-preview.2.21155.3",
"version-display": "6.0.100-preview.2",
"runtime-version": "6.0.0-preview.2.21154.6",
"vs-version": "16.9",
"vs-mac-version": "8.9",
"vs-support": "Visual Studio 2019 (v16.9 latest preview)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.9)",
"csharp-version": "9.0",
"fsharp-version": "5.0",
"vb-version": "16.0",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8c9dc65d-e004-4fe3-8327-4ba4c235095c/d16e99faf79b817b846f5734e94830de/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm.tar.gz",
"hash": "82adee2db3b57388bd0d48e5eaab64e5e6bece462d49cc0161c8b3b7559ecbc764d48ad112c7893f86858610e21342c7ca50ee1e090a4ddfd09483c24f6e5c63"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1d639275-6a89-45e9-a337-725c3ce49439/aa35a5e06539c6ffe1f81e74e45784e9/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm64.tar.gz",
"hash": "91796b6d611b3a8c1e85d8f2fd07f8889d15f4bcab7307cd1ca24c51cc1f352e3bb77f0e6219ddf92b210030feeffe18ebd1ab97b4256202e287e7e7a5236df0"
},
{
"name": "dotnet-sdk-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cdc62c8d-ccf3-4296-a6e1-88db75ad0805/33648a6a493ad507671d01776abbfd76/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-arm64.tar.gz",
"hash": "9b4fb5eab781a7ac06e8e1c4d5e5484d714d890762787ed7a81778ebdfa9fd9db6c2c6eb0432b663a4d4b9a435b2b7ec945415b47d6e3a1a6e5bb99e2d1dfc0d"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ae5c17cb-7e03-4564-85cc-c53abc3827b6/30b8f35934437db6f4b5a9624faaf872/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-x64.tar.gz",
"hash": "116ca2b5d7aede990bfe9d15918909857d15c9a64fa39faa20374fced4c82110a03484ca8c49ae17fefe4540b3c6c9dee6c13127400c1c93636800b07fa1d9f6"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/25c7e38e-0a6a-4d66-ac4e-b550a44b8a98/49128be84b903799259e7bebe8e9d969/dotnet-sdk-6.0.100-preview.2.21155.3-linux-x64.tar.gz",
"hash": "90d9b6070f7732dcf75f5a09a4f10f9b23c835a3bb144e0c3f1fa451cadd3d49c9781973b180f70a4d2798358a7c00f3c0b9b3bf35326fe4c94e470e84ac8c35"
},
{
"name": "dotnet-sdk-osx-arm64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e5cbc909-e705-4bc1-9327-15c9f905a149/6da57e95a58cef98444698fa72378e23/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.pkg",
"hash": "b76cf55453269c34b19797aa86f84a176ae3c87de58f11edb1e57831f76c672f5d0fe64a61a98b97bf3b2081e7975136a1d0f4c5f6d14f2b3d98febfb6c9bbaf"
},
{
"name": "dotnet-sdk-osx-arm64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/37b33b92-1f3e-4f72-a636-d82fd01bb725/792c44980047c5c77a8a07916db87783/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.tar.gz",
"hash": "7e38c4a5d586458aad5b81378ac1245368d95a403047878bec49103d96ba3b24b51f991f4d01b7b36220c77cbe041da7708763f7011553eb3948624932a719f4"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5e10dc75-294e-49f4-972e-218ae86191a3/e46d3533c30c8a864252a334820263a9/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.pkg",
"hash": "bb063b1f5c07f8ba082073d2404704a9ff3e6d2f5aab50ff59e6f26863f0242b3287ccd94df0fee18c152f9841af8f05fb9ce615f026b524647b704e22772689"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/da2b7ceb-4248-4d0b-ba7f-7f60c3e704b6/fa7a19c67639e0bff34cdd93e303d431/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.tar.gz",
"hash": "f86476980aed8a9520dfff22f54f9800195df611cddd08283e4d6475720eb1423d6e34356e1c21be30882f04348ca645b6992a56279df8fff845751178ac6dba"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a8c2e17e-fdd4-4f7f-ad2b-a1a7d05b49c9/cc664a6b59e1f585a71bf9f19c4728ea/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.exe",
"hash": "d6a5034fbe8ca8321968345389cdd5d9a7e79204773a8e01b141eb24da5fb269aa00bcd932d624266d6a206079c809700d52b4a87d564824e5cf2a62312906d9"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f54929fa-5fca-46ec-87b3-6e8338e0794a/1741b333fd0bc6771d628e2ab8317d61/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.zip",
"hash": "af54e25b4d4c7f2e84ed35c7c25b4ea1aac9af0f59060f4dd29ab5e1b7a8bebb3080375d27b119750b356e74c4692e541036819a9cb4c9c4cf1cb7d49f2405e1"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2290b039-85d8-4d95-85f7-edbd9fcd118d/a64bef89625bc61db2a6832878610214/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.exe",
"hash": "c49e168b4acdc17d15cc8c021d51b4300a1c19eb05ac0b4a879370199471afd09c0a51557e11a53b8b42c50be6710c6135a82662662f65dde1956f67304508d8"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5b31ca8e-f684-4de7-9889-c53ce6cf9a3c/e85b1ef8dc6004c5f5bd0019771b21c5/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.zip",
"hash": "a56debdba83e7477c069aff43bf1fc7f552b68879ed6a36e4f3903dd121ab70a762acc2120b7cd95d5d45b8f762ae71dfa2fd8b3b6165673ac2e7251682a1f6b"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/867f39f5-2b26-4eb0-8924-d55de52cd3f3/6cec1d027f099d69ba335ec309d87529/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.exe",
"hash": "fb71c70aa4a3faf59b861e915313dce548e94a49969c029b651c941ed900deee4fe3ff8399e402bb6b7f61a65f089078973a9916c7f1c52f2b0c8a547c120275"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/9f0adbca-2b5e-435c-91f0-48873304ab7d/4bcbacd1506ac33b62c439cd5ebed32a/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.zip",
"hash": "4b9b4db78152c648fcf316396f7af833b8a6b948dd005ced011dbf7ad0c55bc23835b148ce2da6949545c3003e726d4503fcc6dde9110541f6efd8973a82e1d2"
}
]
}
],
"aspnetcore-runtime": {
"version": "6.0.0-preview.2.21154.6",
"version-display": "6.0.0-preview.2",
"version-aspnetcoremodule": [
"16.0.21063.0"
],
"vs-version": "",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/471390d6-e308-41d7-8727-57ff3878bd28/306c3671d0129187e5f82d63058820d8/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-arm.tar.gz",
"hash": "eb2b0a3c725a3b0f9265b992385a39efe15ba1eba0060388a84497b464faea5fe8b51ce0ff49cf6058e5539a86587d6b68d41a0a18ba7e3d20c6a4d9585dc13d"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2439a067-d1e8-4f01-b0eb-fc36e2024eef/9ac2ce92d3465b6e0a4981014b098619/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-arm64.tar.gz",
"hash": "0400434b2d77e74fa4b347e65ae88905d3715fd76ecf6562a2ec7ddd7a54a00b92bb39c272a383dddd134d82b340cbd4658bc4661a53059e1e5227cd61c154b0"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/88056730-b112-4b37-b9c9-2a28274499d4/640e171ccdf76103ef284d83cdea95e8/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-musl-arm64.tar.gz",
"hash": "32d64a450c17e859fedfe27478279a039982773c2a2d8dffecaadace89d84df555a894a25bd7b2466d67e288b65d85dd2391b24c5f994e5df9e5f6e01f9fb6ea"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d992937e-43f3-4f26-9c3c-39dd6e94c9e8/b8d49e845722a84e93178a383bf96e48/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-musl-x64.tar.gz",
"hash": "12ea6d2188fa5e9ea9248600b84cbb37836e3c26edacfff291b00c8eddf5db730b5d01a003f7a1049610d99a76f6e690db04e7b7877679db93e19b2941ae238a"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/49e8a9d0-78a5-4045-8813-924e1bf99372/da066c42bf329b46359c1bfefdda462d/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-x64.tar.gz",
"hash": "703d6893bc73aba1a33e12b636820ab43948603114e01bbcc6a92d17439bd3d532525c17dc1d39f925b552b139b1ae9b9cbf086a57292db511eadc3e47db00ae"
},
{
"name": "aspnetcore-runtime-osx-arm64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/36ae4114-cd59-4107-97e5-85b337c4969b/44dd3dcb76d158b1dbb39fdd51db3dd9/aspnetcore-runtime-6.0.0-preview.2.21154.6-osx-arm64.tar.gz",
"hash": "4ac574f16754593d896a85145640b1ee1817c607d1273bef6c1ab3abcedf024511d1aee35e24605cc56ca098585db473d17131ccc3e6d69c05376708fedc519f"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/caa6644e-34b6-49ba-8c2d-4a0767d0763c/185c1925693b6028cd54d7e1b3c3c018/aspnetcore-runtime-6.0.0-preview.2.21154.6-osx-x64.tar.gz",
"hash": "cee32d184037f858b26b4acb1e7d12179185bf771d2ca30c6e5db2768377194d40b2558166332b6d5b340c89fbd4e86e5d079185dd048942e8d34f540a7d89a4"
},
{
"name": "aspnetcore-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3290547f-1fff-4f3d-a4ff-188ef8c09d1c/0b1734a65f4e839ac7c1ca48ea456791/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-arm64.zip",
"hash": "a793b45b71c55adecaae5c683e6cb3758beb303eb763cfff2c8af9657bfa2d8a4aa6391d69f48e2aeb4748a4b225742f0ce66a18656c4ac5c6e81618b63f91fc"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/65c5f480-ee27-49fe-9402-c4bf16c5543b/8eb03f9c1530e079fd3475da0bcd5b88/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x64.exe",
"hash": "35c4dbc50ef35cfd54671670eeade78b411102904852c0f6c3d0452cfa9b9ff3e920538523e2fd47c990f87d1fcfd2f1ad9ef89de705aebf4c2c901f9ec512fd"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4e958603-2934-4a0c-8867-060a09ce8d10/460f1ff233ba7511b74751d3df82111a/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x64.zip",
"hash": "ceb0ff56966c13dedae34c216598b68369d1a0f93f0815e31dec544560dfdcd0dd8bb3ab60c9aa48739a72cf6b1a71bbe058edc3adbdadb6261e6e06f5c665e0"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a1e869b-4b6d-4127-97cb-d1d5a3814e94/aa7415b512d9ae37ecf88943f318eb60/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x86.exe",
"hash": "5054ca4f7caa3b24951f7ed806ff30519f184c87eba47de2256737a6ab3d31faf52b14954e5ae4224bb8ff742a44c4631645e3d11f7708950d9e87b30e2cf6a3"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/d844044f-6a74-4ae7-950e-7a36296305fc/266a39da931e196d4fe2b2ba88f32ccd/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x86.zip",
"hash": "9f059ea6d2100d43440af035c1fed75c8bd557678c9aad39c04f69cd9ae646c263ffbc5d5a7b51b767abc9095a6e99e2bb80aa3171e1506987767af724f32c65"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/8f7df454-eea2-4b8c-9194-910fb611679f/8fa8d8415b488668b2d2c6a68e1c63d5/dotnet-hosting-6.0.0-preview.2.21154.6-win.exe",
"hash": "48afc2174599b0517d7cccf22841ad64b85e28d1c56ebb9415b6fa51e8d4636a3bc78ac32fb1f70bce1746e30327475034ee991b1a7d2279a398ad056ada6083",
"akams": "https://aka.ms/dotnetcore-6-0-windowshosting"
}
]
},
"windowsdesktop": {
"version": "6.0.0-preview.2.21154.2",
"version-display": "6.0.0-preview.2",
"files": [
{
"name": "windowsdesktop-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3abda7f1-e93b-4aa5-ae35-9cfc09e1257a/f92e63d978f22d480adc74570112c074/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-arm64.exe",
"hash": "0053197d93189df2f2903bbc439f54aaee0f7778756035d3ada637b682d923790f8a25981dff0d57c93d5ba935b819055a0f2be7ecd302647b1f58ea60f20233"
},
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/487e7b8f-bd02-4403-8032-27ae2dad9e8e/f959e79463be4ccc69b24c5754ca980e/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-x64.exe",
"hash": "25d562ffd51e1285d48c2ea1dae953e2ea28854da39224aa1ce529fd9585a109dbe14fd9ee1ad724327a8d13563134fe9a1a5da885f4d7302d24f7deb2a2cfa1"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/343d8b74-b7d8-439c-9d7e-42cb15313f62/c5e2a3d0d3fa0d12347fb445b9640b79/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-x86.exe",
"hash": "1aed70644dd68899eebbbc57efec5c9a5a11633f1a9d5e42f5e6c676ffb71d68d3d31fcfc5c07de13247348963ba62a84cdab6b4fff80f5d704eb9596ab2d3d7"
}
]
}
},
{
"release-date": "2021-02-17",
"release-version": "6.0.0-preview.1",

View file

@ -2,11 +2,11 @@
"releases-index": [
{
"channel-version": "6.0",
"latest-release": "6.0.0-preview.1",
"latest-release-date": "2021-02-17",
"latest-release": "6.0.0-preview.2",
"latest-release-date": "2021-03-11",
"security": false,
"latest-runtime": "6.0.0-preview.1.21102.12",
"latest-sdk": "6.0.100-preview.1.21103.13",
"latest-runtime": "6.0.0-preview.2.21154.6",
"latest-sdk": "6.0.100-preview.2.21155.3",
"product": ".NET",
"support-phase": "preview",
"eol-date": null,
@ -14,22 +14,22 @@
},
{
"channel-version": "5.0",
"latest-release": "5.0.4",
"latest-release-date": "2021-03-09",
"latest-release": "5.0.3",
"latest-release-date": "2021-03-02",
"security": true,
"latest-runtime": "5.0.4",
"latest-sdk": "5.0.201",
"latest-runtime": "5.0.3",
"latest-sdk": "5.0.200",
"product": ".NET",
"support-phase": "current",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json"
},
{
"channel-version": "3.1",
"latest-release": "3.1.13",
"latest-release-date": "2021-03-09",
"latest-release": "3.1.12",
"latest-release-date": "2021-02-09",
"security": true,
"latest-runtime": "3.1.13",
"latest-sdk": "3.1.407",
"latest-runtime": "3.1.12",
"latest-sdk": "3.1.406",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2022-12-03",
@ -49,11 +49,11 @@
},
{
"channel-version": "2.1",
"latest-release": "2.1.26",
"latest-release-date": "2021-03-09",
"latest-release": "2.1.25",
"latest-release-date": "2021-02-09",
"security": true,
"latest-runtime": "2.1.23",
"latest-sdk": "2.1.814",
"latest-runtime": "2.1.25",
"latest-sdk": "2.1.813",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2021-08-21",