Artifacts for October .NET Release

This commit is contained in:
Rahul Bhandari 2020-09-25 08:16:21 -07:00
parent 0bef7f112f
commit 0d4d352b4e
21 changed files with 3248 additions and 37 deletions

View file

@ -12,8 +12,8 @@ This table describes support type, supported patch version and end of support da
| Version | Release Date | Support Level | Supported Patch Version | End of Support |
| -- | -- | -- | -- | -- |
| [.NET Core 3.1](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | December 3, 2019 | LTS | [3.1.5](https://dotnet.microsoft.com/download/dotnet-core/3.1) | December 3, 2022 |
| [.NET Core 2.1](https://blogs.msdn.microsoft.com/dotnet/2018/05/30/announcing-net-core-2-1) | May 30, 2018 | LTS | [2.1.19](https://dotnet.microsoft.com/download/dotnet-core/2.1) | August 21, 2021 |
| [.NET Core 3.1](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | December 3, 2019 | LTS | [3.1.9](https://dotnet.microsoft.com/download/dotnet-core/3.1) | December 3, 2022 |
| [.NET Core 2.1](https://blogs.msdn.microsoft.com/dotnet/2018/05/30/announcing-net-core-2-1) | May 30, 2018 | LTS | [2.1.23](https://dotnet.microsoft.com/download/dotnet-core/2.1) | August 21, 2021 |
For previous versions, [see here](https://dotnet.microsoft.com/platform/support/policy/dotnet-core).

View file

@ -30,9 +30,9 @@ OS | Version | Architectures |
------------------------------|-------------------------------|----------------|-----
Red Hat Enterprise Linux | 6 | x64 | [Microsoft support policy](https://www.microsoft.com/net/support/policy)
Red Hat Enterprise Linux <br> CentOS <br> Oracle Linux | 7+ | x64 | [Red Hat support policy](https://access.redhat.com/support/policy/updates/errata/) <br> [CentOS lifecycle](https://wiki.centos.org/FAQ/General#head-fe8a0be91ee3e7dea812e8694491e1dde5b75e6d) <br> [Oracle Linux lifecycle](http://www.oracle.com/us/support/library/elsp-lifetime-069338.pdf)
Fedora | 30, 31 | x64 | [Fedora lifecycle](https://fedoraproject.org/wiki/End_of_life)
Fedora | 30+ | x64 | [Fedora lifecycle](https://fedoraproject.org/wiki/End_of_life)
Debian | 9+ | x64, ARM32 | [Debian lifecycle](https://wiki.debian.org/DebianReleases)
Ubuntu | 20.04, 18.04, 16.04 | x64, ARM32\* | [Ubuntu lifecycle](https://wiki.ubuntu.com/Releases)
Ubuntu | 20.10, 20.04, 18.04, 16.04 | x64, ARM32\* | [Ubuntu lifecycle](https://wiki.ubuntu.com/Releases)
Linux Mint | 18, 17 | x64 | [Linux Mint end of life announcements](https://forums.linuxmint.com/search.php?keywords=%22end+of+life%22&terms=all&author=&sc=1&sf=titleonly&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search)
openSUSE | 15+ | x64 | [OpenSUSE lifecycle](https://en.opensuse.org/Lifetime)
SUSE Enterprise Linux (SLES) | 12 SP2+ | x64 | [SUSE lifecycle](https://www.suse.com/lifecycle/)

View file

@ -0,0 +1,95 @@
# .NET Core 2.1.23
.NET Core 2.1.23 comprises:
* .NET Core Runtime 2.1.23
* ASP.NET Core 2.1.23
* .NET Core SDK 2.1.519
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.23/2.1.23.md) for details about what is included in this update.
## Docker
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## Installing .NET Core on Linux
### Install using Snap
Snap is a system which installs applications in an isolated environment and provides for automatic updates. Many distributions which are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
`sudo snap install dotnet-sdk --channel 2.1/stable --classic`
When .NET Core in 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 distros 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/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
Before installing .NET, you will need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
| Distro | Package Manager |
| --- | :----: |
| CentOS, Oracle | yum |
| Debian, Ubuntu | apt-get |
| Fedora | dnf |
| OpenSUSE, SLES | zypper |
## Develop applications
To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install dotnet-sdk-2.1
```
## Run applications
If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install aspnetcore-runtime-2.1
```
### 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/master/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-2.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-2.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
## Windows Server Hosting
If you're looking to host standalone 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-2.1.23-win.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.23/2.1.23.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/3e3c37fb-4d77-4558-a78c-17434e1cc804/60116643f610fb43f858af4e0dc1b223/dotnet-hosting-2.1.23-win.exe

View file

@ -0,0 +1,188 @@
# .NET Core 2.1.23 Update - October 13, 2020
[.NET Core 2.1.23](https://dotnet.microsoft.com/download/dotnet-core/2.1) is available for download and usage in your environment. This release includes .NET Core 2.1.23, ASP.NET Core 2.1.23 and the .NET Core SDK.
* [Blog Post][dotnet-blog]
* [Downloads](#downloads)
* [Changes in this release](#changes-in-2123)
* [Known Issues](../2.1-known-issues.md)
* [Visual Studio Compatibility](#visual-studio-compatibility)
Your feedback is important and appreciated. We've created an issue at [dotnet/core #XXXX](https://github.com/dotnet/core/issues/XXXX) for your questions and comments.
## Downloads
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| <br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup>
| Linux | [See installation steps][linux-install] | [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] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-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]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup> |
| RHEL6 | - | [x64][dotnet-sdk-rhel.6-x64.tar.gz] | - | [x64][dotnet-runtime-rhel.6-x64.tar.gz] | - |
| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - |
1. Includes the .NET Core and ASP.NET Core Runtimes
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 Core runtime.
## Visual Studio Compatibility
This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual Studio 2019, Visual Studio 2017 or Visual Studio for Mac user, there are MSBuild version requirements that are satisfied by specific, matching .NET Core SDK versions. See the following table to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.0 | [2.1.616](2.1.616-download.md) |
| Windows | Visual Studio 2017 | [2.1.519](#downloads) |
| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
Note: This is not a security release hence this update won't be immediately available through Visual Studio. However, this is expected to show up in Visual Studio's October servicing release.
## Docker Images
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://blogs.msdn.microsoft.com/dotnet/2018/06/18/staying-up-to-date-with-net-container-images/).
The following repos have been updated
* [dotnet/core/runtime](https://hub.docker.com/_/microsoft-dotnet-core-runtime/)
* [dotnet/core/sdk](https://hub.docker.com/_/microsoft-dotnet-core-sdk/)
* [dotnet/core/samples](https://hub.docker.com/_/microsoft-dotnet-core-samples)
* [dotnet/aspnetcore](https://hub.docker.com/_/microsoft-dotnet-core-aspnet)
The images are expected to be available later today.
## Azure AppServices
* .NET Core 2.1.23 is being deployed to Azure App Services and the deployment is expected to complete later in October 2020.
## .NET Core Lifecycle News
Fedroa 33 and Ubuntu 20.10 has been added as [supported OS](../2.1-supported-os.md) with this update of .NET Core 3.1.
## Changes in 2.1.23
.NET Core 2.1.23 release carries only non-security fixes.
## Packages updated in this release:
Package name | Version
:----------- | :------------------
microsoft.aspnetcore.all | 2.1.23.nupkg
microsoft.aspnetcore.app | 2.1.23.nupkg
microsoft.dotnet.web.client.itemtemplates | 2.1.23.nupkg
microsoft.dotnet.web.itemtemplates | 2.1.23.nupkg
microsoft.dotnet.web.projecttemplates.2.1 | 2.1.23.nupkg
microsoft.dotnet.web.spa.projecttemplates.2.1 | 2.1.23.nupkg
microsoft.extensions.caching.abstractions | 2.1.23.nupkg
microsoft.extensions.caching.memory | 2.1.23.nupkg
system.io.pipelines | 4.5.4.nupkg
microsoft.netcore.app | 2.1.23.nupkg
microsoft.netcore.dotnetapphost | 2.1.23.nupkg
microsoft.netcore.dotnethost | 2.1.23.nupkg
microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.linux-arm.microsoft.netcore.app | 2.1.23.nupkg
runtime.linux-arm.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.linux-arm.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.linux-arm.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.linux-arm.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.linux-arm64.microsoft.netcore.app | 2.1.23.nupkg
runtime.linux-arm64.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.linux-arm64.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.linux-arm64.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.linux-arm64.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.linux-musl-x64.microsoft.netcore.app | 2.1.23.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.linux-x64.microsoft.netcore.app | 2.1.23.nupkg
runtime.linux-x64.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.linux-x64.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.linux-x64.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.linux-x64.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.osx-x64.microsoft.netcore.app | 2.1.23.nupkg
runtime.osx-x64.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.osx-x64.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.osx-x64.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.osx-x64.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.rhel.6-x64.microsoft.netcore.app | 2.1.23.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.win-arm.microsoft.netcore.app | 2.1.23.nupkg
runtime.win-arm.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.win-arm.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.win-arm.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.win-arm.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.win-arm64.microsoft.netcore.app | 2.1.23.nupkg
runtime.win-arm64.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.win-arm64.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.win-arm64.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.win-arm64.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.win-x64.microsoft.netcore.app | 2.1.23.nupkg
runtime.win-x64.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.win-x64.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.win-x64.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.win-x64.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
runtime.win-x86.microsoft.netcore.app | 2.1.23.nupkg
runtime.win-x86.microsoft.netcore.dotnetapphost | 2.1.23.nupkg
runtime.win-x86.microsoft.netcore.dotnethost | 2.1.23.nupkg
runtime.win-x86.microsoft.netcore.dotnethostpolicy | 2.1.23.nupkg
runtime.win-x86.microsoft.netcore.dotnethostresolver | 2.1.23.nupkg
vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.23-servicing-29322-01.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.23-servicing-29322-01.nupkg
vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.23-servicing-29322-01.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.23-servicing-29322-01.nupkg
vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.23-servicing-29322-01.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.23-servicing-29322-01.nupkg
[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/master/release-notes/2.1/2.1.23/2.1.23.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-october-2020/
[//]: # ( Runtime 2.1.23)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e0d4bf96-e481-4c16-a2dc-69f002f2f892/ee8457bcbfae80bb4e76efe04f5bd3e2/dotnet-runtime-2.1.23-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/832a703f-ca7e-4fa5-8b8d-bc87d6cbf4f0/15d78d838a2173d470c2e9a97b0c7b63/dotnet-runtime-2.1.23-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1693393c-e916-497d-ab55-304be84f75d6/aca7f9d2befdec0b26373510eddf51bb/dotnet-runtime-2.1.23-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e52a08ae-0a98-4dbf-b371-bf50815ae05a/48e4eb969aee8df978fa2f32b743ae76/dotnet-runtime-2.1.23-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/8cd129d5-207f-4cfd-a5fb-5f2c56ee81c0/824ed5222546398bc90b586b402c0324/dotnet-runtime-2.1.23-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2d6c0e87-ed74-4a83-939a-3bc752a442b3/f989f900d202e949b0fba3a2afc442f5/dotnet-runtime-2.1.23-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5e391c65-0174-4ce6-8fbc-254fb4cbc567/2cfabd8d9a8f46ab32084ceb0d2ebf37/dotnet-runtime-2.1.23-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/35d8cc1b-4cd0-49b9-bd9f-9d4183842d3e/a91ceb48d8716bd600619dd8eb5a784e/dotnet-runtime-2.1.23-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/b6dd738b-bb15-448a-86cd-e8cf96138a06/0b0ad58041510ca8ed00957764b37c13/dotnet-runtime-2.1.23-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/75a5ff0b-f69f-4364-b922-60e2dbe562e2/823dfb5bab4dadf9ca9b698e191d0a81/dotnet-runtime-2.1.23-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d5f6d9c8-7634-4b44-80e1-6e07670c08df/53aae9018e45a5c3e2a0ff503ec8c4af/dotnet-runtime-2.1.23-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c4fa76ed-1afe-4902-8ef9-2b4768e84202/1e239ee5c1de03a712ae57ab3184f2e9/dotnet-runtime-2.1.23-win-x86.zip
[//]: # ( ASP 2.1.23)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/73592379-5553-461d-9472-f54688488955/74bc7c5a34487da9447b9544679566c1/aspnetcore-runtime-2.1.23-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3c881d8d-bae5-4f70-adf9-278d7c0d3ea1/c5d707365e2b84d3cf97d68211592300/aspnetcore-runtime-2.1.23-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3422a123-3f37-4544-b0ed-e3922b50e1b0/c34c607ba18a67763bacded434607c56/aspnetcore-runtime-2.1.23-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6469b602-063e-4296-a446-57a00845d542/45e3896844149e1109661d89f2ee12ab/aspnetcore-runtime-2.1.23-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7464f6c4-0d39-470b-824d-50ffb3825b33/2d6b1e085f5429413d9fb7e42632f5b1/aspnetcore-runtime-2.1.23-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/c1907d59-03d9-4f47-a3e6-640720010103/fcb027da4bc9ba076fbe7c7cb1a2690b/aspnetcore-runtime-2.1.23-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/175fcf7f-3cc3-413f-afa2-2c7f1b6357a8/55e778aa29242f4b8cee9e40eeb43605/aspnetcore-runtime-2.1.23-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9b97a12c-818c-485c-8ebd-cc7d132ce5b0/6fe7f407e019364da2d3458e88d9c5fc/aspnetcore-runtime-2.1.23-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/3e3c37fb-4d77-4558-a78c-17434e1cc804/60116643f610fb43f858af4e0dc1b223/dotnet-hosting-2.1.23-win.exe
[//]: # ( SDK 2.1.519 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0f753b68-cf67-4562-b964-0fac9df4b6d6/e6d40a254c63dbab79bdd60f78f5c10c/dotnet-sdk-2.1.519-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/25cfd780-54b4-4170-8c08-d0a96d8837d4/6d5f74febc099b18d1161f0c17b97ebb/dotnet-sdk-2.1.519-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1dfd7066-ad28-42d7-94a6-55619798b86a/4e99d531894f06372f3ed04813a624f0/dotnet-sdk-2.1.519-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a908e90e-fb10-4573-bb63-a7c09cd3bf06/b540d5eb1b3fd581c996921b60fc9e91/dotnet-sdk-2.1.519-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/7871387c-aea9-4228-b703-f81bfe3b41ca/217ff603d32ec97fa604e9b2a52e2e95/dotnet-sdk-2.1.519-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/79c061fe-1bdc-4134-8138-da5dd897e6c5/2dd0ef1775073970448cd62bb48c2a47/dotnet-sdk-2.1.519-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c0c32495-bc33-421c-a12d-d05a5ae0faeb/1de14ecaaddeaa5c75de102871fd19ec/dotnet-sdk-2.1.519-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/548c6de4-bc4c-4e4f-b148-9551656f994a/0016fbe28e9193844b8aad8aa8b090fd/dotnet-sdk-2.1.519-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/41ccf3eb-f137-4140-9dc0-b39caa9861d6/12da178dc042f00201a65fbf120abae5/dotnet-sdk-2.1.519-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/77ecbd22-23fc-488c-aab9-d5e419f8d1b0/2542e487b475bfb3a5eb8ee0f03946d9/dotnet-sdk-2.1.519-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/b4937af6-a9bb-4f02-addf-1ce59b792d65/a8597f405ce235f1bca1723c461534d8/dotnet-sdk-2.1.519-win-x86.zip

View file

@ -0,0 +1,146 @@
# .NET Core 2.1.616
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 2.1.616
* .NET Core Runtime 2.1.23
* ASP.NET Core 2.1.23
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.23/2.1.23.md) for details about what is included in this update.
## Downloads
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| <br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup>
| Linux | [See installation steps][linux-setup] | [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] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-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]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup> |
| RHEL6 | - | [x64][dotnet-sdk-rhel.6-x64.tar.gz] | - | [x64][dotnet-runtime-rhel.6-x64.tar.gz] | - |
| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - |
1. Includes the .NET Core and ASP.NET Core Runtimes
2. For hosting standalone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Core runtime.
## Visual Studio Compatibility
This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual Studio 2019, Visual Studio 2017 or Visual Studio for Mac user, there are MSBuild version requirements that are satisfied by specific, matching .NET Core SDK versions. See the table below to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.0 | [2.1.616](#downloads) |
| Windows | Visual Studio 2017 | [2.1.519](2.1.23.md) |
| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
## Docker
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## Installing .NET Core on Linux
### Install using a Package Manager
Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
| Distro | Package Manager |
| --- | :----: |
| CentOS, Oracle | yum |
| Debian, Ubuntu | apt-get |
| Fedora | dnf |
| OpenSUSE, SLES | zypper |
## Develop applications
To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install dotnet-sdk-2.1
```
## Run applications
If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install aspnetcore-runtime-2.1
```
### 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/master/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-2.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-2.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
## Windows Server Hosting
If you're looking to host standalone 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-2.1.23-win.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[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/master/release-notes/2.1/2.1.23/2.1.23.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://docs.microsoft.com/en-us/dotnet/core/install/
[//]: # ( Runtime 2.1.23)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e0d4bf96-e481-4c16-a2dc-69f002f2f892/ee8457bcbfae80bb4e76efe04f5bd3e2/dotnet-runtime-2.1.23-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/832a703f-ca7e-4fa5-8b8d-bc87d6cbf4f0/15d78d838a2173d470c2e9a97b0c7b63/dotnet-runtime-2.1.23-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1693393c-e916-497d-ab55-304be84f75d6/aca7f9d2befdec0b26373510eddf51bb/dotnet-runtime-2.1.23-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e52a08ae-0a98-4dbf-b371-bf50815ae05a/48e4eb969aee8df978fa2f32b743ae76/dotnet-runtime-2.1.23-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/8cd129d5-207f-4cfd-a5fb-5f2c56ee81c0/824ed5222546398bc90b586b402c0324/dotnet-runtime-2.1.23-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2d6c0e87-ed74-4a83-939a-3bc752a442b3/f989f900d202e949b0fba3a2afc442f5/dotnet-runtime-2.1.23-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5e391c65-0174-4ce6-8fbc-254fb4cbc567/2cfabd8d9a8f46ab32084ceb0d2ebf37/dotnet-runtime-2.1.23-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/35d8cc1b-4cd0-49b9-bd9f-9d4183842d3e/a91ceb48d8716bd600619dd8eb5a784e/dotnet-runtime-2.1.23-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/b6dd738b-bb15-448a-86cd-e8cf96138a06/0b0ad58041510ca8ed00957764b37c13/dotnet-runtime-2.1.23-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/75a5ff0b-f69f-4364-b922-60e2dbe562e2/823dfb5bab4dadf9ca9b698e191d0a81/dotnet-runtime-2.1.23-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d5f6d9c8-7634-4b44-80e1-6e07670c08df/53aae9018e45a5c3e2a0ff503ec8c4af/dotnet-runtime-2.1.23-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c4fa76ed-1afe-4902-8ef9-2b4768e84202/1e239ee5c1de03a712ae57ab3184f2e9/dotnet-runtime-2.1.23-win-x86.zip
[//]: # ( ASP 2.1.23)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/73592379-5553-461d-9472-f54688488955/74bc7c5a34487da9447b9544679566c1/aspnetcore-runtime-2.1.23-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3c881d8d-bae5-4f70-adf9-278d7c0d3ea1/c5d707365e2b84d3cf97d68211592300/aspnetcore-runtime-2.1.23-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3422a123-3f37-4544-b0ed-e3922b50e1b0/c34c607ba18a67763bacded434607c56/aspnetcore-runtime-2.1.23-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6469b602-063e-4296-a446-57a00845d542/45e3896844149e1109661d89f2ee12ab/aspnetcore-runtime-2.1.23-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7464f6c4-0d39-470b-824d-50ffb3825b33/2d6b1e085f5429413d9fb7e42632f5b1/aspnetcore-runtime-2.1.23-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/c1907d59-03d9-4f47-a3e6-640720010103/fcb027da4bc9ba076fbe7c7cb1a2690b/aspnetcore-runtime-2.1.23-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/175fcf7f-3cc3-413f-afa2-2c7f1b6357a8/55e778aa29242f4b8cee9e40eeb43605/aspnetcore-runtime-2.1.23-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9b97a12c-818c-485c-8ebd-cc7d132ce5b0/6fe7f407e019364da2d3458e88d9c5fc/aspnetcore-runtime-2.1.23-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/3e3c37fb-4d77-4558-a78c-17434e1cc804/60116643f610fb43f858af4e0dc1b223/dotnet-hosting-2.1.23-win.exe
[//]: # ( SDK 2.1.616 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e8878e38-dc3b-4c11-824d-724df90ca7d9/82e0b5e99e8649cd01117bb73ebfa4b0/dotnet-sdk-2.1.616-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/53655ad3-2ff0-4511-bf53-1765dee4abd7/b48541a1f44f120fe7c4d4a6a2952940/dotnet-sdk-2.1.616-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/005b9d2b-c1fd-4ea0-b3f0-571f1a0a3aaa/524a97c0acfab53a667ea6ddbf246dcb/dotnet-sdk-2.1.616-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b30af3d2-2123-40fa-a4da-133d2d5c46a2/dd8276dd5a05678cbc2a9742a1495887/dotnet-sdk-2.1.616-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/a2272bb1-1dbc-4349-a4ac-bc0de031a9cf/f8f848ae7479b6dda97efff4a65392ad/dotnet-sdk-2.1.616-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e235fc4e-9618-49c6-93d9-b5f24c8ee8c5/c9e21fc5d6eff93e49642793e8494c76/dotnet-sdk-2.1.616-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/793a6c09-f490-45ff-8241-e8f1ca1088cc/b9b79ed61687404b0acfcab794bb1d3d/dotnet-sdk-2.1.616-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/4c566a24-cd33-46b6-8069-de2914c99a61/2d1acdf57d455bab980bb4accf9e13c2/dotnet-sdk-2.1.616-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d8d4b648-2e34-49ff-967d-5832d9c7a7c9/dbc991d0cc3cd824656400d63fa75e79/dotnet-sdk-2.1.616-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d0d7cb42-401c-4f7e-b53c-002f274ee67c/07932da76e6013dca00a1da2446ff0fc/dotnet-sdk-2.1.616-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/bf0d3e3f-4bee-452c-bb8c-a677460b249b/804a2ae250bd26f9d417bd8d5da64705/dotnet-sdk-2.1.616-win-x86.zip

View file

@ -0,0 +1,159 @@
# .NET Core 2.1.811
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 2.1.811
* .NET Core Runtime 2.1.23
* ASP.NET Core 2.1.23
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.23/2.1.23.md) for details about what is included in this update.
## Downloads
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| <br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup>
| Linux | [See installation steps][linux-setup] | [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] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-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]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup> |
| RHEL6 | - | [x64][dotnet-sdk-rhel.6-x64.tar.gz] | - | [x64][dotnet-runtime-rhel.6-x64.tar.gz] | - |
| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - |
1. Includes the .NET Core and ASP.NET Core Runtimes
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 Core runtime.
## Visual Studio Compatibility
This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual Studio 2019, Visual Studio 2017 or Visual Studio for Mac user, there are MSBuild version requirements that are satisfied by specific, matching .NET Core SDK versions. See the table below to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.0 | [2.1.616](2.1.616-download.md) |
| Windows | Visual Studio 2017 | [2.1.519](2.1.23.md) |
| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
## Docker
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## Installing .NET Core on Linux
### Install using Snap
Snap is a system which installs applications in an isolated environment and provides for automatic updates. Many distributions which are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
`sudo snap install dotnet-sdk --channel 2.1/stable -classic`
When .NET Core in 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 won't 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 distros 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/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
| Distro | Package Manager |
| --- | :----: |
| CentOS, Oracle | yum |
| Debian, Ubuntu | apt-get |
| Fedora | dnf |
| OpenSUSE, SLES | zypper |
## Develop applications
To develop applications using the .NET Core SDK, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install dotnet-sdk-2.1
```
## Run applications
If you only need to run existing applications, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install aspnetcore-runtime-2.1
```
### 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/master/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-2.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-2.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
## Windows Server Hosting
If you're looking to host standalone 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-2.1.23-win.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[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/master/release-notes/2.1/2.1.23/2.1.23.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.23-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[//]: # ( Runtime 2.1.23)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e0d4bf96-e481-4c16-a2dc-69f002f2f892/ee8457bcbfae80bb4e76efe04f5bd3e2/dotnet-runtime-2.1.23-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/832a703f-ca7e-4fa5-8b8d-bc87d6cbf4f0/15d78d838a2173d470c2e9a97b0c7b63/dotnet-runtime-2.1.23-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1693393c-e916-497d-ab55-304be84f75d6/aca7f9d2befdec0b26373510eddf51bb/dotnet-runtime-2.1.23-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e52a08ae-0a98-4dbf-b371-bf50815ae05a/48e4eb969aee8df978fa2f32b743ae76/dotnet-runtime-2.1.23-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/8cd129d5-207f-4cfd-a5fb-5f2c56ee81c0/824ed5222546398bc90b586b402c0324/dotnet-runtime-2.1.23-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2d6c0e87-ed74-4a83-939a-3bc752a442b3/f989f900d202e949b0fba3a2afc442f5/dotnet-runtime-2.1.23-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5e391c65-0174-4ce6-8fbc-254fb4cbc567/2cfabd8d9a8f46ab32084ceb0d2ebf37/dotnet-runtime-2.1.23-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/35d8cc1b-4cd0-49b9-bd9f-9d4183842d3e/a91ceb48d8716bd600619dd8eb5a784e/dotnet-runtime-2.1.23-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/b6dd738b-bb15-448a-86cd-e8cf96138a06/0b0ad58041510ca8ed00957764b37c13/dotnet-runtime-2.1.23-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/75a5ff0b-f69f-4364-b922-60e2dbe562e2/823dfb5bab4dadf9ca9b698e191d0a81/dotnet-runtime-2.1.23-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d5f6d9c8-7634-4b44-80e1-6e07670c08df/53aae9018e45a5c3e2a0ff503ec8c4af/dotnet-runtime-2.1.23-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c4fa76ed-1afe-4902-8ef9-2b4768e84202/1e239ee5c1de03a712ae57ab3184f2e9/dotnet-runtime-2.1.23-win-x86.zip
[//]: # ( ASP 2.1.23)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/73592379-5553-461d-9472-f54688488955/74bc7c5a34487da9447b9544679566c1/aspnetcore-runtime-2.1.23-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3c881d8d-bae5-4f70-adf9-278d7c0d3ea1/c5d707365e2b84d3cf97d68211592300/aspnetcore-runtime-2.1.23-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3422a123-3f37-4544-b0ed-e3922b50e1b0/c34c607ba18a67763bacded434607c56/aspnetcore-runtime-2.1.23-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6469b602-063e-4296-a446-57a00845d542/45e3896844149e1109661d89f2ee12ab/aspnetcore-runtime-2.1.23-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7464f6c4-0d39-470b-824d-50ffb3825b33/2d6b1e085f5429413d9fb7e42632f5b1/aspnetcore-runtime-2.1.23-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/c1907d59-03d9-4f47-a3e6-640720010103/fcb027da4bc9ba076fbe7c7cb1a2690b/aspnetcore-runtime-2.1.23-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/175fcf7f-3cc3-413f-afa2-2c7f1b6357a8/55e778aa29242f4b8cee9e40eeb43605/aspnetcore-runtime-2.1.23-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9b97a12c-818c-485c-8ebd-cc7d132ce5b0/6fe7f407e019364da2d3458e88d9c5fc/aspnetcore-runtime-2.1.23-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/3e3c37fb-4d77-4558-a78c-17434e1cc804/60116643f610fb43f858af4e0dc1b223/dotnet-hosting-2.1.23-win.exe
[//]: # ( SDK 2.1.811 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e41b26f7-5aa1-4c73-ad59-bff8f4f2c82a/654a219d81ed6fd01d1b3c16decc6364/dotnet-sdk-2.1.811-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/475c1c4c-b299-40a9-bbc7-228e5a7d29c5/d903f258073212e1f3b1269ee3fef454/dotnet-sdk-2.1.811-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0de9d944-df02-4455-91f8-9aa4204e856d/ab9fa91b0692ef395551b96585cfa5b3/dotnet-sdk-2.1.811-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4281b67c-db32-4e7e-aa67-976a59839b81/75373c7621c37c2ac7a83fc60d415afd/dotnet-sdk-2.1.811-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/e431540d-fdb4-4504-afd9-e5ef64498ce9/5bac663ff1dc65e08dd9a5c63299e2dc/dotnet-sdk-2.1.811-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/eff75f87-4f27-4352-b23b-89c28c056b0f/f6bbcb6795130dd0551a3e82af13e24e/dotnet-sdk-2.1.811-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9879b873-c3e5-4f83-a201-d5653529ed2e/de5b8968d855d35771e8693655c9085f/dotnet-sdk-2.1.811-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/512e4ce7-bcf8-48d2-93ec-e047b8f8629a/e87f5bb8f6b13cc874480aaa121db285/dotnet-sdk-2.1.811-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/76b9d0ca-eb03-4515-b790-40810af33faa/1f1af3aa5871051e0aa428da98f6bf83/dotnet-sdk-2.1.811-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/2b1556cb-8bfe-4f2d-84f8-907f241c6fe8/20baa509be91c9dd99f9efb35d69398b/dotnet-sdk-2.1.811-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/3ff7c70c-f0f7-45b2-af9f-39fa4ffe6c8d/58f3aef2cd36810723b7b1dc2940f42c/dotnet-sdk-2.1.811-win-x86.zip

View file

@ -4,6 +4,7 @@ The following .NET Core 2.1 releases have been shipped. You must be on the lates
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/10/13 | [2.1.23](2.1.23/2.1.23.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/09/08 | [2.1.22](2.1.22/2.1.22.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/08/11 | [2.1.21](2.1.21/2.1.21.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/07/14 | [2.1.20](2.1.20/2.1.20.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |

View file

@ -1,13 +1,486 @@
{
"channel-version": "2.1",
"latest-release": "2.1.22",
"latest-release-date": "2020-09-08",
"latest-runtime": "2.1.22",
"latest-sdk": "2.1.810",
"latest-release": "2.1.23",
"latest-release-date": "2020-10-13",
"latest-runtime": "2.1.23",
"latest-sdk": "2.1.811",
"support-phase": "lts",
"eol-date": "2021-08-21",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-10-13",
"release-version": "2.1.23",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.23/2.1.23.md",
"runtime": {
"version": "2.1.23",
"version-display": "2.1.23",
"vs-version": "16.4.14, 16.0.19, 15.9.28, 16.7.6",
"vs-mac-version": "8.8",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/e0d4bf96-e481-4c16-a2dc-69f002f2f892/ee8457bcbfae80bb4e76efe04f5bd3e2/dotnet-runtime-2.1.23-linux-arm.tar.gz",
"hash": "0ac5a730b90f8e0b7c792a03d4977abd9a5464258dfc0b8ac71237a540993bf89843f6e66a311664c23e366ff505eaffd5341e34455a72033d6a41d2e2944f0c"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/832a703f-ca7e-4fa5-8b8d-bc87d6cbf4f0/15d78d838a2173d470c2e9a97b0c7b63/dotnet-runtime-2.1.23-linux-arm64.tar.gz",
"hash": "3766799ea41afd84e4a5edff371ec1a1eff7214215b205ac58a630f11de3544f894bd1bb354b4b50adedef89aca66477c0e6fbbca9127fb82107630d7efeb826"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1693393c-e916-497d-ab55-304be84f75d6/aca7f9d2befdec0b26373510eddf51bb/dotnet-runtime-2.1.23-linux-musl-x64.tar.gz",
"hash": "262cffc456722edc154927fa94785bb4aef95cd2043ed6a6018ba17ba6f36e88a18fcddafa181c214f862db1747b5a90e271a23cc1bd5dd2c929e576896f93a0"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e52a08ae-0a98-4dbf-b371-bf50815ae05a/48e4eb969aee8df978fa2f32b743ae76/dotnet-runtime-2.1.23-linux-x64.tar.gz",
"hash": "9663a204abb74016113ae0db6c184598a6e5efc6126e35e275d81594432f75f186af781b3b352c8fe8527c690711820bfdd6271424b56e272f73ebe2d666bab5"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8cd129d5-207f-4cfd-a5fb-5f2c56ee81c0/824ed5222546398bc90b586b402c0324/dotnet-runtime-2.1.23-osx-x64.pkg",
"hash": "63fa7e99540c464e1562eba2b1c7fb3d20bc91fb626a2456462a67a8aff79dcb919405d2905862265c518372fcc319c50c29195efd3af0239d83938513180f9f"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2d6c0e87-ed74-4a83-939a-3bc752a442b3/f989f900d202e949b0fba3a2afc442f5/dotnet-runtime-2.1.23-osx-x64.tar.gz",
"hash": "a49125acd5cd599c9fd7881b19ef137af45058efbcaa571fb50db78dd9cddb65d14e4eddc43377906dfe5b978a812295d1ddd65f0ce76e103b03ae4885087fd3"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5e391c65-0174-4ce6-8fbc-254fb4cbc567/2cfabd8d9a8f46ab32084ceb0d2ebf37/dotnet-runtime-2.1.23-rhel.6-x64.tar.gz",
"hash": "196c68f5de824461599f3ea4420d38c0a0165dbd0c30e72200f29318f224d3b7178e9ada8aa1ab4db7e71889483b4552e4805050bd1e40e8fea5af39c13475ea"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/35d8cc1b-4cd0-49b9-bd9f-9d4183842d3e/a91ceb48d8716bd600619dd8eb5a784e/dotnet-runtime-2.1.23-win-arm.zip",
"hash": "7406a354ec181e52a868630d0d464a759ae5fd48455912bd29d9f70083c54aa270ddb9bfab7651cde32efa5909dde96f8ba036884cfd43efbbae80cafffa8bac"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b6dd738b-bb15-448a-86cd-e8cf96138a06/0b0ad58041510ca8ed00957764b37c13/dotnet-runtime-2.1.23-win-x64.exe",
"hash": "7965a0800ff61898fbebe0840d9aa0e5e01d4959bc197a0af94df828c7eeb3394e7a586d13946363d5818c78e5e497ab76a897c6021f774f6066e05c1ff3c3c1"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/75a5ff0b-f69f-4364-b922-60e2dbe562e2/823dfb5bab4dadf9ca9b698e191d0a81/dotnet-runtime-2.1.23-win-x64.zip",
"hash": "2705a18a0c1ecf9ed2811f437b55ac1f87c4b2ce80f866145fb2191baf885950498647d52d132be8f066b15b29e45204cd6aab3918acdd53706d22d9bfac7205"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/d5f6d9c8-7634-4b44-80e1-6e07670c08df/53aae9018e45a5c3e2a0ff503ec8c4af/dotnet-runtime-2.1.23-win-x86.exe",
"hash": "61173ee7cd9a676fe3176f422b8896b7da5c612b646d2af9b3eab610049c5f93ce9a18889d4268638dea1be7a5ccf7524eb81eb053a209ef41f58a300db68354"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/c4fa76ed-1afe-4902-8ef9-2b4768e84202/1e239ee5c1de03a712ae57ab3184f2e9/dotnet-runtime-2.1.23-win-x86.zip",
"hash": "8486ad9d8894c85c6fc2f8399aad1c5198712db86fc66b41b8dcf21beb5e8d3c100d0e72b5b4aa1c4413e61e4eefa6d02eb2247a8f2beed02a3daa403ce68ae4"
}
]
},
"sdk": {
"version": "2.1.811",
"version-display": "2.1.811",
"runtime-version": "2.1.23",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.2)",
"vs-mac-support": "",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/e41b26f7-5aa1-4c73-ad59-bff8f4f2c82a/654a219d81ed6fd01d1b3c16decc6364/dotnet-sdk-2.1.811-linux-arm.tar.gz",
"hash": "b53a1a603528a07a94fc494ef92b900633b91b95f74661738e705748207d401c5910ca00f742ca844d3ad31f430837da78604ca53f96eea104ae8233aeb9c207"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/475c1c4c-b299-40a9-bbc7-228e5a7d29c5/d903f258073212e1f3b1269ee3fef454/dotnet-sdk-2.1.811-linux-arm64.tar.gz",
"hash": "4f1f1a5878d490eda36d74e5de713ae90a2f5cd139383fae527f1649d2a6fe83f663692b39c2290bdf12d737e18356840e772b751f9e59001f2c7d2f7e4e0e03"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0de9d944-df02-4455-91f8-9aa4204e856d/ab9fa91b0692ef395551b96585cfa5b3/dotnet-sdk-2.1.811-linux-musl-x64.tar.gz",
"hash": "b808643e955c2e3bfcd713623ddaf69999af43966bafedd1af4124e7faa1cebbfefe891d2e540643754c451018ba52d2afca8c27b6d598ceb01a07040864e807"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4281b67c-db32-4e7e-aa67-976a59839b81/75373c7621c37c2ac7a83fc60d415afd/dotnet-sdk-2.1.811-linux-x64.tar.gz",
"hash": "ddc6a583c90405a1cf57c33b2ee285ce34d59f82c4f7bc01900f4ce87c45e295de96a0293ad51937ac1935611b87bc73cdafa8acd93b6fda5a2c624b00070326"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e431540d-fdb4-4504-afd9-e5ef64498ce9/5bac663ff1dc65e08dd9a5c63299e2dc/dotnet-sdk-2.1.811-osx-x64.pkg",
"hash": "1a3ee8286edb2d862d5c7f37f00a18b3b4217b7a716a5ca95ec66b9d8bf0af083e912807e8eb0006e4bd8533c22a6ac09b4f3a6965d35c2bf6c53bb7e3282e6d"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/eff75f87-4f27-4352-b23b-89c28c056b0f/f6bbcb6795130dd0551a3e82af13e24e/dotnet-sdk-2.1.811-osx-x64.tar.gz",
"hash": "335d08c1eeeb531fb6b608af0159e3fc41b8f02fd4ab3e50164b9cdfae018b2df2370c166c0fe9f9b98d3d01bafa52f987b261e10c183e6fac306495e362edb1"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9879b873-c3e5-4f83-a201-d5653529ed2e/de5b8968d855d35771e8693655c9085f/dotnet-sdk-2.1.811-rhel.6-x64.tar.gz",
"hash": "dea0d6ae087cf43ae65a36c310e2d496a7f3d429692a50b37dc1b16f78e537133b20557eec77dfd6ae7a7bbeaf32511f594d1dcfafd7911b4c1c0cbb84ed0338"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/512e4ce7-bcf8-48d2-93ec-e047b8f8629a/e87f5bb8f6b13cc874480aaa121db285/dotnet-sdk-2.1.811-win-x64.exe",
"hash": "656cde7e1def7787aac33eeac81564fbe0f0af1e3bb918c18c7fec939d898a7b2ad9efa74a196d3bc0e87cf3a2ef1012fa48d2c4a8ebdb8a12110eee08c34637"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/76b9d0ca-eb03-4515-b790-40810af33faa/1f1af3aa5871051e0aa428da98f6bf83/dotnet-sdk-2.1.811-win-x64.zip",
"hash": "422db6523cdbb116741c60e967ad463e4870aecbc342e7f856bb4f672780b8bb82fce221dc534ba52f974b412b04605b28c31a3ee8269b06258526739af11afb"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/2b1556cb-8bfe-4f2d-84f8-907f241c6fe8/20baa509be91c9dd99f9efb35d69398b/dotnet-sdk-2.1.811-win-x86.exe",
"hash": "1587afd3945097c4589a1e0d6f35ae3f617e6eda62508589d248b5f781f040e189b885e530084460ed0732e002ec19ebb71f1d35ce2f9d290a5a1e7c0fe39437"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/3ff7c70c-f0f7-45b2-af9f-39fa4ffe6c8d/58f3aef2cd36810723b7b1dc2940f42c/dotnet-sdk-2.1.811-win-x86.zip",
"hash": "943ad4f792cf9c8b311b8cb7f14623793761d147ae8ab00503ab7f25f536d89cd86585efee86fbe743dc0bd93cc88eb5a6ec941be2d36c7ba5d87cd7da66ef59"
}
]
},
"sdks": [
{
"version": "2.1.811",
"version-display": "2.1.811",
"runtime-version": "2.1.23",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.2)",
"vs-mac-support": "",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/e41b26f7-5aa1-4c73-ad59-bff8f4f2c82a/654a219d81ed6fd01d1b3c16decc6364/dotnet-sdk-2.1.811-linux-arm.tar.gz",
"hash": "b53a1a603528a07a94fc494ef92b900633b91b95f74661738e705748207d401c5910ca00f742ca844d3ad31f430837da78604ca53f96eea104ae8233aeb9c207"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/475c1c4c-b299-40a9-bbc7-228e5a7d29c5/d903f258073212e1f3b1269ee3fef454/dotnet-sdk-2.1.811-linux-arm64.tar.gz",
"hash": "4f1f1a5878d490eda36d74e5de713ae90a2f5cd139383fae527f1649d2a6fe83f663692b39c2290bdf12d737e18356840e772b751f9e59001f2c7d2f7e4e0e03"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0de9d944-df02-4455-91f8-9aa4204e856d/ab9fa91b0692ef395551b96585cfa5b3/dotnet-sdk-2.1.811-linux-musl-x64.tar.gz",
"hash": "b808643e955c2e3bfcd713623ddaf69999af43966bafedd1af4124e7faa1cebbfefe891d2e540643754c451018ba52d2afca8c27b6d598ceb01a07040864e807"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4281b67c-db32-4e7e-aa67-976a59839b81/75373c7621c37c2ac7a83fc60d415afd/dotnet-sdk-2.1.811-linux-x64.tar.gz",
"hash": "ddc6a583c90405a1cf57c33b2ee285ce34d59f82c4f7bc01900f4ce87c45e295de96a0293ad51937ac1935611b87bc73cdafa8acd93b6fda5a2c624b00070326"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e431540d-fdb4-4504-afd9-e5ef64498ce9/5bac663ff1dc65e08dd9a5c63299e2dc/dotnet-sdk-2.1.811-osx-x64.pkg",
"hash": "1a3ee8286edb2d862d5c7f37f00a18b3b4217b7a716a5ca95ec66b9d8bf0af083e912807e8eb0006e4bd8533c22a6ac09b4f3a6965d35c2bf6c53bb7e3282e6d"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/eff75f87-4f27-4352-b23b-89c28c056b0f/f6bbcb6795130dd0551a3e82af13e24e/dotnet-sdk-2.1.811-osx-x64.tar.gz",
"hash": "335d08c1eeeb531fb6b608af0159e3fc41b8f02fd4ab3e50164b9cdfae018b2df2370c166c0fe9f9b98d3d01bafa52f987b261e10c183e6fac306495e362edb1"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9879b873-c3e5-4f83-a201-d5653529ed2e/de5b8968d855d35771e8693655c9085f/dotnet-sdk-2.1.811-rhel.6-x64.tar.gz",
"hash": "dea0d6ae087cf43ae65a36c310e2d496a7f3d429692a50b37dc1b16f78e537133b20557eec77dfd6ae7a7bbeaf32511f594d1dcfafd7911b4c1c0cbb84ed0338"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/512e4ce7-bcf8-48d2-93ec-e047b8f8629a/e87f5bb8f6b13cc874480aaa121db285/dotnet-sdk-2.1.811-win-x64.exe",
"hash": "656cde7e1def7787aac33eeac81564fbe0f0af1e3bb918c18c7fec939d898a7b2ad9efa74a196d3bc0e87cf3a2ef1012fa48d2c4a8ebdb8a12110eee08c34637"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/76b9d0ca-eb03-4515-b790-40810af33faa/1f1af3aa5871051e0aa428da98f6bf83/dotnet-sdk-2.1.811-win-x64.zip",
"hash": "422db6523cdbb116741c60e967ad463e4870aecbc342e7f856bb4f672780b8bb82fce221dc534ba52f974b412b04605b28c31a3ee8269b06258526739af11afb"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/2b1556cb-8bfe-4f2d-84f8-907f241c6fe8/20baa509be91c9dd99f9efb35d69398b/dotnet-sdk-2.1.811-win-x86.exe",
"hash": "1587afd3945097c4589a1e0d6f35ae3f617e6eda62508589d248b5f781f040e189b885e530084460ed0732e002ec19ebb71f1d35ce2f9d290a5a1e7c0fe39437"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/3ff7c70c-f0f7-45b2-af9f-39fa4ffe6c8d/58f3aef2cd36810723b7b1dc2940f42c/dotnet-sdk-2.1.811-win-x86.zip",
"hash": "943ad4f792cf9c8b311b8cb7f14623793761d147ae8ab00503ab7f25f536d89cd86585efee86fbe743dc0bd93cc88eb5a6ec941be2d36c7ba5d87cd7da66ef59"
}
]
},
{
"version": "2.1.616",
"version-display": "2.1.616",
"runtime-version": "2.1.23",
"vs-version": "16.0.19",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.0)",
"vs-mac-support": "",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/e8878e38-dc3b-4c11-824d-724df90ca7d9/82e0b5e99e8649cd01117bb73ebfa4b0/dotnet-sdk-2.1.616-linux-arm.tar.gz",
"hash": "4c4fa4db13f44ba9fee9621ae2a46872bb86339c5b7fd8b0a211041b54012e3ec7f36cd117e20dc1be7f9e9bd5b2d26f801a8c0a59b257526f70ba0cd9e4bd77"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/53655ad3-2ff0-4511-bf53-1765dee4abd7/b48541a1f44f120fe7c4d4a6a2952940/dotnet-sdk-2.1.616-linux-arm64.tar.gz",
"hash": "7c5c08d4513c3107579e08f39599ea1dea55331668e9f867c468de674646afc69d55a6604b2c2766a0bc6f99c493f01bf114262e1ffd41bad32b0af0ca0e65a2"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/005b9d2b-c1fd-4ea0-b3f0-571f1a0a3aaa/524a97c0acfab53a667ea6ddbf246dcb/dotnet-sdk-2.1.616-linux-musl-x64.tar.gz",
"hash": "417481f4d7da67a3d50cd418d5d29571f12cd32a459cf4397d2087d98b04b97f4f746938360cd21763aba21d40d8769942a53f31c60ee89181cd482f90fcc86b"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b30af3d2-2123-40fa-a4da-133d2d5c46a2/dd8276dd5a05678cbc2a9742a1495887/dotnet-sdk-2.1.616-linux-x64.tar.gz",
"hash": "b38cca27dc2e6756f9f1bb07aeaa67cead9b815da4f50dd6d8d3d1efe3fee2e01cd109260732a2894620616e3165695369958b5c8c63be7b8c1b436e740956bc"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a2272bb1-1dbc-4349-a4ac-bc0de031a9cf/f8f848ae7479b6dda97efff4a65392ad/dotnet-sdk-2.1.616-osx-x64.pkg",
"hash": "6e8e4f679f628aa162bdfc31acfd5df6df6f2238a5a4aa6e869d925a13cb5a1118a6216f4a69869274751f8aa6ca14a5e78ef87722227d48fd2404e17ca63420"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e235fc4e-9618-49c6-93d9-b5f24c8ee8c5/c9e21fc5d6eff93e49642793e8494c76/dotnet-sdk-2.1.616-osx-x64.tar.gz",
"hash": "dfbc9bb494d45ababf8849b3cce0f2cb4deb2686baf384b408519e27db17fb4bf269b5fa1288cc0f02c4d7b2a499a8a5908a58131811fb44a95adc533361fcdd"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/793a6c09-f490-45ff-8241-e8f1ca1088cc/b9b79ed61687404b0acfcab794bb1d3d/dotnet-sdk-2.1.616-rhel.6-x64.tar.gz",
"hash": "d0028e5b39c621d1e7b81239bd6d12eb7d0ee9edb61338e000542edf6cf9298476cf92d6ed9474d29a9d70f87c7c2a7314c76bc5ccae2d847312131d9038158e"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4c566a24-cd33-46b6-8069-de2914c99a61/2d1acdf57d455bab980bb4accf9e13c2/dotnet-sdk-2.1.616-win-x64.exe",
"hash": "66a5b2c0f6f337f973411a6f3be889c0f03fa94b16d198bf7acf3f5848ec26a9c38510ed72e170ba9a53977dde4b63e1bd564ab60750879b9388e5c703b46328"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d8d4b648-2e34-49ff-967d-5832d9c7a7c9/dbc991d0cc3cd824656400d63fa75e79/dotnet-sdk-2.1.616-win-x64.zip",
"hash": "a0b6d15b8bf2d18a1be82d3660c1da4d072b8627822db153771201b10b4c4810d551f14e4037988926fab2e6f12293ec8c65d3ccf79beb60c3cc1b8f57ebdd0b"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/d0d7cb42-401c-4f7e-b53c-002f274ee67c/07932da76e6013dca00a1da2446ff0fc/dotnet-sdk-2.1.616-win-x86.exe",
"hash": "cdba4501b68c31f0de370d2614401e0cd6d43c3f8396ce9a5f1146035ac64a8f77564c375b7ada8ec921db21ef803b511ff036b3e7ae2d36189012c4c4ada614"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf0d3e3f-4bee-452c-bb8c-a677460b249b/804a2ae250bd26f9d417bd8d5da64705/dotnet-sdk-2.1.616-win-x86.zip",
"hash": "2f9004dc97faa13129b74de275d6f3c1140a54ba9eef4659dba790c659e1b191b42023c3c0e2f689cc53321ce9064ea6e524e83a0a8a6d78abf58f9c12916591"
}
]
},
{
"version": "2.1.519",
"version-display": "2.1.519",
"runtime-version": "2.1.23",
"vs-version": "15.9.28",
"vs-mac-version": "",
"vs-support": "Visual Studio 2017 (v15.9)",
"vs-mac-support": "",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/0f753b68-cf67-4562-b964-0fac9df4b6d6/e6d40a254c63dbab79bdd60f78f5c10c/dotnet-sdk-2.1.519-linux-arm.tar.gz",
"hash": "7aa6b96f21c83e0c85f36ba8f6f3399a5b7d9d23db7ccdb6cad2e49f33fb8b22b67a378d4ad3d0eeb1d92cf5092659c4aa4b5ae6a4030d27258cbfecec95cfc1"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/25cfd780-54b4-4170-8c08-d0a96d8837d4/6d5f74febc099b18d1161f0c17b97ebb/dotnet-sdk-2.1.519-linux-arm64.tar.gz",
"hash": "7688715078ed6fdb7bf7f9b9f442e2decd598d080a563c6697d23f17610a99c6cc806ab1cd59fe23efd4130d1f44bd080349e6f5f4197d254a72c6dfd7a51efc"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1dfd7066-ad28-42d7-94a6-55619798b86a/4e99d531894f06372f3ed04813a624f0/dotnet-sdk-2.1.519-linux-musl-x64.tar.gz",
"hash": "bf482e198dabebd3433401b0ce88934825bdf5b76e6138f220118a23d24c1f74289d2f7643031310de6b17ee8af2ead345928e8be1f06b061fbeb1dbf7b8cbf7"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a908e90e-fb10-4573-bb63-a7c09cd3bf06/b540d5eb1b3fd581c996921b60fc9e91/dotnet-sdk-2.1.519-linux-x64.tar.gz",
"hash": "fc148b2a887db5b9cad52e170dd011a9dc7bb569e0ac7b55ccf151843c94d6f4aa32d496966ca81be5bd2c51ae5721f002a90b9c69b6ca2c97f30be0a90d5997"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7871387c-aea9-4228-b703-f81bfe3b41ca/217ff603d32ec97fa604e9b2a52e2e95/dotnet-sdk-2.1.519-osx-x64.pkg",
"hash": "c22ec32aa4c9838206b7440d4fbd5a9ebc86262b4560d9d74f23a65903ff47ad1bc0acb6583fe601ec8773c8a7ed606ee5024ee9f227e7a2da34c464e5af750f"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/79c061fe-1bdc-4134-8138-da5dd897e6c5/2dd0ef1775073970448cd62bb48c2a47/dotnet-sdk-2.1.519-osx-x64.tar.gz",
"hash": "daf9b5c3debb5c905f089a2d7837d38c5285965862a8d943548b738f202621e56f6cd3871354aa2dd53193eb8d2c2beedc26c75cd120677c5975ef60ad4f8607"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c0c32495-bc33-421c-a12d-d05a5ae0faeb/1de14ecaaddeaa5c75de102871fd19ec/dotnet-sdk-2.1.519-rhel.6-x64.tar.gz",
"hash": "59ec9c932ae7eea3a977035b1fbd7e6881a265a0e53f68cef05e009bc711620062943d11f237c217e04525265675d2b09c3d88003a9f059b25d2bd7f5cc02ddd"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/548c6de4-bc4c-4e4f-b148-9551656f994a/0016fbe28e9193844b8aad8aa8b090fd/dotnet-sdk-2.1.519-win-x64.exe",
"hash": "086ac83af2dd1dab4346a5423664c326496998ea02534ab1bdfb275ef6333c3e35a0b44a4429d202b2c2d058d000747a2aabdfc7cc05157f2b567b92a4ea24ff"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/41ccf3eb-f137-4140-9dc0-b39caa9861d6/12da178dc042f00201a65fbf120abae5/dotnet-sdk-2.1.519-win-x64.zip",
"hash": "29880cb11d0fc84eea5bf83b8775878bd450794cb697705cc63ddbed117f68ee439cfd58ae24dbee465d7efdc907e8dda2dd8c26c159e566ecd125fb0cc7005a"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/77ecbd22-23fc-488c-aab9-d5e419f8d1b0/2542e487b475bfb3a5eb8ee0f03946d9/dotnet-sdk-2.1.519-win-x86.exe",
"hash": "bbf8e985efe22964bbdc0db3807f2a9b20bde4008f92fe053471a020ab38d2af868eaac3f158991ba5f237b7d1d58d24270c3803ef760751522fbb7cbded3453"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/b4937af6-a9bb-4f02-addf-1ce59b792d65/a8597f405ce235f1bca1723c461534d8/dotnet-sdk-2.1.519-win-x86.zip",
"hash": "ad147056e2a0fb4cf04f10c0e4f07d6483229e3eeb9f9eaaeca6536aea7cd9ec2b15aea32dc7c462b97136f089279a7ce5d6e7c9015bb0387b36dc6fd0e7bc61"
}
]
}
],
"aspnetcore-runtime": {
"version": "2.1.23",
"version-display": "2.1.23",
"version-aspnetcoremodule": [
"12.1.20266.23"
],
"vs-version": "16.7.6, 16.4.14, 16.0.19, 15.9.28",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/73592379-5553-461d-9472-f54688488955/74bc7c5a34487da9447b9544679566c1/aspnetcore-runtime-2.1.23-linux-arm.tar.gz",
"hash": "0855087a9855c4809d19fc351fbe717a6aede8c048cdb47443e8a516722b5411b0fad12caa2524d6fa803292783bc8c1dc4c09a2bd9becc61c0df33819364f27"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3c881d8d-bae5-4f70-adf9-278d7c0d3ea1/c5d707365e2b84d3cf97d68211592300/aspnetcore-runtime-2.1.23-linux-musl-x64.tar.gz",
"hash": "0d7fed7f3673b9f267bbdae9eac0558275d88c0df9550595eb84f333fa0c04d072f1c3be0591133369be586ed9f0e0d8f4d1f7f4ba562d435f77bde48d789e91"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3422a123-3f37-4544-b0ed-e3922b50e1b0/c34c607ba18a67763bacded434607c56/aspnetcore-runtime-2.1.23-linux-x64.tar.gz",
"hash": "47df15608671ace7a13f7ba03d74a34fa8b396344409cb2cc4daeafdda8b22dc7309dd60b1f469aadeb89cfc0e22b7b9aebde3ffeaedad431ad4f4f51296030d"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6469b602-063e-4296-a446-57a00845d542/45e3896844149e1109661d89f2ee12ab/aspnetcore-runtime-2.1.23-osx-x64.tar.gz",
"hash": "0ceafc031eaa60a6c590f7a20cd8bade657fba853507a17b8ecefff8e8e0515838a697dea9b2c87eb70a40e8648e42b42ce681b698f1b6b191c5fc59c599817b"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7464f6c4-0d39-470b-824d-50ffb3825b33/2d6b1e085f5429413d9fb7e42632f5b1/aspnetcore-runtime-2.1.23-win-x64.exe",
"hash": "3f900ae26728063499bbf95295b85c35bcf794b6b781698160a5566bba2e02151cd55a135a22cf8b32b9c93221b2deb17afc998361dc9ac1dc52bf0d1f016646"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c1907d59-03d9-4f47-a3e6-640720010103/fcb027da4bc9ba076fbe7c7cb1a2690b/aspnetcore-runtime-2.1.23-win-x64.zip",
"hash": "fbd00d08c701dfadd98c205e5182f330842efad8500c1f75f6b7ef5ea4eac8569dd283c61ed00baf57155dcb11434242a9e44fcc650655b3cc0651ed6364ce39"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/175fcf7f-3cc3-413f-afa2-2c7f1b6357a8/55e778aa29242f4b8cee9e40eeb43605/aspnetcore-runtime-2.1.23-win-x86.exe",
"hash": "dbafc5d81e231ec22bd0cba6949328f5c73734417035c0c9867f3808e94c938891b7ef4b67278495fddaa89f976ff32b748bdab9779c137b508f9e3497f27c51"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/9b97a12c-818c-485c-8ebd-cc7d132ce5b0/6fe7f407e019364da2d3458e88d9c5fc/aspnetcore-runtime-2.1.23-win-x86.zip",
"hash": "d14a16473da2692301fd1d009a80c11a7d87eee4c47a3a112029d1c82aefc7d178ed44e35b84766c09b8971d07467542c68bcefaac900b8812b10f58113fd23e"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/3e3c37fb-4d77-4558-a78c-17434e1cc804/60116643f610fb43f858af4e0dc1b223/dotnet-hosting-2.1.23-win.exe",
"hash": "704eaa7595abf5bb4ffb5bbd45fd64f3d6e1a2f856f61b2fb746913d9f10da9133cc44be4e75d9e012bf0db6e5cb390d3af59b85593aeb1c29ae020a7c7c2117",
"akams": "https://aka.ms/dotnetcore-2-1-windowshosting"
}
]
}
},
{
"release-date": "2020-09-08",
"release-version": "2.1.22",

View file

@ -33,7 +33,7 @@ Red Hat Enterprise Linux | 6+ | x64 |
Red Hat Enterprise Linux <br> CentOS <br> Oracle Linux | 7+ | x64 | [Red Hat support policy](https://access.redhat.com/support/policy/updates/errata/) <br> [CentOS lifecycle](https://wiki.centos.org/FAQ/General#head-fe8a0be91ee3e7dea812e8694491e1dde5b75e6d) <br> [Oracle Linux lifecycle](http://www.oracle.com/us/support/library/elsp-lifetime-069338.pdf)
Fedora | 30+ | x64 | [Fedora lifecycle](https://fedoraproject.org/wiki/End_of_life)
Debian | 9+ | x64, ARM32, ARM64 | [Debian lifecycle](https://wiki.debian.org/DebianReleases)
Ubuntu | 20.04, 18.04, 16.04 | x64, ARM32, ARM64 | [Ubuntu lifecycle](https://wiki.ubuntu.com/Releases)
Ubuntu | 20.10, 20.04, 18.04, 16.04 | x64, ARM32, ARM64 | [Ubuntu lifecycle](https://wiki.ubuntu.com/Releases)
Linux Mint | 18+ | x64 | [Linux Mint end of life announcements](https://forums.linuxmint.com/search.php?keywords=%22end+of+life%22&terms=all&author=&sc=1&sf=titleonly&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search)
openSUSE | 15+ | x64 | [OpenSUSE lifecycle](https://en.opensuse.org/Lifetime)
SUSE Enterprise Linux (SLES) | 12 SP2+ | x64 | [SUSE lifecycle](https://www.suse.com/lifecycle/)

View file

@ -0,0 +1,168 @@
# .NET Core 3.1.403 - September 8, 2020
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 3.1.403
* .NET Core Runtime 3.1.9
* ASP.NET Core 3.1.9
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.9/3.1.9.md) for details about what is included in this update.
## 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] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [ARM][dotnet-sdk-win-arm.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [ARM][aspnetcore-runtime-win-arm.zip] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup> | - |
| Linux | [Snap Install][snap-install] | [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] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] \| [ARM64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [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] | - |
| RHEL6 | - | [x64][dotnet-sdk-rhel.6-x64.tar.gz] | - | [x64][dotnet-runtime-rhel.6-x64.tar.gz] | - |
| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - | - |
1. Includes the .NET Core and ASP.NET Core Runtimes
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 Core runtime.
## Visual Studio Compatibility
**Visual Studio compatibility:** .NET Core 3.1 requires Visual Studio 2019 16.4 or above to take full advantage of all its features. .NET Core 3.1 won't work properly in earlier versions of Visual Studio. See the following table to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.6 | [3.1.403](#downloads) |
| Windows | Visual Studio 2019 version 16.4 | [3.1.109](3.1.9.md) |
| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
## Docker
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## Installing .NET Core on Linux
### Install using Snap
Snap is a system which installs applications in an isolated environment and provides for automatic updates. Many distributions which are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
`sudo snap install dotnet-sdk --channel 3.1/stable -classic`
When .NET Core in 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 distros 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/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
Before installing .NET, you will need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
The commands listed below do not specifically include package managers to help with readability. Here are the package managers typically used by the Distros on which .NET Core is supported.
| Distro | Package Manager |
| --- | :----: |
| CentOS, Oracle | yum |
| Debian, Ubuntu | apt-get |
| Fedora | dnf |
| OpenSUSE, SLES | zypper |
## Develop applications
To develop applications using the .NET Core SDK, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install dotnet-sdk-3.1
```
## Run applications
If you only need to run existing applications, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install aspnetcore-runtime-3.1
```
### 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/master/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-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core 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-3.1.9-win.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[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/master/release-notes/3.1/3.1.9/3.1.403-download.md
[snap-install]: 3.1.9-install-instructions.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.9-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.9-sha.txt
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[//]: # ( Runtime 3.1.9)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7c1177f6-feb9-4404-a795-adb77e78b9ab/d3ca4e135e1af71bea28623774f8df27/dotnet-runtime-3.1.9-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f6ca8333-82a2-4380-9d47-e152f47e85b8/1e3f6e0149761e884f63b14fa9d921f3/dotnet-runtime-3.1.9-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/06297d4b-3e26-4ec2-a8d5-fe34a5ef0c85/e46a3e9d1825986b87bfed87a986eb6e/dotnet-runtime-3.1.9-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4ca97cf7-07c1-4846-938f-e7e9d0e8a3de/0c16e1051ec3169519ab7027ae54a087/dotnet-runtime-3.1.9-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fb8a9fd4-c015-4c0e-a478-6da0b590bc39/d831b206c30e0aa23501b4a210dec9b1/dotnet-runtime-3.1.9-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/175aea5a-1b4a-4faa-b29d-ff72fa8c16bc/fcef8fc0139672f19ec8b9913824b6bb/dotnet-runtime-3.1.9-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/28d117d1-c52e-40e9-a692-cf6f32b7d8a9/be1562cfffcb0744e4c2555f668072e4/dotnet-runtime-3.1.9-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8a8dda14-5813-45d1-8b26-7ac52b354834/b317ebba1f4a67b944621a3776a2da2d/dotnet-runtime-3.1.9-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/2d753111-1c85-4dd1-be02-e5b229d170b7/3c9ccda18a20d0f41983c1e5b648b184/dotnet-runtime-3.1.9-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/ceff8b33-6f27-425f-957d-91039cf01a9c/312410f11691fae3272f4274f787eb12/dotnet-runtime-3.1.9-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/0e310530-ba28-4f1f-bc9c-d52724dcbdd8/6ba67b12380ed99998d51ffa2a0287b6/dotnet-runtime-3.1.9-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/8b0aa62d-5065-4b3d-8fed-b6f82ada03f8/80faca44ed02c99c1e343ffda4a5e5c7/dotnet-runtime-3.1.9-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/6b892eec-d99d-40b9-a13f-a0927c568f3e/d52d6c1e6e2322708dcd445abc3947fd/dotnet-runtime-3.1.9-win-x86.zip
[//]: # ( WindowsDesktop 3.1.9)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/6a3a8a8b-4aaa-4d3f-bce6-b512f2ef5a2c/e6963fbe57cdd8258a9f0997cc3a6669/windowsdesktop-runtime-3.1.9-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/1419cd1f-64ac-44c7-bfe0-937fd5e5f39a/e72ec98df78dfbb3a5bbf35b66cb7c15/windowsdesktop-runtime-3.1.9-win-x86.exe
[//]: # ( ASP 3.1.9)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c8cd43dd-e9de-4ff9-9cea-2f02fba6869c/d5c653c12ec93cb71e30b21856acea66/aspnetcore-runtime-3.1.9-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/dffd493f-9eb8-483f-81c7-a9e2201574ef/54e7464241e01e7031fd89e6fe88e6da/aspnetcore-runtime-3.1.9-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/df551158-70c8-4af6-beab-ce80d9092888/5f9be026830c708fba7724ba108fd9c7/aspnetcore-runtime-3.1.9-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/85c50e50-085c-46a6-a585-88aa13f4a1af/b04c24d8bc68449748509372a834f4c6/aspnetcore-runtime-3.1.9-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/933b0cb8-3494-4ca4-8c9e-1bcfd3568ab0/8704eef073efdfecdaaad4a18beb05ac/aspnetcore-runtime-3.1.9-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5fd170f1-05d8-4126-ae8f-9ff9dc683466/997547015dac7edcb155e5ac917b0c72/aspnetcore-runtime-3.1.9-osx-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/4aee42bd-1598-4b26-bc4a-80940859ca82/3ab43bc8b9a4f8de870a7b9855d1447e/aspnetcore-runtime-3.1.9-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/87bcc889-4afa-4c88-839c-d72497b84407/42105fc6c95feb5faa64b2be1b76a830/aspnetcore-runtime-3.1.9-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/acdf7879-d422-4195-90a1-1f4a6e8550da/e75bde72d8790d478a698ad40f390b3e/aspnetcore-runtime-3.1.9-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/5d18182f-178e-4734-a83e-803d65ce6353/445ae43d1955e368b35df7c8a884cb54/aspnetcore-runtime-3.1.9-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/8a1f6e8f-eeef-4566-be27-28a870f3f3fb/1496eb9467f1e4091cd904035e96b514/aspnetcore-runtime-3.1.9-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/beca42b0-54a8-4364-86b8-a3d88003fbb7/592e0eec1e5e53f78d9647f7112cc743/dotnet-hosting-3.1.9-win.exe
[//]: # ( SDK 3.1.403 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8a2da583-cac8-4490-bcca-2a3667d51142/6a0f7fb4b678904cdb79f3cd4d4767d5/dotnet-sdk-3.1.403-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7a027d45-b442-4cc5-91e5-e5ea210ffc75/68c891aaae18468a25803ff7c105cf18/dotnet-sdk-3.1.403-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8aa322e4-eb76-41e6-8116-d18055537ec0/db7210d873c2bb87c4d98e9f9ad5bad6/dotnet-sdk-3.1.403-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fdd9ecec-56b4-40f4-b762-d7efe24fc3cd/ffef51844c92afa6714528e10609a30f/dotnet-sdk-3.1.403-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/b4db3ee6-91da-4dd3-a279-37c45d9627b7/fad88a7335d374d6e4d53aef085f4b24/dotnet-sdk-3.1.403-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5e3b8ffc-c0c3-4d42-b207-87b91b678cf1/3994f505b0b91ed3858718c6dcd8cf9b/dotnet-sdk-3.1.403-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8c995929-4057-41cc-b183-e23f1edb5219/b3f41ad92681fc7e329d05b2f8819463/dotnet-sdk-3.1.403-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/cc530423-2db7-43b6-bd69-4428ff5cf065/b3b1be9c14d5d0ad846c98a3f9bdb326/dotnet-sdk-3.1.403-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/38136cfe-04d4-4ce8-a8ea-369a800021df/08b29e05cd798d96b5987b417a989b80/dotnet-sdk-3.1.403-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/143c00dc-a1f2-4070-a1fd-5f732e13be1f/b11931ba31bb5af69dce36e39a3014c5/dotnet-sdk-3.1.403-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/5b7aeeec-2012-41fb-9950-901d3b411b11/7cdbaaf309f90f91b5b0f2a6833aa73b/dotnet-sdk-3.1.403-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/7f72e2db-9c19-4729-b962-f576fc10492b/5fc4281b1965503eaec8686aef6a1ed0/dotnet-sdk-3.1.403-win-x86.zip

View file

@ -0,0 +1,96 @@
# .NET Core 3.1.9
.NET Core 3.1.9 comprises:
* .NET Core Runtime 3.1.9
* ASP.NET Core 3.1.9
* .NET Core SDK 3.1.109
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.9/3.1.9.md) for details about what is included in this update.
## Docker
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## Installing .NET Core on Linux
### Install using Snap
Snap is a system that installs applications in an isolated environment and provides for automatic updates. Many distributions that are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
`sudo snap install dotnet-sdk --channel 3.1/stable --classic`
When .NET Core in 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 distros 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/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
| Distro | Package Manager |
| --- | :----: |
| CentOS, Oracle | yum |
| Debian, Ubuntu | apt-get |
| Fedora | dnf |
| OpenSUSE, SLES | zypper |
## Develop applications
To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install dotnet-sdk-3.1
```
## Run applications
If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install aspnetcore-runtime-3.1
```
### 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/master/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-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
## Windows Server Hosting
If you'are looking to host standalone 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-3.1.9-win.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[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/master/release-notes/3.1/3.1.9/3.1.9.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.9-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.9-sha.txt
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-september-2020/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/beca42b0-54a8-4364-86b8-a3d88003fbb7/592e0eec1e5e53f78d9647f7112cc743/dotnet-hosting-3.1.9-win.exe

View file

@ -0,0 +1,407 @@
# .NET Core 3.1.9 - October 13, 2020
[.NET Core 3.1.9](https://dotnet.microsoft.com/download/dotnet-core/3.1) is available for download and usage in your environment. This release includes .NET Core 3.1.9 and .NET Core SDK 3.1.109.
* [Blog Roundup][dotnet-blog]
* [Downloads](https://dotnet.microsoft.com/download/dotnet-core/3.1)
* [Changes in this release](#changes-in-319)
* [Known issues](../3.1-known-issues.md)
* [Visual Studio Compatibility](#visual-studio-compatibility)
The .NET Core SDK 3.1.109 includes .NET Core 3.1 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 3.1.109, the following command will show that you're running version `3.1.109` of the tools.
`dotnet --version`
Your feedback is important and appreciated. We've created an issue at [dotnet/core #XXXX](https://github.com/dotnet/core/issues/XXXX) for your questions and comments.
## 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] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [ARM][dotnet-sdk-win-arm.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [ARM][aspnetcore-runtime-win-arm.zip] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup> | - |
| Linux | [Snap Install][snap-install] | [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] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] \| [ARM64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [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] | - |
| RHEL6 | - | [x64][dotnet-sdk-rhel.6-x64.tar.gz] | - | [x64][dotnet-runtime-rhel.6-x64.tar.gz] | - |
| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - | - |
1. Includes the .NET Core and ASP.NET Core Runtimes
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 Core runtime.
## Visual Studio Compatibility
**Visual Studio compatibility:** .NET Core 3.1 requires Visual Studio 2019 16.4 or above to take full advantage of all its features. .NET Core 3.1 won't work properly in earlier versions of Visual Studio. See the following table to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.7 | [3.1.403](3.1.403-download.md) |
| Windows | Visual Studio 2019 version 16.4 | [3.1.109](#downloads) |
| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
## Docker Images
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://blogs.msdn.microsoft.com/dotnet/2018/06/18/staying-up-to-date-with-net-container-images/).
The following repos have been updated
* [dotnet/core/runtime](https://hub.docker.com/_/microsoft-dotnet-core-runtime/)
* [dotnet/core/sdk](https://hub.docker.com/_/microsoft-dotnet-core-sdk/)
* [dotnet/core/samples](https://hub.docker.com/_/microsoft-dotnet-core-samples)
* [dotnet/aspnetcore](https://hub.docker.com/_/microsoft-dotnet-core-aspnet)
### Azure App Services
* .NET Core 3.1.9 is being deployed to Azure App Services and the deployment is expected to complete later in October 2020.
## .NET Core Lifecycle News
Fedroa 33 and Ubuntu 20.10 has been added as [supported OS](../3.1-supported-os.md) with this update of .NET Core 3.1.
## Changes in 3.1.9
.NET Core 3.1.9 release carries only non-security fixes.
### Additional fixes in this release
* [CoreCLR](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=milestone%3A3.1.9+label%3Aservicing-approved)
* [CoreFX](https://github.com/dotnet/corefx/issues?utf8=%E2%9C%93&q=milestone%3A3.1.9+label%3Aservicing-approved)
* [ASP.NETCore](https://github.com/search?q=is%3Apr+label%3AServicing-approved+milestone%3A3.1.9+repo%3Adotnet%2Faspnetcore+repo%3Adotnet%2Fextensions+repo%3Adotnet%2Faspnetcore-tooling+repo%3Adotnet%2Fblazor+repo%3Adotnet%2Fefcore+repo%3Adotnet%2Fef6)
## Adding a switch to enable sending ISO-8859-1 headers with SocketsHttpHandler
Since the introduction of `SocketsHttpHandler` in .NET Core 2.1, an attempt to send non-ASCII characters in HTTP headers throws an `HttpRequestException`. This (RFC-conform) behavior turned out to be a blocker for some users trying to migrate from .NET Framework. In .NET 5 we are addressing this by the introduction of [`SocketsHttpHandler.RequestHeaderEncodingSelector`](https://docs.microsoft.com/en-us/dotnet/api/system.net.http.socketshttphandler.requestheaderencodingselector?view=net-5.0). To unblock users who are not (yet) able to migrate to .NET 5.0, we also added a runtime-configuration switch as part of .NET Core 3.1 servicing. This switch allows relaxing the HTTP header validation, enabling `SocketsHttpHandler` to send ISO-8859-1 (Latin-1) encoded characters in headers.
- `AppContext` switch: `System.Net.Http.SocketsHttpHandler.AllowLatin1Headers`. `false` - disabled, `true` - enabled
- Environment variable: `DOTNET_SYSTEM_NET_HTTP_SOCKETSHTTPHANDLER_ALLOWLATIN1HEADERS`. `0` - disabled, `1` - enabled
**Note:**
This switch is specific to .NET Core 3.1 since service release 3.1.9, and not available in later versions.
## macOS Notarization Change
Running "dotnet build" will generate a dll instead of a dylib on macOS. This is a planned change to not use the AppHost by default on macOS because of [notarization requirements](https://docs.microsoft.com/dotnet/core/install/macos-notarization-issues). If you want to opt into using the AppHost, add the following to your project file:
```
<PropertyGroup>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
```
## Packages updated in this release:
Package name | Version
:----------- | :------------------
runtime.linux-arm.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x86 | 3.1.9.nupkg
Microsoft.NETCore.App.Host.win-arm | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.rhel.6-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.win-x86 | 3.1.9.nupkg
Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
Microsoft.NETCore.App.Host.win-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-arm64 | 3.1.9.nupkg
Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
Microsoft.NETCore.App.Host.linux-musl-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.linux-arm64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.win-x64 | 3.1.9.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
Microsoft.NETCore.App.Host.linux-arm | 3.1.9.nupkg
Microsoft.NETCore.App.Host.linux-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.linux-arm | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.osx-x64 | 3.1.9.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
Microsoft.NETCore.App.Host.linux-musl-arm64 | 3.1.9.nupkg
Microsoft.NETCore.App.Host.rhel.6-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.win-arm64 | 3.1.9.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy | 3.1.9.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
Microsoft.NETCore.App.Host.linux-arm64 | 3.1.9.nupkg
Microsoft.NETCore.App.Host.osx-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Host.win-arm64 | 3.1.9.nupkg
Microsoft.NETCore.App.Host.win-x86 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.linux-x64 | 3.1.9.nupkg
Microsoft.NETCore.App.Runtime.win-arm | 3.1.9.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHost | 3.1.9.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x64 | 3.1.9.nupkg
Microsoft.NETCore.DotNetHostResolver | 3.1.9.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetAppHost | 3.1.9.nupkg
Microsoft.Extensions.Identity.Stores | 3.1.9.nupkg
Microsoft.Extensions.ApiDescription.Client | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.Certificate | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.linux-x64 | 3.1.9.nupkg
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation | 3.1.9.nupkg
Microsoft.AspNetCore.Identity.UI | 3.1.9.nupkg
Microsoft.AspNetCore.Identity.EntityFrameworkCore | 3.1.9.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore | 3.1.9.nupkg
Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1 | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.Negotiate | 3.1.9.nupkg
Microsoft.AspNetCore.Mvc.NewtonsoftJson | 3.1.9.nupkg
Microsoft.AspNetCore.Http.Features | 3.1.9.nupkg
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv | 3.1.9.nupkg
Microsoft.DotNet.Web.Client.ItemTemplates | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.Client | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-x64 | 3.1.9.nupkg
Microsoft.AspNetCore.NodeServices | 3.1.9.nupkg
Microsoft.AspNetCore.MiddlewareAnalysis | 3.1.9.nupkg
Microsoft.AspNetCore.Identity.Specification.Tests | 3.1.9.nupkg
Microsoft.AspNetCore.Metadata | 3.1.9.nupkg
Microsoft.AspNetCore.Http.Connections.Client | 3.1.9.nupkg
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore | 3.1.9.nupkg
Microsoft.AspNetCore.Components.Authorization | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.win-x64 | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.osx-x64 | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.Google | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.Client.Core | 3.1.9.nupkg
Microsoft.AspNetCore.Http.Connections.Common | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.Twitter | 3.1.9.nupkg
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore | 3.1.9.nupkg
Microsoft.Extensions.Identity.Core | 3.1.9.nupkg
Microsoft.DotNet.Web.ProjectTemplates.3.1 | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm64 | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.AzureAD.UI | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.JwtBearer | 3.1.9.nupkg
Microsoft.AspNetCore.Mvc.Testing | 3.1.9.nupkg
Microsoft.dotnet-openapi | 3.1.9.nupkg
Microsoft.AspNetCore.SpaServices.Extensions | 3.1.9.nupkg
Microsoft.AspNetCore.Components.Forms | 3.1.9.nupkg
Microsoft.AspNetCore.AzureAppServicesIntegration | 3.1.9.nupkg
Microsoft.AspNetCore.Authorization | 3.1.9.nupkg
Microsoft.AspNetCore.DataProtection.AzureKeyVault | 3.1.9.nupkg
Microsoft.AspNetCore.JsonPatch | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.StackExchangeRedis | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.Protocols.Json | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.WsFederation | 3.1.9.nupkg
Microsoft.AspNetCore.Components.Web | 3.1.9.nupkg
Microsoft.AspNetCore.DataProtection.Extensions | 3.1.9.nupkg
Microsoft.AspNetCore.Cryptography.Internal | 3.1.9.nupkg
Microsoft.AspNetCore.Connections.Abstractions | 3.1.9.nupkg
AspNetCoreRuntime.3.1.x64 | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.Facebook | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.win-x86 | 3.1.9.nupkg
dotnet-sql-cache | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm64 | 3.1.9.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm | 3.1.9.nupkg
Microsoft.AspNetCore.Owin | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.MicrosoftAccount | 3.1.9.nupkg
Microsoft.AspNetCore.SpaServices | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.Protocols.MessagePack | 3.1.9.nupkg
Microsoft.AspNetCore.HeaderPropagation | 3.1.9.nupkg
Microsoft.AspNetCore.Components | 3.1.9.nupkg
Microsoft.AspNetCore.AzureAppServices.HostingStartup | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.OpenIdConnect | 3.1.9.nupkg
Microsoft.AspNetCore.DataProtection.StackExchangeRedis | 3.1.9.nupkg
Microsoft.AspNetCore.DataProtection.Abstractions | 3.1.9.nupkg
Microsoft.AspNetCore.ConcurrencyLimiter | 3.1.9.nupkg
Microsoft.Extensions.ApiDescription.Server | 3.1.9.nupkg
AspNetCoreRuntime.3.1.x86 | 3.1.9.nupkg
Microsoft.AspNetCore.Authentication.AzureADB2C.UI | 3.1.9.nupkg
Microsoft.AspNetCore.ApiAuthorization.IdentityServer | 3.1.9.nupkg
Microsoft.DotNet.Web.ItemTemplates | 3.1.9.nupkg
Microsoft.AspNetCore.TestHost | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.Specification.Tests | 3.1.9.nupkg
Microsoft.AspNetCore.SignalR.Common | 3.1.9.nupkg
Microsoft.AspNetCore.Hosting.WindowsServices | 3.1.9.nupkg
Microsoft.AspNetCore.Components.Analyzers | 3.1.9.nupkg
Microsoft.AspNetCore.AzureAppServices.SiteExtension | 3.1.9.nupkg
Microsoft.AspNetCore.DataProtection.AzureStorage | 3.1.9.nupkg
Microsoft.AspNetCore.Cryptography.KeyDerivation | 3.1.9.nupkg
Microsoft.AspNetCore.DataProtection | 3.1.9.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.2 | 3.1.9.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.0 | 3.1.9.nupkg
Microsoft.DotNet.Common.ProjectTemplates.1.x | 3.1.9.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.1 | 3.1.9.nupkg
Microsoft.DotNet.Common.ItemTemplates | 3.1.9.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.0 | 3.1.9.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.1 | 3.1.9.nupkg
System.ServiceModel.Primitives | 4.8.0-preview2.20277.5.nupkg
System.ServiceModel.NetTcp | 4.8.0-preview2.20277.5.nupkg
System.ServiceModel.Duplex | 4.8.0-preview2.20277.5.nupkg
System.ServiceModel.Security | 4.8.0-preview2.20277.5.nupkg
System.ServiceModel.Http | 4.8.0-preview2.20277.5.nupkg
System.Private.ServiceModel | 4.8.0-preview2.20277.5.nupkg
System.IO.Pipelines | 4.7.3.nupkg
Microsoft.AspNetCore.Razor.Language | 3.1.9.nupkg
Microsoft.CodeAnalysis.Razor | 3.1.9.nupkg
Microsoft.NET.Sdk.Razor | 3.1.9.nupkg
Microsoft.AspNetCore.Mvc.Razor.Extensions | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.SqlServer | 3.1.9.nupkg
Microsoft.Data.Sqlite | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Analyzers | 3.1.9.nupkg
Microsoft.EntityFrameworkCore | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.InMemory | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Relational.Specification.Tests | 3.1.9.nupkg
dotnet-ef | 3.1.9.nupkg
Microsoft.Data.Sqlite.Core | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Design | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Proxies | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Tools | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Cosmos | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Relational | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Sqlite | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Sqlite.Core | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Abstractions | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Specification.Tests | 3.1.9.nupkg
Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite | 3.1.9.nupkg
Microsoft.Extensions.Configuration.EnvironmentVariables | 3.1.9.nupkg
Microsoft.Extensions.Caching.SqlServer | 3.1.9.nupkg
Microsoft.Extensions.Configuration.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.Options.ConfigurationExtensions | 3.1.9.nupkg
Microsoft.Extensions.Configuration.Json | 3.1.9.nupkg
Microsoft.Extensions.Configuration.Binder | 3.1.9.nupkg
Microsoft.Extensions.Caching.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.Configuration | 3.1.9.nupkg
Microsoft.Extensions.Logging.EventLog | 3.1.9.nupkg
Microsoft.Extensions.FileProviders.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.Configuration.KeyPerFile | 3.1.9.nupkg
Microsoft.Extensions.Caching.StackExchangeRedis | 3.1.9.nupkg
Microsoft.Extensions.Configuration.AzureKeyVault | 3.1.9.nupkg
Microsoft.Extensions.Primitives | 3.1.9.nupkg
Microsoft.Extensions.ObjectPool | 3.1.9.nupkg
Microsoft.Extensions.Logging.AzureAppServices | 3.1.9.nupkg
Microsoft.Extensions.DiagnosticAdapter | 3.1.9.nupkg
Microsoft.Extensions.Configuration.UserSecrets | 3.1.9.nupkg
Microsoft.Extensions.Configuration.Ini | 3.1.9.nupkg
Microsoft.Extensions.Caching.Memory | 3.1.9.nupkg
Microsoft.Extensions.FileSystemGlobbing | 3.1.9.nupkg
Microsoft.Extensions.Options.DataAnnotations | 3.1.9.nupkg
Microsoft.Extensions.Logging.EventSource | 3.1.9.nupkg
Microsoft.Extensions.FileProviders.Physical | 3.1.9.nupkg
Microsoft.Extensions.Hosting.Systemd | 3.1.9.nupkg
Microsoft.Extensions.Http | 3.1.9.nupkg
Microsoft.JSInterop | 3.1.9.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks | 3.1.9.nupkg
Microsoft.Extensions.DependencyInjection.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.Configuration.CommandLine | 3.1.9.nupkg
Microsoft.Extensions.FileProviders.Composite | 3.1.9.nupkg
Microsoft.Extensions.WebEncoders | 3.1.9.nupkg
Microsoft.Extensions.Options | 3.1.9.nupkg
Microsoft.Extensions.Logging.TraceSource | 3.1.9.nupkg
Microsoft.Extensions.Logging.Console | 3.1.9.nupkg
Microsoft.Extensions.Hosting.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.Localization.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.DependencyInjection.Specification.Tests | 3.1.9.nupkg
Microsoft.Extensions.Configuration.Xml | 3.1.9.nupkg
Microsoft.Extensions.FileProviders.Embedded | 3.1.9.nupkg
Microsoft.Extensions.Logging.Debug | 3.1.9.nupkg
Microsoft.Extensions.Hosting | 3.1.9.nupkg
Microsoft.Extensions.Hosting.WindowsServices | 3.1.9.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.DependencyInjection | 3.1.9.nupkg
Microsoft.Extensions.Configuration.NewtonsoftJson | 3.1.9.nupkg
Microsoft.Extensions.Configuration.FileExtensions | 3.1.9.nupkg
Microsoft.Extensions.Logging.Configuration | 3.1.9.nupkg
Microsoft.Extensions.Localization | 3.1.9.nupkg
Microsoft.Extensions.Logging.Abstractions | 3.1.9.nupkg
Microsoft.Extensions.Http.Polly | 3.1.9.nupkg
Microsoft.Extensions.Logging | 3.1.9.nupkg
Microsoft.DotNet.Common.ItemTemplates | 3.1.8.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.0 | 3.1.8.nupkg
Microsoft.DotNet.Common.ProjectTemplates.1.x | 3.1.8.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.1 | 3.1.8.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.0 | 3.1.8.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.2 | 3.1.8.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.1 | 3.1.8.nupkg
[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/master/release-notes/3.1/3.1.9/3.1.9.md
[snap-install]: 3.1.9-install-instructions.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.9-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.9-sha.txt
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-october-2020/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-core-3-1/
[//]: # ( Runtime 3.1.9)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7c1177f6-feb9-4404-a795-adb77e78b9ab/d3ca4e135e1af71bea28623774f8df27/dotnet-runtime-3.1.9-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f6ca8333-82a2-4380-9d47-e152f47e85b8/1e3f6e0149761e884f63b14fa9d921f3/dotnet-runtime-3.1.9-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/06297d4b-3e26-4ec2-a8d5-fe34a5ef0c85/e46a3e9d1825986b87bfed87a986eb6e/dotnet-runtime-3.1.9-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4ca97cf7-07c1-4846-938f-e7e9d0e8a3de/0c16e1051ec3169519ab7027ae54a087/dotnet-runtime-3.1.9-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fb8a9fd4-c015-4c0e-a478-6da0b590bc39/d831b206c30e0aa23501b4a210dec9b1/dotnet-runtime-3.1.9-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/175aea5a-1b4a-4faa-b29d-ff72fa8c16bc/fcef8fc0139672f19ec8b9913824b6bb/dotnet-runtime-3.1.9-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/28d117d1-c52e-40e9-a692-cf6f32b7d8a9/be1562cfffcb0744e4c2555f668072e4/dotnet-runtime-3.1.9-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8a8dda14-5813-45d1-8b26-7ac52b354834/b317ebba1f4a67b944621a3776a2da2d/dotnet-runtime-3.1.9-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/2d753111-1c85-4dd1-be02-e5b229d170b7/3c9ccda18a20d0f41983c1e5b648b184/dotnet-runtime-3.1.9-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/ceff8b33-6f27-425f-957d-91039cf01a9c/312410f11691fae3272f4274f787eb12/dotnet-runtime-3.1.9-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/0e310530-ba28-4f1f-bc9c-d52724dcbdd8/6ba67b12380ed99998d51ffa2a0287b6/dotnet-runtime-3.1.9-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/8b0aa62d-5065-4b3d-8fed-b6f82ada03f8/80faca44ed02c99c1e343ffda4a5e5c7/dotnet-runtime-3.1.9-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/6b892eec-d99d-40b9-a13f-a0927c568f3e/d52d6c1e6e2322708dcd445abc3947fd/dotnet-runtime-3.1.9-win-x86.zip
[//]: # ( WindowsDesktop 3.1.9)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/6a3a8a8b-4aaa-4d3f-bce6-b512f2ef5a2c/e6963fbe57cdd8258a9f0997cc3a6669/windowsdesktop-runtime-3.1.9-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/1419cd1f-64ac-44c7-bfe0-937fd5e5f39a/e72ec98df78dfbb3a5bbf35b66cb7c15/windowsdesktop-runtime-3.1.9-win-x86.exe
[//]: # ( ASP 3.1.9)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c8cd43dd-e9de-4ff9-9cea-2f02fba6869c/d5c653c12ec93cb71e30b21856acea66/aspnetcore-runtime-3.1.9-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/dffd493f-9eb8-483f-81c7-a9e2201574ef/54e7464241e01e7031fd89e6fe88e6da/aspnetcore-runtime-3.1.9-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/df551158-70c8-4af6-beab-ce80d9092888/5f9be026830c708fba7724ba108fd9c7/aspnetcore-runtime-3.1.9-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/85c50e50-085c-46a6-a585-88aa13f4a1af/b04c24d8bc68449748509372a834f4c6/aspnetcore-runtime-3.1.9-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/933b0cb8-3494-4ca4-8c9e-1bcfd3568ab0/8704eef073efdfecdaaad4a18beb05ac/aspnetcore-runtime-3.1.9-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5fd170f1-05d8-4126-ae8f-9ff9dc683466/997547015dac7edcb155e5ac917b0c72/aspnetcore-runtime-3.1.9-osx-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/4aee42bd-1598-4b26-bc4a-80940859ca82/3ab43bc8b9a4f8de870a7b9855d1447e/aspnetcore-runtime-3.1.9-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/87bcc889-4afa-4c88-839c-d72497b84407/42105fc6c95feb5faa64b2be1b76a830/aspnetcore-runtime-3.1.9-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/acdf7879-d422-4195-90a1-1f4a6e8550da/e75bde72d8790d478a698ad40f390b3e/aspnetcore-runtime-3.1.9-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/5d18182f-178e-4734-a83e-803d65ce6353/445ae43d1955e368b35df7c8a884cb54/aspnetcore-runtime-3.1.9-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/8a1f6e8f-eeef-4566-be27-28a870f3f3fb/1496eb9467f1e4091cd904035e96b514/aspnetcore-runtime-3.1.9-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/beca42b0-54a8-4364-86b8-a3d88003fbb7/592e0eec1e5e53f78d9647f7112cc743/dotnet-hosting-3.1.9-win.exe
[//]: # ( SDK 3.1.109 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d9a0b670-88f8-44ac-a6b1-9020c783c518/8bbec2b438275789bc1dbc95b8f89adf/dotnet-sdk-3.1.109-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/27fdcb48-766c-4f0e-8032-9f2afa40d3af/f2c6dac373046fa2d70e9a41b4a7dadf/dotnet-sdk-3.1.109-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4a45d6c6-951e-4205-ad51-cb10adefb88d/d0a059fab437a866b417e43e2cf9b579/dotnet-sdk-3.1.109-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/401ae772-3b16-40c7-a332-e7c0622c97fd/58016e724bc0dfa0c1f2ef0233b95aed/dotnet-sdk-3.1.109-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/311c13d3-1097-480f-b04d-5a2443948cc3/11250fe3b932fc15bc909606d5468223/dotnet-sdk-3.1.109-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6d684473-a89a-48c3-b91a-f04a43fbf1ff/5ba63e071b6c99d8568dbde1982cdf09/dotnet-sdk-3.1.109-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b21de37f-c225-42ad-9ea5-1ed1b5c7795a/131191ac6bd0fafb4efdd54f9042237a/dotnet-sdk-3.1.109-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/14a0cb3a-18a0-4d0f-a4e4-4d5bc1ebd47d/79e65c5802d748d43b99a66fe7b7501c/dotnet-sdk-3.1.109-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/48c6b7dd-fc04-4119-94fe-21adc27d3f18/719d076175946d2375bba25df293056f/dotnet-sdk-3.1.109-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/f090672d-ffb0-4126-8154-68649cc55ad4/a09964d24b1bf583ad2f283f84c0a89c/dotnet-sdk-3.1.109-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/596a1e26-1cca-4f4f-a321-962247a159e6/f8c4d8dcc434f122cd04ff02ab890a81/dotnet-sdk-3.1.109-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/7ac7b3e8-e3b0-49f1-8acf-67a41fe0fabd/af6f916191298dca36963978dbc54db0/dotnet-sdk-3.1.109-win-x86.zip

View file

@ -4,6 +4,7 @@ The following .NET Core 3.1 releases have been shipped. You must be on the lates
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/10/13 | [3.1.9](./3.1.9/3.1.9.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2020/09/08 | [3.1.8](./3.1.8/3.1.8.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2020/08/11 | [3.1.7](./3.1.7/3.1.7.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2020/07/14 | [3.1.6](./3.1.6/3.1.6.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |

View file

@ -1,13 +1,466 @@
{
"channel-version": "3.1",
"latest-release": "3.1.8",
"latest-release-date": "2020-09-08",
"latest-runtime": "3.1.8",
"latest-sdk": "3.1.402",
"latest-release": "3.1.9",
"latest-release-date": "2020-10-13",
"latest-runtime": "3.1.9",
"latest-sdk": "3.1.403",
"support-phase": "lts",
"eol-date": "2022-12-03",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-10-13",
"release-version": "3.1.9",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.9/3.1.9.md",
"runtime": {
"version": "3.1.9",
"version-display": "3.1.9",
"vs-version": "16.4.14, 16.7.6",
"vs-mac-version": "8.8",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/7c1177f6-feb9-4404-a795-adb77e78b9ab/d3ca4e135e1af71bea28623774f8df27/dotnet-runtime-3.1.9-linux-arm.tar.gz",
"hash": "c924ca8be918bd910b87cd17599f418dee13991b4f05d4d75e41aba794b099bf32bb50a8d2b12c9eb92603fc474f7c8ab230228f69693a4fb735a697137ab80c"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f6ca8333-82a2-4380-9d47-e152f47e85b8/1e3f6e0149761e884f63b14fa9d921f3/dotnet-runtime-3.1.9-linux-arm64.tar.gz",
"hash": "a1e43dab5402abf627458b4c9117d4fe7ef07759520dde6867fc01b01957d59950df32ce8cb3d65f804f6d119ecebe660ef39bed7d1b0b6798a799c95f71c20a"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/06297d4b-3e26-4ec2-a8d5-fe34a5ef0c85/e46a3e9d1825986b87bfed87a986eb6e/dotnet-runtime-3.1.9-linux-musl-arm64.tar.gz",
"hash": "d6f0cd071adb6999df3445f8150b102058d1f90cf36d6d4b63cbbbcfa98fd05b070c049b0e33586126e0f41bd36f1193fe6bde85bef04ce62203bff8f8742de4"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4ca97cf7-07c1-4846-938f-e7e9d0e8a3de/0c16e1051ec3169519ab7027ae54a087/dotnet-runtime-3.1.9-linux-musl-x64.tar.gz",
"hash": "98778ec5ead5008b018e03defbe6eafe5d7a61e81689ae072dfff2135698e4bf4053d72a81851a25129d5969e3dca1258360961318db44adc3c94a7fd5cd2892"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fb8a9fd4-c015-4c0e-a478-6da0b590bc39/d831b206c30e0aa23501b4a210dec9b1/dotnet-runtime-3.1.9-linux-x64.tar.gz",
"hash": "dde97e3e95fe4109bcb6a16c23b709e8144a75ec46222e62541bd052c9db734008a8ccf3b2441b9438687bf9d2643f0155e795253c77a7d2eb6030bf1af3bba0"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/175aea5a-1b4a-4faa-b29d-ff72fa8c16bc/fcef8fc0139672f19ec8b9913824b6bb/dotnet-runtime-3.1.9-osx-x64.pkg",
"hash": "80835973778ab04502ca127cd41101ad2839f77d96ca63d8265c8203c0acf4346b54f63447ba622ee795afd883b81b83d6ab197012f4d452e76af99397da2073"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/28d117d1-c52e-40e9-a692-cf6f32b7d8a9/be1562cfffcb0744e4c2555f668072e4/dotnet-runtime-3.1.9-osx-x64.tar.gz",
"hash": "132dc7c4a2325aff25467fe896390574e079a64b5ad04c486249c005c3a91b6b0edc469d09a2947ed626b0c9eb78bda75404763a0a790357acd6562b9580eaee"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a8dda14-5813-45d1-8b26-7ac52b354834/b317ebba1f4a67b944621a3776a2da2d/dotnet-runtime-3.1.9-rhel.6-x64.tar.gz",
"hash": "5a292b8f3601d6a9fcbe4ec71ea43ae3d314e4bfcc0e0583c2ee96b1f98dbf5fae73532c7e28d92a012c3b546e8dc628c1637770150d0aa3feb52f8bf3b5092c"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/2d753111-1c85-4dd1-be02-e5b229d170b7/3c9ccda18a20d0f41983c1e5b648b184/dotnet-runtime-3.1.9-win-arm.zip",
"hash": "942ede537d7d733fda6331178c7eeab947714e312955470b5805804d39308c11e67c31f8da6428f39886b0e3a554760e5a5874084c0aad90a327fdb19783342f"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ceff8b33-6f27-425f-957d-91039cf01a9c/312410f11691fae3272f4274f787eb12/dotnet-runtime-3.1.9-win-x64.exe",
"hash": "12228ca665700e71137f3c305e04fee3a26349f560f2968889349b126151c3b75c72315f4161c106b9defccba3f66dad1031d6d4ef1fa051c6c87c1ba91e5625"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0e310530-ba28-4f1f-bc9c-d52724dcbdd8/6ba67b12380ed99998d51ffa2a0287b6/dotnet-runtime-3.1.9-win-x64.zip",
"hash": "f5c8ec530851fe6b951dbf5d70d2443aebdb37341fe844e567e1023a12e237717e2b78b3be6d84928a177c9d6686d4c33c9d6c5f681583494a47605833649710"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/8b0aa62d-5065-4b3d-8fed-b6f82ada03f8/80faca44ed02c99c1e343ffda4a5e5c7/dotnet-runtime-3.1.9-win-x86.exe",
"hash": "fa6c63561394fd2d5ac6c56fa21cac135d2772d5f5496bb5898d71665d61de399159f9f208be6858fbbeee764286c94fb70549095105b77e68b4377416f5d33d"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/6b892eec-d99d-40b9-a13f-a0927c568f3e/d52d6c1e6e2322708dcd445abc3947fd/dotnet-runtime-3.1.9-win-x86.zip",
"hash": "a5930cc22130b88bc6901591b12252e0e9b675d65cc86d9ef49b46f59a6c04924e11a08f59df9b89fe665aff53778a8a734eea270b06798096f900eef7122075"
}
]
},
"sdk": {
"version": "3.1.403",
"version-display": "3.1.403",
"runtime-version": "3.1.9",
"vs-version": "16.7.6",
"vs-mac-version": "8.8",
"vs-support": "Visual Studio 2019 (v16.7)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.8)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a2da583-cac8-4490-bcca-2a3667d51142/6a0f7fb4b678904cdb79f3cd4d4767d5/dotnet-sdk-3.1.403-linux-arm.tar.gz",
"hash": "9f1293ef8f3abf5c6a8da7f963de4408d5aed6a9ee29a2c84655871574041980d8a4bb5b608ea129b1bd392890dc577d11c138bd54ce91745cb4960be697cb4e"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7a027d45-b442-4cc5-91e5-e5ea210ffc75/68c891aaae18468a25803ff7c105cf18/dotnet-sdk-3.1.403-linux-arm64.tar.gz",
"hash": "c0f5070deca932d67a80b06268a69146ca403f1657e49d509513b5fe15cb5224cdfb5bec9cd2e63db6c83a48f3cb64d23d8cc30fcd98c620d9936544dbb6ce0b"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8aa322e4-eb76-41e6-8116-d18055537ec0/db7210d873c2bb87c4d98e9f9ad5bad6/dotnet-sdk-3.1.403-linux-musl-x64.tar.gz",
"hash": "3f3d9e96553718f1c8dd8774afb9a892ece64be4f4ec98a50fb4c0f18d358ee739032189ebc38809464ae69aa435e529c65b4f907a59d603e042f649b055a2ae"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fdd9ecec-56b4-40f4-b762-d7efe24fc3cd/ffef51844c92afa6714528e10609a30f/dotnet-sdk-3.1.403-linux-x64.tar.gz",
"hash": "0a0319ee8e9042bf04b6e83211c2d6e44e40e604bff0a133ba0d246d08bff76ebd88918ab5e10e6f7f0d2b504ddeb65c0108c6539bc4fbc4f09e4af3937e88ea"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b4db3ee6-91da-4dd3-a279-37c45d9627b7/fad88a7335d374d6e4d53aef085f4b24/dotnet-sdk-3.1.403-osx-x64.pkg",
"hash": "6402025b1dd5488e2d7ff391ddc22072a5aa788e53fb4b5ac33d0964e4232268618995fea51bdfe914475a1dc75edeedf8a17914355142fb465cc8af82e13514"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5e3b8ffc-c0c3-4d42-b207-87b91b678cf1/3994f505b0b91ed3858718c6dcd8cf9b/dotnet-sdk-3.1.403-osx-x64.tar.gz",
"hash": "e6750930beff0ac6b66c569bef9d55cabf3571492d48465f9e457b44778d79fb4bc74e639e5db88abb07b0add7931810a32d76044dc2643b1e44550a25422829"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8c995929-4057-41cc-b183-e23f1edb5219/b3f41ad92681fc7e329d05b2f8819463/dotnet-sdk-3.1.403-rhel.6-x64.tar.gz",
"hash": "6d8c6113bee8fe5d574917fcf7fe3307707f35142710be6b021ea1348659a1146e51616e7371f17b22abe0da26489903a4bd808bd00041f4bde425eef04e9bfa"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/cc530423-2db7-43b6-bd69-4428ff5cf065/b3b1be9c14d5d0ad846c98a3f9bdb326/dotnet-sdk-3.1.403-win-arm.zip",
"hash": "b23dcd981506a133bd5481b6c808904f3d0c01ecf7d767233b68556557143ba983b79e5254fac026a7f4ff3dac4230cc21a784118208d1ad2a50991b8bf14981"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/38136cfe-04d4-4ce8-a8ea-369a800021df/08b29e05cd798d96b5987b417a989b80/dotnet-sdk-3.1.403-win-x64.exe",
"hash": "c8519eb9dd5c7f54fa517cf6148e177cbf3b061a95b9feee3cb1161a27ca09d5d4b8c09ee15dfbf6a7b324879f961ebeaa50efe74e93699b12ab8fee349b2b7d"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/143c00dc-a1f2-4070-a1fd-5f732e13be1f/b11931ba31bb5af69dce36e39a3014c5/dotnet-sdk-3.1.403-win-x64.zip",
"hash": "280c7dee8c6cfa56f1f37efe901d124495ca0a9bdb1f3d535e37ca069ec7bb646cded362517b9d3f63233ecf184914254217914a981037f9050a94480322ad00"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/5b7aeeec-2012-41fb-9950-901d3b411b11/7cdbaaf309f90f91b5b0f2a6833aa73b/dotnet-sdk-3.1.403-win-x86.exe",
"hash": "c249df47ae14366859a5c6f69ab879b2d8f54fc3d8c46c95108ed931b20c0a250387dbd0395096eec6267735d0867a24f54c14d023a827167873f17361df28b0"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/7f72e2db-9c19-4729-b962-f576fc10492b/5fc4281b1965503eaec8686aef6a1ed0/dotnet-sdk-3.1.403-win-x86.zip",
"hash": "664f5300ba8a70b3f1bf7031768c17e8b91675d4dd1c5773223023806f14fb6c140940dc0f49d8ad714209d7304ab1f7b1df52b7f7bc3fa29d65148fb3ae60b0"
}
]
},
"sdks": [
{
"version": "3.1.403",
"version-display": "3.1.403",
"runtime-version": "3.1.9",
"vs-version": "16.7.6",
"vs-mac-version": "8.8",
"vs-support": "Visual Studio 2019 (v16.7)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.8)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a2da583-cac8-4490-bcca-2a3667d51142/6a0f7fb4b678904cdb79f3cd4d4767d5/dotnet-sdk-3.1.403-linux-arm.tar.gz",
"hash": "9f1293ef8f3abf5c6a8da7f963de4408d5aed6a9ee29a2c84655871574041980d8a4bb5b608ea129b1bd392890dc577d11c138bd54ce91745cb4960be697cb4e"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7a027d45-b442-4cc5-91e5-e5ea210ffc75/68c891aaae18468a25803ff7c105cf18/dotnet-sdk-3.1.403-linux-arm64.tar.gz",
"hash": "c0f5070deca932d67a80b06268a69146ca403f1657e49d509513b5fe15cb5224cdfb5bec9cd2e63db6c83a48f3cb64d23d8cc30fcd98c620d9936544dbb6ce0b"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8aa322e4-eb76-41e6-8116-d18055537ec0/db7210d873c2bb87c4d98e9f9ad5bad6/dotnet-sdk-3.1.403-linux-musl-x64.tar.gz",
"hash": "3f3d9e96553718f1c8dd8774afb9a892ece64be4f4ec98a50fb4c0f18d358ee739032189ebc38809464ae69aa435e529c65b4f907a59d603e042f649b055a2ae"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fdd9ecec-56b4-40f4-b762-d7efe24fc3cd/ffef51844c92afa6714528e10609a30f/dotnet-sdk-3.1.403-linux-x64.tar.gz",
"hash": "0a0319ee8e9042bf04b6e83211c2d6e44e40e604bff0a133ba0d246d08bff76ebd88918ab5e10e6f7f0d2b504ddeb65c0108c6539bc4fbc4f09e4af3937e88ea"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b4db3ee6-91da-4dd3-a279-37c45d9627b7/fad88a7335d374d6e4d53aef085f4b24/dotnet-sdk-3.1.403-osx-x64.pkg",
"hash": "6402025b1dd5488e2d7ff391ddc22072a5aa788e53fb4b5ac33d0964e4232268618995fea51bdfe914475a1dc75edeedf8a17914355142fb465cc8af82e13514"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5e3b8ffc-c0c3-4d42-b207-87b91b678cf1/3994f505b0b91ed3858718c6dcd8cf9b/dotnet-sdk-3.1.403-osx-x64.tar.gz",
"hash": "e6750930beff0ac6b66c569bef9d55cabf3571492d48465f9e457b44778d79fb4bc74e639e5db88abb07b0add7931810a32d76044dc2643b1e44550a25422829"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8c995929-4057-41cc-b183-e23f1edb5219/b3f41ad92681fc7e329d05b2f8819463/dotnet-sdk-3.1.403-rhel.6-x64.tar.gz",
"hash": "6d8c6113bee8fe5d574917fcf7fe3307707f35142710be6b021ea1348659a1146e51616e7371f17b22abe0da26489903a4bd808bd00041f4bde425eef04e9bfa"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/cc530423-2db7-43b6-bd69-4428ff5cf065/b3b1be9c14d5d0ad846c98a3f9bdb326/dotnet-sdk-3.1.403-win-arm.zip",
"hash": "b23dcd981506a133bd5481b6c808904f3d0c01ecf7d767233b68556557143ba983b79e5254fac026a7f4ff3dac4230cc21a784118208d1ad2a50991b8bf14981"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/38136cfe-04d4-4ce8-a8ea-369a800021df/08b29e05cd798d96b5987b417a989b80/dotnet-sdk-3.1.403-win-x64.exe",
"hash": "c8519eb9dd5c7f54fa517cf6148e177cbf3b061a95b9feee3cb1161a27ca09d5d4b8c09ee15dfbf6a7b324879f961ebeaa50efe74e93699b12ab8fee349b2b7d"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/143c00dc-a1f2-4070-a1fd-5f732e13be1f/b11931ba31bb5af69dce36e39a3014c5/dotnet-sdk-3.1.403-win-x64.zip",
"hash": "280c7dee8c6cfa56f1f37efe901d124495ca0a9bdb1f3d535e37ca069ec7bb646cded362517b9d3f63233ecf184914254217914a981037f9050a94480322ad00"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/5b7aeeec-2012-41fb-9950-901d3b411b11/7cdbaaf309f90f91b5b0f2a6833aa73b/dotnet-sdk-3.1.403-win-x86.exe",
"hash": "c249df47ae14366859a5c6f69ab879b2d8f54fc3d8c46c95108ed931b20c0a250387dbd0395096eec6267735d0867a24f54c14d023a827167873f17361df28b0"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/7f72e2db-9c19-4729-b962-f576fc10492b/5fc4281b1965503eaec8686aef6a1ed0/dotnet-sdk-3.1.403-win-x86.zip",
"hash": "664f5300ba8a70b3f1bf7031768c17e8b91675d4dd1c5773223023806f14fb6c140940dc0f49d8ad714209d7304ab1f7b1df52b7f7bc3fa29d65148fb3ae60b0"
}
]
},
{
"version": "3.1.109",
"version-display": "3.1.109",
"runtime-version": "3.1.9",
"vs-version": "16.4.14",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.4)",
"vs-mac-support": "",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/d9a0b670-88f8-44ac-a6b1-9020c783c518/8bbec2b438275789bc1dbc95b8f89adf/dotnet-sdk-3.1.109-linux-arm.tar.gz",
"hash": "035b00adc3aecc365017db44771a30300b0858c6eb480f7358fa5c9b931a1d7d2a8d3e44d88a3e7ef59efbdf1cfab1c9dbd52e8c31694a1fa9419805134e2b52"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/27fdcb48-766c-4f0e-8032-9f2afa40d3af/f2c6dac373046fa2d70e9a41b4a7dadf/dotnet-sdk-3.1.109-linux-arm64.tar.gz",
"hash": "c3675edda58a8dc8ae9132fb1c5cea0b2a764d5c93ce2f94de0109676d4ef64f21f886d4354a10c441c522a2a8f13493c49501d62fc2c9e7a2f480eaff93cf56"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4a45d6c6-951e-4205-ad51-cb10adefb88d/d0a059fab437a866b417e43e2cf9b579/dotnet-sdk-3.1.109-linux-musl-x64.tar.gz",
"hash": "9f0c180fda2cc368ff354ef3d589a6e6f0d724d89c6b7be3987078159344dca7012df7603af69b6c91de3043f7b4030efffbb36f553c115087e537abb4d51d5d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/401ae772-3b16-40c7-a332-e7c0622c97fd/58016e724bc0dfa0c1f2ef0233b95aed/dotnet-sdk-3.1.109-linux-x64.tar.gz",
"hash": "566beb381872f0399729b0d3b2b505ff353ffcd01fcfeaac521dcec2fb69b22c068aa55ddce08104c57cd6fce3c372b631e4f639dad4d4a08a06162521cec9dc"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/311c13d3-1097-480f-b04d-5a2443948cc3/11250fe3b932fc15bc909606d5468223/dotnet-sdk-3.1.109-osx-x64.pkg",
"hash": "446b6f6b6549963ae574c97871bebbebd4ab78857ddd925af0d3bc38caf530fb17acbdb92c8581b9dbd50170d08dec5f29d2b2ce69832374832ce51cd8253f0c"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6d684473-a89a-48c3-b91a-f04a43fbf1ff/5ba63e071b6c99d8568dbde1982cdf09/dotnet-sdk-3.1.109-osx-x64.tar.gz",
"hash": "52cfddd15f39c99086d5bbe7a9a30bdf0aa496cb0cc476c98dbffcacf001fd882ae01b08c0bb0880bda5b98f797bc6f06dc80c023b81715723a2e7ba9fca1787"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b21de37f-c225-42ad-9ea5-1ed1b5c7795a/131191ac6bd0fafb4efdd54f9042237a/dotnet-sdk-3.1.109-rhel.6-x64.tar.gz",
"hash": "c28aac7bf420f5ed6581e1c0c4cef30bf6f918d0b16f8c4d4b4c5d45157cd396609fd1c40782b5d01fc7e3c1e7de018407801ca8feff85b9e891a99100f7b777"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/14a0cb3a-18a0-4d0f-a4e4-4d5bc1ebd47d/79e65c5802d748d43b99a66fe7b7501c/dotnet-sdk-3.1.109-win-arm.zip",
"hash": "7a0d2fb41c6923050132b0b8790e096a8e957f9280f0d01670ed5f563504fc9c2ec4e80c9ee81f61005a29724b272008bec5e91f0cdf8fd2307a260cbc012fb0"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/48c6b7dd-fc04-4119-94fe-21adc27d3f18/719d076175946d2375bba25df293056f/dotnet-sdk-3.1.109-win-x64.exe",
"hash": "de561753d9d82fd5ce23b78eaaf8876cf5adcd56889de3462a349e98f7f46631654fb58f8ad23399938a6643b64ebc5d646bab94a1af82362156b0e1c2f51420"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f090672d-ffb0-4126-8154-68649cc55ad4/a09964d24b1bf583ad2f283f84c0a89c/dotnet-sdk-3.1.109-win-x64.zip",
"hash": "4b54d48026a7cc1e925bf1b53e4fd2035b0aec49a89a67d728fdf68ccfe67ec562c8941475a4661627b234d6e2bd22c21e8006403735a89d863f2f9cc7d56f2c"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/596a1e26-1cca-4f4f-a321-962247a159e6/f8c4d8dcc434f122cd04ff02ab890a81/dotnet-sdk-3.1.109-win-x86.exe",
"hash": "50cbf49184da4c254f0c9489027486fa8f5b890f865c54241c34b5553e25907bd9c4433b94b3fc1c1eeca413aed9e5c4d5023cd97649413f584d6bc40791a4b5"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/7ac7b3e8-e3b0-49f1-8acf-67a41fe0fabd/af6f916191298dca36963978dbc54db0/dotnet-sdk-3.1.109-win-x86.zip",
"hash": "acae2d9eae7f1420b54474980de32597515014ac5a5c0e57775c31d6ccdd3d3d69c0321a84c10b5c95ff00ef337fad43a53b31801f886df347d103ac1b74de1b"
}
]
}
],
"aspnetcore-runtime": {
"version": "3.1.9",
"version-display": "3.1.9",
"version-aspnetcoremodule": [
"13.1.20268.9"
],
"vs-version": "16.4.14, 16.7.6",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/c8cd43dd-e9de-4ff9-9cea-2f02fba6869c/d5c653c12ec93cb71e30b21856acea66/aspnetcore-runtime-3.1.9-linux-arm.tar.gz",
"hash": "fdeb0c58d7d5d2ced7fc6f5d0a8b6b2fc89f3ba2218014869d80e8aed99c6c5e69ab629e32b11694b8a54ed5fe75f3410d0c973f586ceffaba263f95bdbbfa4f"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/dffd493f-9eb8-483f-81c7-a9e2201574ef/54e7464241e01e7031fd89e6fe88e6da/aspnetcore-runtime-3.1.9-linux-arm64.tar.gz",
"hash": "86a9ab4c3401b02510dc8b2d99e73ff083d1de2845965d43bf45aa4dc72527870de86cf16c43965eb981a4f60d8d7026e5050d71a7216b0de4f9e976a169e4a1"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/df551158-70c8-4af6-beab-ce80d9092888/5f9be026830c708fba7724ba108fd9c7/aspnetcore-runtime-3.1.9-linux-musl-arm64.tar.gz",
"hash": "8e8e4cc8bf286580ae2266e5731832725d850b727c3196d405fda283aea062940dbf211eca31276447fbd3942f5553271a1e97896084aa737f37b66c859984f1"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/85c50e50-085c-46a6-a585-88aa13f4a1af/b04c24d8bc68449748509372a834f4c6/aspnetcore-runtime-3.1.9-linux-musl-x64.tar.gz",
"hash": "016dcf06ee019a3358c0431187a28cb184c352f14e3615e8d8cc5e47450ce964a33217f80b42eae0d90c9e6e3628585314a68fcae2ba191f49e258bb27a22907"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/933b0cb8-3494-4ca4-8c9e-1bcfd3568ab0/8704eef073efdfecdaaad4a18beb05ac/aspnetcore-runtime-3.1.9-linux-x64.tar.gz",
"hash": "86462c61dd71adda38ddb0178fc44591cde13de4357652365e0d5c80d14db98d2e1f14a6fab2455b9deebcb910577174473d86f432dd3cd3d0b4284a9dcf440f"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5fd170f1-05d8-4126-ae8f-9ff9dc683466/997547015dac7edcb155e5ac917b0c72/aspnetcore-runtime-3.1.9-osx-x64.tar.gz",
"hash": "6e66d7344894e5560b2440fa35813a239ccf937445f612f05194069e534bf6fed04ad583efed443f5dd9323e103ce401a19009d21bf9a8b76b2e5723e348bf9a"
},
{
"name": "aspnetcore-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/4aee42bd-1598-4b26-bc4a-80940859ca82/3ab43bc8b9a4f8de870a7b9855d1447e/aspnetcore-runtime-3.1.9-win-arm.zip",
"hash": "60e83dd132ba050ac738fdea312ad7041ba63c8e3cdc6600e15dda729c0595338618e4cbe05b0c18ae29d352505dab74ae69010c2ee6b185a809de4ec3d332a0"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/87bcc889-4afa-4c88-839c-d72497b84407/42105fc6c95feb5faa64b2be1b76a830/aspnetcore-runtime-3.1.9-win-x64.exe",
"hash": "3acb793699ff89412029d1d0050242cf5e11c07f111bcf4c620f0bd7765571cc791737fce0070b934afc78fb6097b9aa8d6e0124e227f546605c056a2503de2c"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/acdf7879-d422-4195-90a1-1f4a6e8550da/e75bde72d8790d478a698ad40f390b3e/aspnetcore-runtime-3.1.9-win-x64.zip",
"hash": "a165e61234cea95440383a36fe3bc826af1057f3a987d815667b0157d4cde2a4ac5bcbd6d905dda3ce57259b26619f592b84ae15089b0db7bf5d258225537c86"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/5d18182f-178e-4734-a83e-803d65ce6353/445ae43d1955e368b35df7c8a884cb54/aspnetcore-runtime-3.1.9-win-x86.exe",
"hash": "9011aca9fcaf15e797f950187d1798a099f0db93872ab5abc0b8832764a531c98fef7a7015dfa011ced8ff1156eddd16025f669e15a41a0b8713379a945c0bcc"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a1f6e8f-eeef-4566-be27-28a870f3f3fb/1496eb9467f1e4091cd904035e96b514/aspnetcore-runtime-3.1.9-win-x86.zip",
"hash": "ee2fdf7be2bce12486aae7b329469c1654290da2d443526c8178f0cdc72396b2e0a7e98ca59cff3b8e26c2f6c6175acae3ef76cc6011b6ef3e4efb3fd934436e"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/beca42b0-54a8-4364-86b8-a3d88003fbb7/592e0eec1e5e53f78d9647f7112cc743/dotnet-hosting-3.1.9-win.exe",
"hash": "674d5f7d12a3fd8070fe5faccda982f5a52a69321cd5018e22d47dfe7cb565667d3402ce1b14b1cf8df1eafcbc9ce56e8c078ed926a273bdc357674e92c221fd",
"akams": "https://aka.ms/dotnetcore-3-1-windowshosting"
}
]
},
"windowsdesktop": {
"version": "3.1.9",
"version-display": "3.1.9",
"files": [
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6a3a8a8b-4aaa-4d3f-bce6-b512f2ef5a2c/e6963fbe57cdd8258a9f0997cc3a6669/windowsdesktop-runtime-3.1.9-win-x64.exe",
"hash": "78c7c8bf4994fbc657d15b4799f4c9313f175a4582764e6abe758a43134b69d9c6af31e4b5e7f71a36a1c6ca617079e79b9136474af92fec202c0d68c30ea501"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/1419cd1f-64ac-44c7-bfe0-937fd5e5f39a/e72ec98df78dfbb3a5bbf35b66cb7c15/windowsdesktop-runtime-3.1.9-win-x86.exe",
"hash": "9936845c7c9c0d9e8fc961ee718c8df224fa17047836afe1ee370eb43dea3089b234d7b7c17c08e22bb68691dfad09476b61a154c24e4205db92692ef8ce0a86"
}
]
}
},
{
"release-date": "2020-09-08",
"release-version": "3.1.8",

View file

@ -79,6 +79,57 @@ Edit Areas\Identity\Pages\Shared\_LoginPartial.cshtml in the project and change
+ <a class="nav-link text-dark" asp-area="Identity" asp-page="/Account/Register">Register</a>
```
### RC1
#### Authentication using Identity Server does not work when applications are published as single file applications
*Problem:*
Applications that use Identity Server 4 will throw exceptions when published as a single file application. This includes applications generated from Blazor templates which include authentication for in-application, individual accounts.
*Workaround:*
Do not publish applications which include Identity Server as single file applications.
#### TcpListener throwing `SocketException` instead of `ObjectDisposedException`
*Problem:*
When calling `Stop` after `BeginAcceptSocket` or `BeginAcceptTcpClient` on a `TcpListener` instance, a subsequent `EndAcceptSocket` or `EndAcceptTcpClient` call will throw `SocketException` with `SocketError.OperationAborted` (995) instead of `ObjectDisposedException`:
https://github.com/dotnet/runtime/issues/41585
*Workaround:*
If you're using [APM](https://docs.microsoft.com/dotnet/standard/asynchronous-programming-patterns/asynchronous-programming-model-apm) Accept metods on `TcpClient`, change the catch block (temporarily), when updating to RC1:
```diff
try
{
Socket client = listener.EndAcceptSocket(ar);
}
catch (ObjectDisposedException ex)
{
// Original exception handler -- won't be invoked in RC1
HandleListenerStopped(listener);
}
+catch (SocketException ex) when (ex.SocketErrorCode == SocketError.OperationAborted)
+{
+ // This handler will be hit in RC1, but not in subsequent releases,
+ // so it could be removed starting from RC2.
+ HandleListenerStopped(listener);
+}
```
#### Blazor Virtualization component limitations
Issues resolved in 5.0 RC2 by https://github.com/dotnet/aspnetcore/pull/25260.
The Virtualization component is new in RC1 and there are some fixes we didn't fit in RC1, which make the component unusable for certain scenarios.
1. Item size calculations can be wrong by a subpixel amount, which accumulates and produces offsets in scrolling when the source list goes beyond several pages.
2. When items don't have @key, scrolling can get stuck in a loop.
**All these limitations will be addressed in the RC2 release**
## .NET SDK
### Preview 1
@ -103,3 +154,38 @@ Edit Areas\Identity\Pages\Shared\_LoginPartial.cshtml in the project and change
- C++/CLI projects will not build if targeted to .NET 5.0
1. Warning icons in Dependencies node in Solution Explorer
- For projects targeting .NET 5, warning icons may be displayed on packages listed in the Solution Explorer Depdendencies node
### RC1
1. Libraries targeting net5-windows that were compiled with preview 8 will need to be recompiled. This is because they have an assembly-level `MinimumOSPlatformAttribute` defined, which was renamed to `SupportedOSPlatformAttribute` in RC1. Reflecting over the assembly with the old attribute can fail. For WPF projects, this can surface as a failure in the MarkupCompilePass1 target:
> C:\Program Files\dotnet\sdk\5.0.100-rc.1.20453.4\Sdks\Microsoft.NET.Sdk.WindowsDesktop\targets\Microsoft.WinFX.targets(240,9): error MC1000: Unknown build error, 'Could not find type 'System.Runtime.Versioning.MinimumOSPlatformAttribute' in assembly 'C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-rc.1.20452.14\ref\net5.0\System.Runtime.dll'.'
- MinimumOSPlatformAttribute was renamed to SupportedOSPlatformAttribute
- RemovedInOSPlatformAttribute was renamed to UnsupportedOSPlatformAttribute
- ObsoletedInOSPlatformAttribute was removed.
2. Warning icons in Dependencies node in Solution Explorer
- For projects targeting .NET 5 where there's a package downgrade error, warning icons won't be displayed on the error message's ancestor nodes (such as the package node, the "Packages" node, and the "Dependencies" node) in the Solution Explorer
3. Restore of F# project with TargetFramework*s* and /p:RestoreUseStaticGraphEvaluation=true will fail with NuGet.RestoreEx.targets(10,5): error : Invalid restore input. Invalid target framework 'unsupported'.
- Workaround: Add the following block to your fsproj file:
```xml
<PropertyGroup>
<InnerBuildProperty>TargetFramework</InnerBuildProperty>
<InnerBuildPropertyValues>TargetFrameworks</InnerBuildPropertyValues>
</PropertyGroup>
```
4. When launching Blazor apps from VS or initializing a debugging session in the browser, port 9300 must be open on the machine the Blazor app is running under.
### RC2
1. For Windows Application Packaging projects targeting net5.0, we recommend targeting the Windows SDK 19041. This Windows SDK is not installed by default in the Visual Studio installer options though is available and an Optional component.
- You might see build error `APPX3217`: `SDK folder containing 'UAP.props' for 'UAP 10.0.19041.0' could not be located.`
2. Dotnet tool pack does not support the new net5.0 framework alias. Please continue to target netcoreapp3.1 for now for WPF or Winforms dotnet tools. See https://github.com/dotnet/sdk/pull/13924
3. Publishing with ReadyToRunUseCrossgen2 fails with an `An assembly specified in the application dependencies manifest (crossgen2.deps.json) was not found` error.
- A simple workaround is available here: https://github.com/dotnet/runtime/issues/43141#issuecomment-707249158. This issue should be resolved in .net RTM builds
## MS Build
### RC2
In .NET 5.0 preview 7 through RC1, projects that target net5.0 define both NETCOREAPP3_1 and NET5_0 preprocessor symbols. The intent behind this behavior change was that starting with .NET 5.0, conditional compilation [symbols would be cumulative](https://github.com/dotnet/designs/blob/main/accepted/2020/net5/net5.md#preprocessor-symbols).
In .NET 5.0 RC2 and later, projects only define symbols for the target framework monikers (TFM) that it targets and not for any earlier versions.
Visit [MSBuild breaking change](https://docs.microsoft.com/dotnet/core/compatibility/msbuild#netcoreapp3_1-preprocessor-symbol-is-not-defined-when-targeting-net-5) for more details.

View file

@ -4,6 +4,8 @@ The following .NET 5 releases have been shipped. You must be on the latest patch
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/10/13 | [5.0.0 RC 2](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-rc.2.md) | [download](https://dotnet.microsoft.com/download/dotnet/5.0) |
| 2020/09/14 | [5.0.0 RC 1](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-rc.1.md) | [download](https://dotnet.microsoft.com/download/dotnet/5.0) |
| 2020/08/25 | [5.0.0 Preview 8](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.8.md) | [download](https://dotnet.microsoft.com/download/dotnet/5.0) |
| 2020/07/21 | [5.0.0 Preview 7](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.7.md) | [download](https://dotnet.microsoft.com/download/dotnet/5.0) |
| 2020/06/25 | [5.0.0 Preview 6](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.6.md) | [download](https://dotnet.microsoft.com/download/dotnet/5.0) |

View file

@ -0,0 +1,78 @@
# .NET 5.0.0 RC 2
.NET 5.0.0 RC 2 comprises:
* .NET Runtime 5.0.0-rc.2.20475.5
* ASP.NET Core 5.0.0-rc.2.20475.17
* .NET SDK 5.0.100-rc.2.20479.15
See the [Release Notes][release-notes] for details about what is included in this update.
## Docker
The [.NET Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## 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=5.0/beta --classic`
Some systems require that you restart the terminal session so the Snap install location can be added to the path. If this is the case, you will see a warning once the dotnet-sdk Snap installation is complete.
When .NET Core in 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://docs.microsoft.com/dotnet/core/install/) 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 5 Preview 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 .NET 5 Preview 6 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 -H 'Cache-Control: no-cache' -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. If it's in the [5.0 Supported OS](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0-supported-os.md) list, the script continues.
* 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_packages
* 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/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## 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-5.0.0-rc.2.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[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/master/release-notes/5.0/preview/5.0.0-rc.2.md
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/03f2261a-01cc-4a78-8505-88ba0457ef29/1ff22faa58152bec84e636e719c28528/dotnet-hosting-5.0.0-rc.2.20475.17-win.exe

View file

@ -0,0 +1,124 @@
# .NET 5.0.0 RC 2 - October 13, 2020
.NET 5.0.0 RC 2 is available for download and usage in your environment. This release includes .NET 5.0.0 Runtime RC 2 and .NET SDK 5.0.100 RC 2.
* [Downloads](https://dotnet.microsoft.com/download/dotnet/5.0)
* [.NET 5.0 RC 2 Blog][dotnet-blog]
* [ASP.NET Core Blog][aspnet-blog]
* [EF Core Blog][ef-blog]
* [Changes in this release](#notable-changes-in-500-rc-2)
* [Known issues](../5.0-known-issues.md)
* [Visual Studio Compatibility](#visual-studio-compatibility)
The .NET SDK 5.0.100 RC 2 includes .NET 5.0.0 preview Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET SDK 5.0.100 preview, the following command will show that you're running version `5.0.100-rc.2.20479.15` of the tools.
`dotnet --version`
Your feedback is important and appreciated. We've created an issue at [dotnet/core #XXXX](https://github.com/dotnet/core/issues/XXXX) for your questions and comments.
## Downloads
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core 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> |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup>
| Linux | [Snap and Package Manager](5.0.0-rc.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] | - | [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]<sup>1</sup> \| [ARM64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup> |
| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - |
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.
## Visual Studio Compatibility
.NET 5 RC 2 requires Visual Studio 2019 16.8 Preview 4 to take full advantage of all its features. .NET 5 RC 2 won't work properly in earlier versions of Visual Studio. Visit [Visual Studio Preview](https://visualstudio.microsoft.com/vs/preview/) to learn about VS previews.
## Docker Images
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://blogs.msdn.microsoft.com/dotnet/2018/06/18/staying-up-to-date-with-net-container-images/).
The following repos have been updated
* [microsoft/dotnet](https://hub.docker.com/r/microsoft/dotnet)
* [microsoft/dotnet-samples](https://hub.docker.com/r/microsoft/dotnet-samples)
## Notable Changes in 5.0.0 RC 2
Here is list of some of the additions and updates we're excited to bring in RC 2. See the [.NET][dotnet-blog] and [ASP.NET Core][aspnet-blog] blogs for additional details.
* ASP.NET Core: [bugs][aspnet_bugs] | [features][aspnet_features]
* EntityFramework Core: [bugs][ef_bugs] | [features][ef_features]
* .NET SDK [bugs][sdk_bugs]
For a roadmap and reference to ongoing efforts for .NET 5, see [.NET 5.0 Runtime Epics](https://github.com/dotnet/runtime/issues/37269) on GitHub.
[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/master/release-notes/5.0/preview/5.0.0-rc.2.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.0-rc.2-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.0-rc.2-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/announcing-net-5-0-rc-2/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-5-release-candidate-2/
[ef-blog]: https://devblogs.microsoft.com/dotnet/announcing-entity-framework-core-efcore-5-0-rc2/
[ef_bugs]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.0-rc2+is%3Aclosed+label%3Atype-bug+is%3Aclosed
[ef_features]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.0-rc2+is%3Aclosed+label%3Atype-enhancement+is%3Aclosed
[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.0-rc2+label%3ADone+label%3Abug+is%3Aclosed
[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.0-rc2+label%3ADone+label%3Aenhancement+is%3Aclosed
[runtime_bugs]: https://github.com/dotnet/runtime/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A5.0+label%3Abug+is%3Aclosed
[runtime_features]: https://github.com/dotnet/runtime/issues?q=is%3Aissue+milestone%3A5.0+label%3Aenhancement+is%3Aclosed
[sdk_bugs]: https://github.com/dotnet/sdk/issues?q=is%3Aissue+is%3Aclosed+milestone%3A5.0.1xx+is%3Aclosed
[//]: # ( Runtime 5.0.0-rc.2.20475.5)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/91f51f33-238d-46bd-9d28-4d07667c49fb/693e99d7e048f96ba1237b19a9c848a9/dotnet-runtime-5.0.0-rc.2.20475.5-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f765599d-3130-4825-acc5-92c717a06013/22fcf79920ad59b0cce1653a1171a80e/dotnet-runtime-5.0.0-rc.2.20475.5-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9f24d1a3-44ca-40f4-a129-aa71dc649f87/0eaaade7b6919a1f968e62a1f1cadfbe/dotnet-runtime-5.0.0-rc.2.20475.5-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ef5fba19-c738-45ba-ac4e-bea399bb1086/ae704db109eec283eee4ecb0cbab491c/dotnet-runtime-5.0.0-rc.2.20475.5-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3df8caad-2e73-4969-82d1-bd467054c552/06078adfbda938c50ab0dbca01f14ee4/dotnet-runtime-5.0.0-rc.2.20475.5-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/6e1df8ce-94d1-4fbf-b1fd-e7128696466f/0c0616999df20b12df4905075b00331c/dotnet-runtime-5.0.0-rc.2.20475.5-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/71387715-de5a-4cba-851b-77bdcda1b8df/26fce295fd4e8c28e6cf2c50ca3aeb51/dotnet-runtime-5.0.0-rc.2.20475.5-osx-x64.tar.gz
[dotnet-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/123fb0d6-4c3e-4639-8cfd-155e3a6b1710/1b4c779d06b348cb440966c4998a80c9/dotnet-runtime-5.0.0-rc.2.20475.5-win-arm64.exe
[dotnet-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/49591300-4023-4a5f-9cc7-7bf46ec4fdcf/ea4caf85b4c3fb9adda55142ec66f172/dotnet-runtime-5.0.0-rc.2.20475.5-win-arm64.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/054458a0-ecae-4d40-8fab-cac711ab3074/79964cee73907a8a015db5efcb01ac3c/dotnet-runtime-5.0.0-rc.2.20475.5-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/603925fc-b50c-4657-a5dd-d1652aa39e07/90e27c1418a58bf3226cf6bab7dec5fa/dotnet-runtime-5.0.0-rc.2.20475.5-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/bd93b8cf-5757-49e0-93a0-ab53a377e5ff/728097b8d85670f3f64bddea4338d0aa/dotnet-runtime-5.0.0-rc.2.20475.5-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/a3b8f8fb-6824-4dac-a6be-dd3f51c487a0/e7a0ae5890d7731349acb1a39c730790/dotnet-runtime-5.0.0-rc.2.20475.5-win-x86.zip
[//]: # ( WindowsDesktop 5.0.0-rc.2.20475.6)
[windowsdesktop-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/a9243817-2e2f-4a9d-999e-41496c7681b2/f27e936a6dab4ab25f38616dbe7369e7/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-arm64.exe
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/91fb8d46-77fc-4d2b-9762-31584f514470/0c7041dfe359e909743f35e2585af108/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/f125aff4-8055-4ddb-955c-8e65043c33d0/5cc82db36244efb98176d2b4bfed584b/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-x86.exe
[//]: # ( ASP 5.0.0-rc.2.20475.17)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d28b2c72-92f7-44fd-b673-f7c24275f513/694228a9541d905bda4417156a9617df/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/565b6b58-e67d-4572-b376-574634730f7d/46cd04ba8e137ad20fd0e97814350ff3/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/265f6f53-9338-4b5e-b42f-923ce1bed379/d2959c292c1332765338097fc63cf686/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/37b5258c-1758-4e5d-8f53-7431199c1575/f6186fe70e60469e66ca1b1bc9f59ffa/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/76b700c1-f51b-454d-8082-dd0f6db0b5eb/e128bda60e4a72fd2fd38b50b442623e/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4c32af7f-e685-4bd9-8792-e7cdd5f46a20/4bdad80338f3e4e4b65a04c5cd65cceb/aspnetcore-runtime-5.0.0-rc.2.20475.17-osx-x64.tar.gz
[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/36abe09b-b2ab-4986-9a45-87aa2391cdb3/07bd88dc9a1fc229faead6cf4eff92fe/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-arm64.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c29737de-627f-44be-ba9e-7292fb0fb97e/3476046d9f030ef6af11bcb7c4c51b7a/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/5208bb4a-0704-44c2-b8c1-95871f23f2c9/7c0c1fded168bb35ff4ddd5c3fb85736/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/f2306025-c7ad-45de-b351-0f04b30ac115/d75c53920c15dd23fc61d780722636ed/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c79c6f94-e14f-4bc1-bdc3-527efa969faf/7e385dd3f773f925c89a93708d28d309/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/03f2261a-01cc-4a78-8505-88ba0457ef29/1ff22faa58152bec84e636e719c28528/dotnet-hosting-5.0.0-rc.2.20475.17-win.exe
[//]: # ( SDK 5.0.100-rc.2.20479.15 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/068ebc6e-4a1d-45ec-a766-733a142f2839/e0da4c731c943ca2b267c15edb565108/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b416bc12-1478-4241-bc31-6fe68f8b73b6/582f018a97172f4975973390cf3f58e7/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1ea8c954-015d-4ded-a221-6bcc27f53d06/c76bcb58b9a1539dcba34c0cb6c5df9b/dotnet-sdk-5.0.100-rc.2.20479.15-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/69cb8922-7bb0-4d3a-aa92-8cb885fdd0a6/2fd4da9e026f661caf8db9c1602e7b2f/dotnet-sdk-5.0.100-rc.2.20479.15-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/414d772d-9d3f-471b-8cc4-3badae3fc6f1/4324fbb212b8801c4b81723535b7e5d5/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c0cafea0-6f76-407a-8c70-175c25e701d8/de9cc8367c469fa7eaaf5a7fb4aaf08d/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.tar.gz
[dotnet-sdk-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/0940a90a-35de-40b3-b693-115d0aafb926/f15339d5d33a00fc5801be83e31433b3/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.exe
[dotnet-sdk-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/a5a30a34-0e4b-441d-8a16-4c6c356f418d/7369a30d2a2f04f2dac00f802bde3ae0/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/3121f13a-c4a7-4a93-bf87-f66f6a8b182d/f85dafe84e9d57d9f9c5c4e6a29d04db/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/5fc1edb6-c952-4071-88a7-3ff13c63ab54/71324a7c46138fa35d7f5921207d7142/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/b39635bf-e274-4be0-b35c-a6f92875756c/805a41e904d14b70c3d64a416f5bf12f/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/4503f532-215f-4300-b3b4-eb3ccd3c6ff3/79045e530ca8368c02ba9a2b764be28a/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.zip

View file

@ -1,12 +1,746 @@
{
"channel-version": "5.0",
"latest-release": "5.0.0-preview.8",
"latest-release-date": "2020-08-25",
"latest-runtime": "5.0.0-preview.8.20407.11",
"latest-sdk": "5.0.100-preview.8.20417.9",
"support-phase": "preview",
"latest-release": "5.0.0-rc.2",
"latest-release-date": "2020-10-13",
"latest-runtime": "5.0.0-rc.2.20475.5",
"latest-sdk": "5.0.100-rc.2.20479.15",
"support-phase": "rc",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-10-13",
"release-version": "5.0.0-rc.2",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.0-rc.2.20475.5/5.0.0-rc.2.md",
"runtime": {
"version": "5.0.0-rc.2.20475.5",
"version-display": "5.0.0-rc.2",
"vs-version": "",
"vs-mac-version": "",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/91f51f33-238d-46bd-9d28-4d07667c49fb/693e99d7e048f96ba1237b19a9c848a9/dotnet-runtime-5.0.0-rc.2.20475.5-linux-arm.tar.gz",
"hash": "37b0f89157a748bca6c8d7a01f5e8d6438d60208e77b6734d4624ac3c1c29997aa28b7f01a86c5d6e1fb187ab3d61643a655cc6db6bb5cd01df3f6039e91103b"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f765599d-3130-4825-acc5-92c717a06013/22fcf79920ad59b0cce1653a1171a80e/dotnet-runtime-5.0.0-rc.2.20475.5-linux-arm64.tar.gz",
"hash": "0ea8c2461262f27da9ff83877c9f53ba4bc043d829df1978cfdc6158cc58be678fd84f60935a02ad245d70c6e8fff05bb025cfd35419b3d335291688114c0021"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9f24d1a3-44ca-40f4-a129-aa71dc649f87/0eaaade7b6919a1f968e62a1f1cadfbe/dotnet-runtime-5.0.0-rc.2.20475.5-linux-musl-arm64.tar.gz",
"hash": "015ed92c4a4766a9a2f0e2fd6d138be1a886d8ecef9b1765a4b3c24767d7326cb00cd3d4aabc04921d65827ce72bfbbf17097ebd2a7b3e3c12b9a8fc95970939"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ef5fba19-c738-45ba-ac4e-bea399bb1086/ae704db109eec283eee4ecb0cbab491c/dotnet-runtime-5.0.0-rc.2.20475.5-linux-musl-x64.tar.gz",
"hash": "2e4baec3c3746210cae4e920046ec6bede9caed1cdf30382295fd1b203bf08e6bee5bee0da3067f0317b31d5d836b6ce63b63fd163d599e71d71fc30f0ef37f1"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3df8caad-2e73-4969-82d1-bd467054c552/06078adfbda938c50ab0dbca01f14ee4/dotnet-runtime-5.0.0-rc.2.20475.5-linux-x64.tar.gz",
"hash": "945d35b5e375a722fba6ae2986ef70bf1940ea3ccfe16f5e2211250354e2585ca4211589e0d14c127675c46c0e66df28046ce8f820ef7a71c9712c19c3f4c13d"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6e1df8ce-94d1-4fbf-b1fd-e7128696466f/0c0616999df20b12df4905075b00331c/dotnet-runtime-5.0.0-rc.2.20475.5-osx-x64.pkg",
"hash": "cfe08de2fc74e6b429954c215147e412f2ca54b80c7276c987e05eb11fb608c355765477e3d6d2ee728d20151496e5485f3c431ea8d4ecbc7ba03c9aaaaf38d3"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/71387715-de5a-4cba-851b-77bdcda1b8df/26fce295fd4e8c28e6cf2c50ca3aeb51/dotnet-runtime-5.0.0-rc.2.20475.5-osx-x64.tar.gz",
"hash": "cd5ae708568ce888d2a846a61aeb07a7ddba3b4eb5325476465c07b6be3853f4f085d46136e43c8eed1591931c3409df3cd4c09b358efafffd7f0c9977d18d90"
},
{
"name": "dotnet-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/123fb0d6-4c3e-4639-8cfd-155e3a6b1710/1b4c779d06b348cb440966c4998a80c9/dotnet-runtime-5.0.0-rc.2.20475.5-win-arm64.exe",
"hash": "fda592d6d227ed6a823e731546e4ffad9fae198a32e0f70b0830dfc600a572d95902c94f2ee110ff59d4265c04972e977663582b04f4119261c490d4c40ebc3e"
},
{
"name": "dotnet-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/49591300-4023-4a5f-9cc7-7bf46ec4fdcf/ea4caf85b4c3fb9adda55142ec66f172/dotnet-runtime-5.0.0-rc.2.20475.5-win-arm64.zip",
"hash": "3c85c0269ff67374b4fb3e1bdc5cc8ef5b100b4bc440860dc9c279211fb14139c1660fe2f2abdb311107f86ac6196c487b53d78523143dbb900efa23c40b7873"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/054458a0-ecae-4d40-8fab-cac711ab3074/79964cee73907a8a015db5efcb01ac3c/dotnet-runtime-5.0.0-rc.2.20475.5-win-x64.exe",
"hash": "2949b61cd69261b736625a7e3772a153f1d6f9e0fac2a10527d39ca77dcee50cd52fa03dd06fd40bc961e3acbee7e4f6038bc222697ff95fd42ca89986a4d889"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/603925fc-b50c-4657-a5dd-d1652aa39e07/90e27c1418a58bf3226cf6bab7dec5fa/dotnet-runtime-5.0.0-rc.2.20475.5-win-x64.zip",
"hash": "c30f33faacf5c2672339a29337984b7dbf64ba989a19396f9bb1858e5dfc4ce758787cae3c08580f864f30c491721d5a22a6f54ebd89deed1135b44181f901fe"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/bd93b8cf-5757-49e0-93a0-ab53a377e5ff/728097b8d85670f3f64bddea4338d0aa/dotnet-runtime-5.0.0-rc.2.20475.5-win-x86.exe",
"hash": "fbe2633fadf447850db137bdbd8fd55efb2918314b3f74d1c677b2f096ef4fd2e112931d2b33822807071a55c1dc6ec4ef3f69f5f74c1f911f88db51d776e262"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/a3b8f8fb-6824-4dac-a6be-dd3f51c487a0/e7a0ae5890d7731349acb1a39c730790/dotnet-runtime-5.0.0-rc.2.20475.5-win-x86.zip",
"hash": "aefde8e640b85a414e4624f81359df451bb7581cbc76098503df8f2ba1795274e16dd6687001f00bf7bf3c8acf01ba206556e5610bfe53513c4b639f9e3416b4"
}
]
},
"sdk": {
"version": "5.0.100-rc.2.20479.15",
"version-display": "5.0.100-rc.2",
"runtime-version": "5.0.0-rc.2.20475.5",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.8, Preview 4)",
"vs-mac-support": "",
"csharp-version": "9.0-preview",
"fsharp-version": "5.0-preview",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/068ebc6e-4a1d-45ec-a766-733a142f2839/e0da4c731c943ca2b267c15edb565108/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm.tar.gz",
"hash": "22e97c15393a4f986563f5e8b031b49983eb55531170b86594d7caab819b41032393a9b3db4ee96cb88fae3971ba243bb64187606e3a00fc64d2e434d906a637"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b416bc12-1478-4241-bc31-6fe68f8b73b6/582f018a97172f4975973390cf3f58e7/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm64.tar.gz",
"hash": "1aab49b2c328c4de8c40e790df99aa327a3aeba5d904696fa151acbfb7b5620ebf3d1e2e9726895d92b6146295840ffe3f2fb7208a81c7b73d2c92c9fcf50dbf"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1ea8c954-015d-4ded-a221-6bcc27f53d06/c76bcb58b9a1539dcba34c0cb6c5df9b/dotnet-sdk-5.0.100-rc.2.20479.15-linux-musl-x64.tar.gz",
"hash": "1d44838a39810112e0c5b96ae8234e84f805ca4913888c18882ed7c0e291a7677672f593037a2dc94c6ad08c4d869394df72a4d42e0c668337df89327026aba1"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/69cb8922-7bb0-4d3a-aa92-8cb885fdd0a6/2fd4da9e026f661caf8db9c1602e7b2f/dotnet-sdk-5.0.100-rc.2.20479.15-linux-x64.tar.gz",
"hash": "e705043cdec53827695567eed021c76b100d77416f10cc18d4f5d02950f85bf9ccd7e2c22643f00a883e11b253fb8aa098e4dce008008a0796f913496f97e362"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/414d772d-9d3f-471b-8cc4-3badae3fc6f1/4324fbb212b8801c4b81723535b7e5d5/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.pkg",
"hash": "53aec8d6486dd9f903ac59b68e711dbfc5eb4ad0250496098e96cbb2dce2a08244b61114faf1feeca6e343dbd510c16438852abbb693cc5a5d4db026bf17b3f9"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c0cafea0-6f76-407a-8c70-175c25e701d8/de9cc8367c469fa7eaaf5a7fb4aaf08d/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.tar.gz",
"hash": "05a60dd57a0fc7a4d2cd517aff1c1685665009775a270e1e6ba2f632d24bd3439f026f4e287cbff4c22dd98f7713d8f34d785e3bbb73f6d0e530fd324b8c761d"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0940a90a-35de-40b3-b693-115d0aafb926/f15339d5d33a00fc5801be83e31433b3/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.exe",
"hash": "fca159e140de6786b7290383356671424e2c15efa7b89b82826cbcb58c499fd3292dcb61f47aac026f57f93bdcd902309681b9aa434f16c3309d80e10ce300d3"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a5a30a34-0e4b-441d-8a16-4c6c356f418d/7369a30d2a2f04f2dac00f802bde3ae0/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.zip",
"hash": "6d1488d2cc4f8bb2a935f5e0ff501bc21210c601d4ca0faac9dd603675b03cd71c20d15fea8ded88ac40b0ca0d3824a9097c98e05a3edebe53ba42b861efd9ee"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3121f13a-c4a7-4a93-bf87-f66f6a8b182d/f85dafe84e9d57d9f9c5c4e6a29d04db/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.exe",
"hash": "c9668250d1bd1017d1d847e380bd28eaa6b967cc952c1933e8978e9fbeaaf9b9edc24d48cb932296a8c1749999345b07d8167ab1430930732921c896ca2dc27f"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5fc1edb6-c952-4071-88a7-3ff13c63ab54/71324a7c46138fa35d7f5921207d7142/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.zip",
"hash": "49ea4f9e0fdc51bfd46b1269b84dd09f26be957c3a81c80203a0b0d521c8ec190d0d2d631a4e1899c83b604bf9a529698f19eccdf4aed3d0fd2f89102f6556e1"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/b39635bf-e274-4be0-b35c-a6f92875756c/805a41e904d14b70c3d64a416f5bf12f/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.exe",
"hash": "fd635f153c6bb4b1a4ed4839f50775dd3f4ec44dc6c3483b9640b1e2ae61c85051d52fcf774d815cb35260b35e11403ba7399520e6eda61442b64c16e4e9715b"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/4503f532-215f-4300-b3b4-eb3ccd3c6ff3/79045e530ca8368c02ba9a2b764be28a/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.zip",
"hash": "44d25f3c304b50dfabf03b21246432fee397ce51948675e0b66032e5d87d61820134cff353ef05125ececb91f04d0ed8b7b049936adfd7eb6cd975a259bc51cd"
}
]
},
"sdks": [
{
"version": "5.0.100-rc.2.20479.15",
"version-display": "5.0.100-rc.2",
"runtime-version": "5.0.0-rc.2.20475.5",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.8, Preview 4)",
"vs-mac-support": "",
"csharp-version": "9.0-preview",
"fsharp-version": "5.0-preview",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/068ebc6e-4a1d-45ec-a766-733a142f2839/e0da4c731c943ca2b267c15edb565108/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm.tar.gz",
"hash": "22e97c15393a4f986563f5e8b031b49983eb55531170b86594d7caab819b41032393a9b3db4ee96cb88fae3971ba243bb64187606e3a00fc64d2e434d906a637"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b416bc12-1478-4241-bc31-6fe68f8b73b6/582f018a97172f4975973390cf3f58e7/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm64.tar.gz",
"hash": "1aab49b2c328c4de8c40e790df99aa327a3aeba5d904696fa151acbfb7b5620ebf3d1e2e9726895d92b6146295840ffe3f2fb7208a81c7b73d2c92c9fcf50dbf"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1ea8c954-015d-4ded-a221-6bcc27f53d06/c76bcb58b9a1539dcba34c0cb6c5df9b/dotnet-sdk-5.0.100-rc.2.20479.15-linux-musl-x64.tar.gz",
"hash": "1d44838a39810112e0c5b96ae8234e84f805ca4913888c18882ed7c0e291a7677672f593037a2dc94c6ad08c4d869394df72a4d42e0c668337df89327026aba1"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/69cb8922-7bb0-4d3a-aa92-8cb885fdd0a6/2fd4da9e026f661caf8db9c1602e7b2f/dotnet-sdk-5.0.100-rc.2.20479.15-linux-x64.tar.gz",
"hash": "e705043cdec53827695567eed021c76b100d77416f10cc18d4f5d02950f85bf9ccd7e2c22643f00a883e11b253fb8aa098e4dce008008a0796f913496f97e362"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/414d772d-9d3f-471b-8cc4-3badae3fc6f1/4324fbb212b8801c4b81723535b7e5d5/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.pkg",
"hash": "53aec8d6486dd9f903ac59b68e711dbfc5eb4ad0250496098e96cbb2dce2a08244b61114faf1feeca6e343dbd510c16438852abbb693cc5a5d4db026bf17b3f9"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c0cafea0-6f76-407a-8c70-175c25e701d8/de9cc8367c469fa7eaaf5a7fb4aaf08d/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.tar.gz",
"hash": "05a60dd57a0fc7a4d2cd517aff1c1685665009775a270e1e6ba2f632d24bd3439f026f4e287cbff4c22dd98f7713d8f34d785e3bbb73f6d0e530fd324b8c761d"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0940a90a-35de-40b3-b693-115d0aafb926/f15339d5d33a00fc5801be83e31433b3/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.exe",
"hash": "fca159e140de6786b7290383356671424e2c15efa7b89b82826cbcb58c499fd3292dcb61f47aac026f57f93bdcd902309681b9aa434f16c3309d80e10ce300d3"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a5a30a34-0e4b-441d-8a16-4c6c356f418d/7369a30d2a2f04f2dac00f802bde3ae0/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.zip",
"hash": "6d1488d2cc4f8bb2a935f5e0ff501bc21210c601d4ca0faac9dd603675b03cd71c20d15fea8ded88ac40b0ca0d3824a9097c98e05a3edebe53ba42b861efd9ee"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3121f13a-c4a7-4a93-bf87-f66f6a8b182d/f85dafe84e9d57d9f9c5c4e6a29d04db/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.exe",
"hash": "c9668250d1bd1017d1d847e380bd28eaa6b967cc952c1933e8978e9fbeaaf9b9edc24d48cb932296a8c1749999345b07d8167ab1430930732921c896ca2dc27f"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5fc1edb6-c952-4071-88a7-3ff13c63ab54/71324a7c46138fa35d7f5921207d7142/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.zip",
"hash": "49ea4f9e0fdc51bfd46b1269b84dd09f26be957c3a81c80203a0b0d521c8ec190d0d2d631a4e1899c83b604bf9a529698f19eccdf4aed3d0fd2f89102f6556e1"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/b39635bf-e274-4be0-b35c-a6f92875756c/805a41e904d14b70c3d64a416f5bf12f/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.exe",
"hash": "fd635f153c6bb4b1a4ed4839f50775dd3f4ec44dc6c3483b9640b1e2ae61c85051d52fcf774d815cb35260b35e11403ba7399520e6eda61442b64c16e4e9715b"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/4503f532-215f-4300-b3b4-eb3ccd3c6ff3/79045e530ca8368c02ba9a2b764be28a/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.zip",
"hash": "44d25f3c304b50dfabf03b21246432fee397ce51948675e0b66032e5d87d61820134cff353ef05125ececb91f04d0ed8b7b049936adfd7eb6cd975a259bc51cd"
}
]
}
],
"aspnetcore-runtime": {
"version": "5.0.0-rc.2.20475.17",
"version-display": "5.0.0-rc.2",
"version-aspnetcoremodule": [
"15.0.20270.0"
],
"vs-version": "",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/d28b2c72-92f7-44fd-b673-f7c24275f513/694228a9541d905bda4417156a9617df/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-arm.tar.gz",
"hash": "4e5b0babd454c321c67844a08111f7fd0fd1b594e61ee4b90b76fe05a51abfc8e0989758cf2b7260469e878f1911da22fd731db66dc65e53bcb74e3f82e35cbb"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/565b6b58-e67d-4572-b376-574634730f7d/46cd04ba8e137ad20fd0e97814350ff3/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-arm64.tar.gz",
"hash": "e3989a514d38efb4635beb745fbe383d89f7043d32272cd7760347a8d662013e1e2fcec6fc8f84c41f3421593c1922730c21829a8dc3b3246277c14fd8454305"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/265f6f53-9338-4b5e-b42f-923ce1bed379/d2959c292c1332765338097fc63cf686/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-musl-arm64.tar.gz",
"hash": "5f169b7497baa523cf6f7d1e8605619dc90886d7a9d5672d6226d77a9d003af3827481317c30992a0781972f78de191472a31bf10f58cdc81ee95b0d2b710099"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/37b5258c-1758-4e5d-8f53-7431199c1575/f6186fe70e60469e66ca1b1bc9f59ffa/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-musl-x64.tar.gz",
"hash": "35e85d3e822317a96dbba0aa239fe05e4f85e77031e3ba0c1fbd2a0800898bdaf377b800ab2a02510d2c0e0e6c51da1659b5afa919ebd0540fea2e02a8d7fa92"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/76b700c1-f51b-454d-8082-dd0f6db0b5eb/e128bda60e4a72fd2fd38b50b442623e/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-x64.tar.gz",
"hash": "d60f0bd6218d00bb86eb0882fe0c823dbfca464d2647c01d0c8f128e9ca430c4d4fae47b3f961ac93115b0343300e58f8c81dec2f6dbe9f36accc5ea28d2cc7b"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4c32af7f-e685-4bd9-8792-e7cdd5f46a20/4bdad80338f3e4e4b65a04c5cd65cceb/aspnetcore-runtime-5.0.0-rc.2.20475.17-osx-x64.tar.gz",
"hash": "18860b6f3f7770373b3c95926a70021b94b785cb41d267e77e55c38e1a107aa7ade99b2d0df0e95c8e7cda552b2bb78cfd2b323eae9780af612a1329a4f4354d"
},
{
"name": "aspnetcore-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/36abe09b-b2ab-4986-9a45-87aa2391cdb3/07bd88dc9a1fc229faead6cf4eff92fe/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-arm64.zip",
"hash": "2a89545112a619d9becf621a00bcc5ae32e7ad58fa41414dfbcccab4b58aa4548cd200dfe7f54210cac7e2cb3b589365488fc09a8726ec7ef5fd4f799a833257"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c29737de-627f-44be-ba9e-7292fb0fb97e/3476046d9f030ef6af11bcb7c4c51b7a/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x64.exe",
"hash": "0fb4c3c92a034340393e8b8296351530a7329b1e7f71673242c4003df75fb47dcce35029a613aac7dcdbea3f6a6a99198731862f94381f8fcdbac5a784e90b8c"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5208bb4a-0704-44c2-b8c1-95871f23f2c9/7c0c1fded168bb35ff4ddd5c3fb85736/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x64.zip",
"hash": "0085b9fa0580a3e35e7bed3fbcce313750abed3acc62a2d9a295d4f2fa144434ef5b47e352d43586bb48fe356c4f3eb4eccb0edb8dd3e6f763dbf7e50963ea73"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/f2306025-c7ad-45de-b351-0f04b30ac115/d75c53920c15dd23fc61d780722636ed/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x86.exe",
"hash": "7db366209c25b544345d0c65e63118748a739a411ddaa4403a7f192fc667fa0c3c7ce0103f41853c607965bcc8db2246c89d6e6fb0ec64a9beb3d2c1e2a040e7"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/c79c6f94-e14f-4bc1-bdc3-527efa969faf/7e385dd3f773f925c89a93708d28d309/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x86.zip",
"hash": "503dc312b8c04472d18ac639351b9918f34bc27af968d88edff55c101103c2deccc622d9ddef5af504078e6af85c4b7de8dd83a799902f6726c37a6f3d6ab7a8"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/03f2261a-01cc-4a78-8505-88ba0457ef29/1ff22faa58152bec84e636e719c28528/dotnet-hosting-5.0.0-rc.2.20475.17-win.exe",
"hash": "49ac516fe6fa24bafcfb71be5fe8480d107c474a10bdd5d4da33c5d16e7e22bd42f9757f678ff8c681ccf82e579bcdda2edfd988a01e2c48940b21aaace86d6b",
"akams": "https://aka.ms/dotnetcore-5-0-windowshosting"
}
]
},
"windowsdesktop": {
"version": "5.0.0-rc.2.20475.6",
"version-display": "5.0.0-rc.2",
"files": [
{
"name": "windowsdesktop-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a9243817-2e2f-4a9d-999e-41496c7681b2/f27e936a6dab4ab25f38616dbe7369e7/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-arm64.exe",
"hash": "94c958e7f6d30c032b7b4469f826f3ad77efe2c44ad9cf6aa8edc99dcd7eb860d348001ce4490346284383995b0aef96b66faf31b44fca0b35814bd0e1aae98d"
},
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/91fb8d46-77fc-4d2b-9762-31584f514470/0c7041dfe359e909743f35e2585af108/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-x64.exe",
"hash": "e3f2c851a9793b11b3ce6c8454804111301ff2254268556c9b00610973b4580d2849e85cad91996a3dc98454f9cf63cee035f8c8da1cdbdcc3ee57b7222d3081"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/f125aff4-8055-4ddb-955c-8e65043c33d0/5cc82db36244efb98176d2b4bfed584b/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-x86.exe",
"hash": "9bba9c7fe5e76509df6f6afc985ae4cb5d40fac7338fa12dc56388777bdeef21aaed3f178168025ea56549e55392257f12ac0a1cd4fb13654dc60271f4973844"
}
]
}
},
{
"release-date": "2020-09-14",
"release-version": "5.0.0-rc.1",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-rc.1.md",
"runtime": {
"version": "5.0.0-rc.1.20451.14",
"version-display": "5.0.0-rc.1",
"vs-version": "",
"vs-mac-version": "",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/de043fe1-1a5b-4d29-878c-87a99efcca8d/8c928e7725179e4707975a13fc01d8ed/dotnet-runtime-5.0.0-rc.1.20451.14-linux-arm.tar.gz",
"hash": "5aab173d86f267f9a5b2ded5c9990c92c1f60ec512157390752f9f3ed5b64bdbd7ff9180db9398b09c2184bfb8ffb30fb1a54b8934fd81d11c15c53c1a06da7d"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/367623bd-affb-47ea-af65-466d6c002537/bae126bda0f016d1284402e73ab7d333/dotnet-runtime-5.0.0-rc.1.20451.14-linux-arm64.tar.gz",
"hash": "a03154f8a3e4a21685dc7f0d3d43bcd6bf7d590e67b2f232597cd360cd956261686c90cda0d871b4735fd2bdfee97b6e82828e41807091921c7cbee5f3720fd6"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/299d3d51-34fd-4a56-97f5-bc1b1e23c952/22ef5dc7fcb2093f28678192e38970f6/dotnet-runtime-5.0.0-rc.1.20451.14-linux-musl-arm64.tar.gz",
"hash": "81a1515131785746a92ccb5e592776b408f5c99c89d36828898efbd49b1fc88e56f77213d56b4f49fc69ab0eaa79931ff8f20c44b75be6ef71bf4281f49ac83f"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e61bcfc0-4874-4da7-9817-5fc538e2bddc/c7c43882804d9e46290629f2e433094a/dotnet-runtime-5.0.0-rc.1.20451.14-linux-musl-x64.tar.gz",
"hash": "a7a393d31e8cc27def0f74ee743de2cdec3f8f8ae27e542c4517815e83dae7f5715f806fb169e8675126023efffbbb28d46cedac2c727b2bd1f8419598d25716"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cac4993a-0f79-43c6-baf9-f688867a37bf/adf0935ca2082cd05d3f00adc04d1848/dotnet-runtime-5.0.0-rc.1.20451.14-linux-x64.tar.gz",
"hash": "c8f6c24029c2d3ef07ea1781a6aac4d51a46aeb33886091df038b76b49830272afe7ac97484e0372e2d3ce2e6c32ba842142f0d1194791922c08445d7ff4cc95"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/25bc26cc-515f-40b1-8d8e-a4e80be19bcd/f143b38c0c4e3fcfdaa2a10bff922409/dotnet-runtime-5.0.0-rc.1.20451.14-osx-x64.pkg",
"hash": "e67deaee44859432274fa71f4b7e99c884729f3e2fab89980f00ca7fb7d0ec1880e6d6ecdfcca29df575caa89540488395e77bd706ce85acace748cdfb6f251e"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/19a92536-8f11-4e76-8b66-1093944678f0/0c66d0d9559b252b81d665011b815b57/dotnet-runtime-5.0.0-rc.1.20451.14-osx-x64.tar.gz",
"hash": "c14a1e1e069a346fabf5a247a5b71b9bb5c4ea78c9ae81ae7bc0eed1bf17600d347cfb10c7208e2b05dfd7a7efb2dfe28497058b881758c95f27d863d90bba3a"
},
{
"name": "dotnet-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d5f01583-69a8-4077-aa86-50b11aece3da/a84a0a10fb1129c208e5da9d950204d7/dotnet-runtime-5.0.0-rc.1.20451.14-win-arm64.exe",
"hash": "2331ee31fe8d14fddf9fa2822b3959089944e57b3c8a5fee65472c2294f3b42c84d3b2a845b85b0c719ac9d6874d798327b62d6b2a2bea6540cd37efac9edc7b"
},
{
"name": "dotnet-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4d35ba16-337f-4ac3-9577-223bc4684fa6/c4e099b8f642a184f761c647c7b039ce/dotnet-runtime-5.0.0-rc.1.20451.14-win-arm64.zip",
"hash": "07dabeec549a7d18ccfc2b2ffab3f4d01427431822ff9ffd322824592c04094ce121613c560389efd546dae028c74c317986239572dcf31de653479f0110f7ff"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d35c675c-bc26-44c1-9c6f-f9d679a4c17f/e79d8bcb768e43b342a5020b56272038/dotnet-runtime-5.0.0-rc.1.20451.14-win-x64.exe",
"hash": "3ac337da864e1cde907484bb6ea26088ce9e1ce63fd3f0034e10f39337d5abf030a8bb2891c59b65695f1802aed3eb9c283ed5dad9e622ba98061e7e7f01ac1e"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d3423213-6348-4a57-b04b-5b68821ad58c/5e23fb7bf77de3239455a84f5ae1f41a/dotnet-runtime-5.0.0-rc.1.20451.14-win-x64.zip",
"hash": "7f21e60e173ef609b979550613a3d07ddf0541e59dcf2ac5f20270828142bb84c40ddeaae6177dd69888e8bc4c64642af5a8c3e3e7e037a79c526da2367cd180"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/ff211b3d-28fe-4ed7-8da9-5302eccb8405/1eebf8abc162734815d9634a1ef48da8/dotnet-runtime-5.0.0-rc.1.20451.14-win-x86.exe",
"hash": "487F80AD3E8F40950E744965507B4D2913CDA2CA03B0F7C4046410EF2CAFC0D199A17CE1DA66338B14ADEA4550DFEC5EA72A95BB3E2423099A6253AE7D0C2EFE"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/7d68f43e-bf7c-40f7-978f-d8c52a61c15b/0eb88cd6dce00eeb60879fdcc6d9a333/dotnet-runtime-5.0.0-rc.1.20451.14-win-x86.zip",
"hash": "8d1998a6222e5f570ddeda6bf1955c912b5dd591d69fae1d4cadcb0bf55cbf66958a4e727393bf5aa5a62d0a350cdbd9657fca48abbbd86b9b2dfe43d7740581"
}
]
},
"sdk": {
"version": "5.0.100-rc.1.20452.10",
"version-display": "5.0.100-rc.1",
"runtime-version": "5.0.0-rc.1.20451.14",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.8, Preview 3)",
"vs-mac-support": "",
"csharp-version": "9.0-preview",
"fsharp-version": "5.0-preview",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/e6456209-63c8-43fc-ba2d-11c43c9eacd5/3a12e6bae9ff57c1964eb83cb01604b6/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm.tar.gz",
"hash": "b0e6627497ced9d09fad9c48d266bd4cb94727dc254d8b4a79d445732669c14f5d9592a98c0452cb25ae5eb4f642373f544418e36873b33f0f3dd94f14003e26"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8f24c20f-cf36-44bb-9405-becc781e6a1c/b5d8a40cde8b4525ea65ac4e5c7250d5/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm64.tar.gz",
"hash": "2d04890c71e845d1eb08f5dfbbb9c93024d7a52fb1cc3fd50bd51bc6bd44e455c5c82abc8f04eef23bd012984ae5f86143c600ceb49c4c733935d95d5b68785f"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d30480ee-b9f5-4cfb-af6c-dfec2007c81d/51bdc68e5d97e8ca250118ae7865ba00/dotnet-sdk-5.0.100-rc.1.20452.10-linux-musl-x64.tar.gz",
"hash": "68481e880bf0d5a46eaa02d6498bbd3b98332afd275f15ef7925effb2b01ea8a89e73b268299eadcb3d64dc3df7095a1fded5d405fee96b9fb1b1b09a5883eb9"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e5536fae-e963-4fa6-a203-15604c7d703a/d0968c03feeeed41c2428854e13c0085/dotnet-sdk-5.0.100-rc.1.20452.10-linux-x64.tar.gz",
"hash": "d7e709dacc4bb188c2380060d24bfb5b791240dc33af8499fb4a31e1885a9377dad1d1ebc76847432ea67d5e4ac832a31679dc293e09fa6dade28f5fbbe4db9b"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/288c8d33-c0e0-4ab2-a9c0-7278f4e2490f/68c2c7c6e1d971d29caa12302e9352cf/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.pkg",
"hash": "44bd8fefaadd3142adf84ca7cf7e7fd34022a65c8f2ca5735794266ff68d9356bc3babbcdf90b8a36ee0b9aeb6ff9cd98791691bded646f07283cd20917981bd"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a9a2b64c-6488-46e7-a2dd-60910ea7819e/a0c754acda184512c3b192b7e7c94d73/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.tar.gz",
"hash": "06bb40273071f3dd1e84ebf58abc7798795d5f1ac298f24bf7109d1597fd52ff31bcbf2b81f86d91d37ae293678d07f8da0469d7cbd318d19a8d718b6629dcac"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e0c5dd3b-471b-4605-8eaf-a84e0ed60445/fdbd3487fd325c7ec8c71acab3021a38/dotnet-sdk-5.0.100-rc.1.20452.10-win-arm64.zip",
"hash": "4a0340155583fafc5f67a761c0858f646dbe1f14c5c43377d1f8e625ec1a182994e4d6f9d831020426ab4aa777d5d854e793c31d3ea0884b2117d9af59f5cf00"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fc1e9923-c4ea-41eb-bddb-165b684fdd4d/cdc2508795eef111e2feb35625e2e460/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.exe",
"hash": "5631F81D9F06D0199FD32F3C98467DBB4AE59F6160C3EFA6B2BF572509F4178BE50DB9557BA89BD234758F01CF38A26BEF85D24D03E36B0571C47A4394E2EE4F"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/945cfab1-8db2-40c5-ae45-6abd84327dfb/81c57003fc6c33f4fa6e7fb7709c21c4/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.zip",
"hash": "299c1b232ba5a8bdcfd3b890816a3aad806cc22551f6a17554fd3a0220b2168af011431c191e2e33f9dd8a50194cdc207db5dd70708bef45b560af9eb0b20f5e"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/ad6d35ac-f597-42d8-b0c4-48d685b94a33/bea99eb7c4e031191a9a88a50835a34b/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.exe",
"hash": "6e44fd1ecc91b568f625f85107157ee75d7d9db5a1489e7d18e40be9251ad27ca48345505bd4c0c58c41a9dc67e6b7c9d5bc5e0d46ad8d9ade14adf847c40dc7"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/2b91e9b6-d651-4ff2-9554-55620a11ba15/43b32bd93c88e864aab23e6b9a22ff5a/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.zip",
"hash": "1609b77e47c8237661d2861222a1bbbd9f13f886bf6bfc40fc48e546ba3502ffd2ceebc1a0e03b614c8d744db08bcbf9c7f835f51dbecdb5e862306e913ad66a"
}
]
},
"sdks": [
{
"version": "5.0.100-rc.1.20452.10",
"version-display": "5.0.100-rc.1",
"runtime-version": "5.0.0-rc.1.20451.14",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.8, Preview 3)",
"vs-mac-support": "",
"csharp-version": "9.0-preview",
"fsharp-version": "5.0-preview",
"vb-version": "15.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/e6456209-63c8-43fc-ba2d-11c43c9eacd5/3a12e6bae9ff57c1964eb83cb01604b6/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm.tar.gz",
"hash": "b0e6627497ced9d09fad9c48d266bd4cb94727dc254d8b4a79d445732669c14f5d9592a98c0452cb25ae5eb4f642373f544418e36873b33f0f3dd94f14003e26"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8f24c20f-cf36-44bb-9405-becc781e6a1c/b5d8a40cde8b4525ea65ac4e5c7250d5/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm64.tar.gz",
"hash": "2d04890c71e845d1eb08f5dfbbb9c93024d7a52fb1cc3fd50bd51bc6bd44e455c5c82abc8f04eef23bd012984ae5f86143c600ceb49c4c733935d95d5b68785f"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d30480ee-b9f5-4cfb-af6c-dfec2007c81d/51bdc68e5d97e8ca250118ae7865ba00/dotnet-sdk-5.0.100-rc.1.20452.10-linux-musl-x64.tar.gz",
"hash": "68481e880bf0d5a46eaa02d6498bbd3b98332afd275f15ef7925effb2b01ea8a89e73b268299eadcb3d64dc3df7095a1fded5d405fee96b9fb1b1b09a5883eb9"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e5536fae-e963-4fa6-a203-15604c7d703a/d0968c03feeeed41c2428854e13c0085/dotnet-sdk-5.0.100-rc.1.20452.10-linux-x64.tar.gz",
"hash": "d7e709dacc4bb188c2380060d24bfb5b791240dc33af8499fb4a31e1885a9377dad1d1ebc76847432ea67d5e4ac832a31679dc293e09fa6dade28f5fbbe4db9b"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/288c8d33-c0e0-4ab2-a9c0-7278f4e2490f/68c2c7c6e1d971d29caa12302e9352cf/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.pkg",
"hash": "44bd8fefaadd3142adf84ca7cf7e7fd34022a65c8f2ca5735794266ff68d9356bc3babbcdf90b8a36ee0b9aeb6ff9cd98791691bded646f07283cd20917981bd"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a9a2b64c-6488-46e7-a2dd-60910ea7819e/a0c754acda184512c3b192b7e7c94d73/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.tar.gz",
"hash": "06bb40273071f3dd1e84ebf58abc7798795d5f1ac298f24bf7109d1597fd52ff31bcbf2b81f86d91d37ae293678d07f8da0469d7cbd318d19a8d718b6629dcac"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e0c5dd3b-471b-4605-8eaf-a84e0ed60445/fdbd3487fd325c7ec8c71acab3021a38/dotnet-sdk-5.0.100-rc.1.20452.10-win-arm64.zip",
"hash": "4a0340155583fafc5f67a761c0858f646dbe1f14c5c43377d1f8e625ec1a182994e4d6f9d831020426ab4aa777d5d854e793c31d3ea0884b2117d9af59f5cf00"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fc1e9923-c4ea-41eb-bddb-165b684fdd4d/cdc2508795eef111e2feb35625e2e460/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.exe",
"hash": "5631F81D9F06D0199FD32F3C98467DBB4AE59F6160C3EFA6B2BF572509F4178BE50DB9557BA89BD234758F01CF38A26BEF85D24D03E36B0571C47A4394E2EE4F"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/945cfab1-8db2-40c5-ae45-6abd84327dfb/81c57003fc6c33f4fa6e7fb7709c21c4/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.zip",
"hash": "299c1b232ba5a8bdcfd3b890816a3aad806cc22551f6a17554fd3a0220b2168af011431c191e2e33f9dd8a50194cdc207db5dd70708bef45b560af9eb0b20f5e"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/ad6d35ac-f597-42d8-b0c4-48d685b94a33/bea99eb7c4e031191a9a88a50835a34b/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.exe",
"hash": "6e44fd1ecc91b568f625f85107157ee75d7d9db5a1489e7d18e40be9251ad27ca48345505bd4c0c58c41a9dc67e6b7c9d5bc5e0d46ad8d9ade14adf847c40dc7"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/2b91e9b6-d651-4ff2-9554-55620a11ba15/43b32bd93c88e864aab23e6b9a22ff5a/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.zip",
"hash": "1609b77e47c8237661d2861222a1bbbd9f13f886bf6bfc40fc48e546ba3502ffd2ceebc1a0e03b614c8d744db08bcbf9c7f835f51dbecdb5e862306e913ad66a"
}
]
}
],
"aspnetcore-runtime": {
"version": "5.0.0-rc.1.20451.17",
"version-display": "5.0.0-rc.1",
"version-aspnetcoremodule": [
"15.0.20246.0"
],
"vs-version": "",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/4f20eb4f-886c-44ba-aff4-c80356da3a53/e2933e72c3fdd65dd242f1260877a7f6/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-arm.tar.gz",
"hash": "dbbf0e8e9f96f8c9257d829534932416f13f54023d205b4b68eb04ed9a1a02985902631a43f2e45b063590a39b3a54f0f38b72fa66e023845b75614532a27343"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6e4ebb4a-9369-4140-a673-3d26e96662e7/75273b1fb5f1141e1b98008a0c1baaa5/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-arm64.tar.gz",
"hash": "0af8b2292f973ff6c2262f1d5bb2a7963a13bbd952528b931eaa1289b7c62625c896889b74885e55bea633f5f310617994c181a9a8f9cf2410a7de7b14ed80a3"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f3042e86-9bd0-43e4-9604-63566bb7c28e/7757edb49ee3a65b3cc9840c7ffe3c8c/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-musl-arm64.tar.gz",
"hash": "32a41290a049c891fcc52195be8f4e1f708a3a187ce5f3a811173a1b21433d8acadb7c69c926c4229a55f87598aac1e1ebc9ecf7a4a046c60273bdecbaad17d4"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cecfacdb-d286-46dd-8861-cd890a94b48c/1e3bb4a57ff116df1159073014a6b989/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-musl-x64.tar.gz",
"hash": "963ad9dbaa48e1224d53b7db3d8869de973e2d576368cb87ba95f3fafaa49cf36e1988eecaafe1e0efbd36f2cd3d9d171c39c5205ad93cdcdcf5a7c13860cef9"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/401a2d7e-e959-4517-93fb-94b9f3b43123/0eca99d7a04ecd47cc6ccfab78fcfdaa/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-x64.tar.gz",
"hash": "7fd22ab229dd8b17fb086334843ec6c5d2aa5e15bdbc7a101f14426b497edef6e209eba5b103fb54fa56e3d4077589c774cf7ef1796d0b7e209ab39d6688aaf5"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/38de39c3-20a6-4c57-b56a-8c1c08f59002/8dcdaa4f54c03fbee034471e01e685ed/aspnetcore-runtime-5.0.0-rc.1.20451.17-osx-x64.tar.gz",
"hash": "332c971b19aaca0fefdd3838d297edd4c4982f4a50ed80b87b2dcc0a16bd06d72b522118d0ea94739703c3d1d0692407c8ef1011caef6390718a701122ca35f3"
},
{
"name": "aspnetcore-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6c26756a-aee1-4db0-808f-9ea78618b3ed/e3a76f9beab8fc97791c43d038faee3f/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-arm64.zip",
"hash": "df9480a488b2be74331074397da1df02c4e2fcecc71e648263aef867114ddbdfd5dce9d2a6986a188b9faa5d6a266757f2edabc48808d4846fa3d9dfc9efbec6"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1b043251-286a-498a-ba8d-1cd402701d00/81184e7f41caace559f39e23c9ea4dc4/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x64.exe",
"hash": "6e86df24ac7db8741605c92eecd6e47a618bd41a40cfdd5cefa6f8f4d6b3fbf2a14f820d56cecbe1e0478b3c8dfa482847e88368280a0d3ca9eabe46a8d33d35"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d8a71a9f-cac2-4daf-b3d4-47a8c513ab8f/6b8e8040373ba16f2e42b80766429ed2/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x64.zip",
"hash": "f1c20497158c17541ffe07a4bc203e01ec14da71eaa70d69b184a2c10508ae5dfd2680d84f853c220a11c0ad35ddab6cca97b064e53aea43dd190138b95b57a6"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/20f32578-040b-447f-8467-745f206836cb/54cad1c83ab689e31405848a36d4cf4c/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x86.exe",
"hash": "d77506b22f2b035a1d54c5388a11f3e9723cab7a119510047b170519a9c7da4a993681e0c42c40ce036428e1dd6ad76f3e33ea33aeac44784af3a5994a749606"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/1d519a46-c43b-400d-ab16-c500897a4813/2b57eb77cbc34c98913242ceda883622/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x86.zip",
"hash": "e577dee573a25ed74380e2aa7e379623f46d6b6ca9cc1cbf45f32ef02a075b1363bb465444edb36e15f0ab54eec2444ddf155c6edb1962ecefde866f2052b8c1"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/014b34d9-d987-43de-9aef-d9498fe50457/c20af7937a2a870e05f371cc2fc29d23/dotnet-hosting-5.0.0-rc.1.20451.17-win.exe",
"hash": "db9850174d4780ea04319eafa219d916abb2ee124241ca756ce9a3937a966d1fbc14122629412973b73e6b5417288cc63dff7030fb7a00334e9b2ec607d70831",
"akams": "https://aka.ms/dotnetcore-5-0-windowshosting"
}
]
},
"windowsdesktop": {
"version": "5.0.0-rc.1.20452.2",
"version-display": "5.0.0-rc.1",
"files": [
{
"name": "windowsdesktop-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/24b79158-2f90-4b99-b44a-da60a66c5e0b/9e34e2ba20915ea5b556a5d99404c757/windowsdesktop-runtime-5.0.0-rc.1.20452.2-win-arm64.exe",
"hash": "ae7d4ba20c42de38d1205a7deae0cb9f659631437eebc0fdce51de9e19d2d8dd32d09190ca64a635892deb4944fd10fcac7b6913a296f52693930b42973ec642"
},
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/86b2d242-948a-43f1-8f6b-c2d13d6197f9/645e928a93bb4b8ecf3f2ee4611727eb/windowsdesktop-runtime-5.0.0-rc.1.20452.2-win-x64.exe",
"hash": "7814723aeada9ed2f0c5d1f5df3db2e8c34933d497e0d831fbedd5f58999d64d1d5300e370128e3a302f586538244aafe36646e8285a42bcad808a65e505d0be"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/0d419c8f-8826-4ade-817f-95f34fdcd1fe/900952b5e8ce2c15e975373948608065/windowsdesktop-runtime-5.0.0-rc.1.20452.2-win-x86.exe",
"hash": "e74e8da2cf4d5ead67d43ba2d4ba21828e2694ae70ccd8c0bc02372089e4955f3b6cf129378751691ae52c97116b90ab546227109fd5cff68f00433ade05f259"
}
]
}
},
{
"release-date": "2020-08-25",
"release-version": "5.0.0-preview.8",

View file

@ -6,9 +6,9 @@ The latest supported release is [.NET Core 3.1](3.1).
You can download the latest updates for .NET Core.
* [.NET 5.0 Preview 8](5.0/preview/5.0.0-preview.8.md)
* [.NET Core 3.1.8](3.1/3.1.8/3.1.8.md)
* [.NET Core 2.1.22](2.1/2.1.22/2.1.22.md)
* [.NET 5.0 RC 2](5.0/preview/5.0.0-rc.2.md)
* [.NET Core 3.1.9](3.1/3.1.9/3.1.9.md)
* [.NET Core 2.1.23](2.1/2.1.23/2.1.23.md)

View file

@ -2,22 +2,22 @@
"releases-index": [
{
"channel-version": "5.0",
"latest-release": "5.0.0-preview.8",
"latest-release-date": "2020-08-25",
"latest-release": "5.0.0-rc.2",
"latest-release-date": "2020-10-13",
"security": false,
"latest-runtime": "5.0.0-preview.8.20407.11",
"latest-sdk": "5.0.100-preview.8.20417.9",
"product": ".NET Core",
"support-phase": "preview",
"latest-runtime": "5.0.0-rc.2.20475.5",
"latest-sdk": "5.0.100-rc.2.20479.15",
"product": ".NET",
"support-phase": "rc",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json"
},
{
"channel-version": "3.1",
"latest-release": "3.1.8",
"latest-release-date": "2020-09-08",
"security": true,
"latest-runtime": "3.1.8",
"latest-sdk": "3.1.402",
"latest-release": "3.1.9",
"latest-release-date": "2020-10-13",
"security": false,
"latest-runtime": "3.1.9",
"latest-sdk": "3.1.403",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2022-12-03",
@ -37,11 +37,11 @@
},
{
"channel-version": "2.1",
"latest-release": "2.1.22",
"latest-release-date": "2020-09-08",
"security": true,
"latest-runtime": "2.1.22",
"latest-sdk": "2.1.810",
"latest-release": "2.1.23",
"latest-release-date": "2020-10-13",
"security": false,
"latest-runtime": "2.1.23",
"latest-sdk": "2.1.811",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2021-08-21",