Artifacts for .NET Core June release

This commit is contained in:
Rahul Bhandari 2020-06-03 17:58:08 -07:00
parent d03d10d722
commit 3cec2721ae
13 changed files with 2299 additions and 21 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.4](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.18](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.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 |
For previous versions, [see here](https://dotnet.microsoft.com/platform/support/policy/dotnet-core).

View file

@ -0,0 +1,99 @@
# .NET Core 2.1.19
.NET Core 2.1.19 comprises:
* .NET Core Runtime 2.1.19
* ASP.NET Core 2.1.19
* .NET Core SDK 2.1.515
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.19/2.1.19.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 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-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 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-2.1.19-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.19/2.1.19.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://docs.microsoft.com/en-us/dotnet/core/install/
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-june-2020/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/988d236a-30bf-4e96-8063-665d27c922c9/b793025960eaf182d8f32e723ad9b47a/dotnet-hosting-2.1.19-win.exe

View file

@ -0,0 +1,236 @@
# .NET Core 2.1.19 Update - June 9, 2020
[.NET Core 2.1.19](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.19, ASP.NET Core 2.1.19 and the .NET Core SDK.
* [Blog Post][dotnet-blog]
* [Downloads](#downloads)
* [Changes in this release](#changes-in-2119)
* [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 installations steps below][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 table below to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.0 | [2.1.612](2.1.612-download.md) |
| Windows | Visual Studio 2017 | [2.1.515](#downloads) |
| MacOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/en-us/visualstudio/mac/net-core-support) |
Note: This is not a security release hence this update will not be immediately available through Visual Studio. However, this is expected to show up in Visual Studio's March 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.19 is being deployed to Azure App Services and the deployment is expected to complete later in June 2020.
## .NET Core Lifecycle News
Alpine 3.12 and Centos 8 have been added as [supported OS](../2.1-supported-os.md) with this update of .NET Core 2.1.
## Changes in 2.1.19
.NET Core 2.1.19 release carries a security fix.
### [CVE-2020-1108: .NET Core Denial of Service Vulnerability](https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/CVE-2020-1108)
To comprehensively address CVE-2020-1108, Microsoft has released updates for .NET Core 2.1 and .NET Core 3.1. Customers who use any of these versions of .NET Core should install the latest version of .NET Core. See the [Release Notes](https://github.com/dotnet/announcements/issues/156) for the latest version numbers and instructions for updating .NET Core.
Microsoft is aware of a denial of service vulnerability which exists when .NET Core improperly handles web requests. An attacker who successfully exploited this vulnerability could cause a denial of service against a .NET Core web application. The vulnerability can be exploited remotely, without authentication. 
A remote unauthenticated attacker could exploit this vulnerability by issuing specially crafted requests to the .NET Core application. The update addresses the vulnerability by correcting how the .NET Core web application handles web requests. 
## Packages updated in this release:
Package name | Version
:----------- | :------------------
microsoft.aspnetcore.all | 2.1.19.nupkg
microsoft.aspnetcore.app | 2.1.19.nupkg
microsoft.dotnet.web.client.itemtemplates | 2.1.19.nupkg
microsoft.dotnet.web.itemtemplates | 2.1.19.nupkg
microsoft.dotnet.web.projecttemplates.2.1 | 2.1.19.nupkg
microsoft.dotnet.web.spa.projecttemplates.2.1 | 2.1.19.nupkg
microsoft.netcore.app | 2.1.19.nupkg
microsoft.netcore.dotnetapphost | 2.1.19.nupkg
microsoft.netcore.dotnethost | 2.1.19.nupkg
microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.linux-arm.microsoft.netcore.app | 2.1.19.nupkg
runtime.linux-arm.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.linux-arm.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.linux-arm.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.linux-arm.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.linux-arm64.microsoft.netcore.app | 2.1.19.nupkg
runtime.linux-arm64.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.linux-arm64.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.linux-arm64.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.linux-arm64.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.linux-musl-x64.microsoft.netcore.app | 2.1.19.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.linux-musl-x64.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.linux-x64.microsoft.netcore.app | 2.1.19.nupkg
runtime.linux-x64.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.linux-x64.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.linux-x64.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.linux-x64.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.osx-x64.microsoft.netcore.app | 2.1.19.nupkg
runtime.osx-x64.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.osx-x64.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.osx-x64.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.osx-x64.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.rhel.6-x64.microsoft.netcore.app | 2.1.19.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.rhel.6-x64.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.win-arm.microsoft.netcore.app | 2.1.19.nupkg
runtime.win-arm.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.win-arm.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.win-arm.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.win-arm.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.win-arm64.microsoft.netcore.app | 2.1.19.nupkg
runtime.win-arm64.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.win-arm64.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.win-arm64.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.win-arm64.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.win-x64.microsoft.netcore.app | 2.1.19.nupkg
runtime.win-x64.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.win-x64.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.win-x64.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.win-x64.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
runtime.win-x86.microsoft.netcore.app | 2.1.19.nupkg
runtime.win-x86.microsoft.netcore.dotnetapphost | 2.1.19.nupkg
runtime.win-x86.microsoft.netcore.dotnethost | 2.1.19.nupkg
runtime.win-x86.microsoft.netcore.dotnethostpolicy | 2.1.19.nupkg
runtime.win-x86.microsoft.netcore.dotnethostresolver | 2.1.19.nupkg
vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.19-servicing-28921-03.nupkg
vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.19-servicing-28922-02.nupkg
vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.19-servicing-28922-05.nupkg
vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.19-servicing-28924-01.nupkg
vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.19-servicing-28926-01.nupkg
vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.19-servicing-28928-01.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.19-servicing-28921-03.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.19-servicing-28922-02.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.19-servicing-28922-04.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.19-servicing-28922-05.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.19-servicing-28924-01.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.19-servicing-28926-01.nupkg
vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.19-servicing-28928-01.nupkg
vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.19-servicing-28921-03.nupkg
vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.19-servicing-28922-02.nupkg
vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.19-servicing-28922-05.nupkg
vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.19-servicing-28924-01.nupkg
vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.19-servicing-28926-01.nupkg
vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.19-servicing-28928-01.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.19-servicing-28921-03.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.19-servicing-28922-02.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.19-servicing-28922-04.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.19-servicing-28922-05.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.19-servicing-28924-01.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.19-servicing-28926-01.nupkg
vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.19-servicing-28928-01.nupkg
vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.19-servicing-28921-03.nupkg
vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.19-servicing-28922-02.nupkg
vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.19-servicing-28922-05.nupkg
vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.19-servicing-28924-01.nupkg
vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.19-servicing-28926-01.nupkg
vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.19-servicing-28928-01.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.19-servicing-28921-03.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.19-servicing-28922-02.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.19-servicing-28922-04.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.19-servicing-28922-05.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.19-servicing-28924-01.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.19-servicing-28926-01.nupkg
vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.19-servicing-28928-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.19/2.1.19.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-june-2020/
[//]: # ( Runtime 2.1.19)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cbe38aa4-087c-4daf-989d-f589054ca80b/871416c0056912e202d889c795c048c7/dotnet-runtime-2.1.19-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9ac2d7d3-c431-4859-af9b-87f1325a65ef/3928845f1187f848835d192afe27ec43/dotnet-runtime-2.1.19-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c26ab2e7-a54a-4231-b11a-59ce1475a894/f5f9153122571f6161d2e348051417ce/dotnet-runtime-2.1.19-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/64f26bd4-a0d0-47c3-87e6-2ba75d42b0a6/f9789f3f1f3ddddf385a1393e5b09989/dotnet-runtime-2.1.19-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/430a5c87-567d-4414-9ec0-6ace50e9750d/9092d51c5b75c2a76769c50bce349b51/dotnet-runtime-2.1.19-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f5b5af04-339c-4e01-993e-b2bb6b80ad80/46b1a332897568436618df89617ad9d0/dotnet-runtime-2.1.19-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5ddb5b56-921c-45d9-a355-1c542d553f09/7ccc1bf0c0779ae28b356f1299a39729/dotnet-runtime-2.1.19-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/f60b43e8-01ff-4f47-bdc0-3b5a8ddd3f0d/d3e8991c3e88b964e1719138e9edb8a8/dotnet-runtime-2.1.19-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7efea5a3-1365-48e1-8946-6ca6851f3952/f7d545ae430b9d83e4ebc9247a17b096/dotnet-runtime-2.1.19-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d1b9def4-0d12-446e-a0e4-88cb14accfa8/0f8e8c3a8100b6559cff0267549153ff/dotnet-runtime-2.1.19-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d0fbbf54-b844-4022-93f0-2ffaa93354b2/14f2dcd822f352331eaa60186e15194a/dotnet-runtime-2.1.19-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/387741ae-3e13-4e00-98be-359ec73c41f5/da250a40fbee22c12985caff4dccb328/dotnet-runtime-2.1.19-win-x86.zip
[//]: # ( WindowsDesktop )
[//]: # ( ASP 2.1.19)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e8cd01e-9b3d-4e69-837d-f8d558fb1a9f/e1c52cf207aee58ae4aff32d09ecfe05/aspnetcore-runtime-2.1.19-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e14036b9-60a8-4e1e-93c0-2649e65a9ece/f1e5d157c615420f4311d2d90b71a762/aspnetcore-runtime-2.1.19-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/abf8cad9-fe36-4bb6-9cdb-926a50bf63c6/5dc2f4e3e133ef073f12340d4fd6e943/aspnetcore-runtime-2.1.19-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/22ef858a-7c3b-4985-aa3b-609d118af67e/8eb85303e42bc099bc4b3b5abf890e76/aspnetcore-runtime-2.1.19-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/04953eff-44d5-45e6-ab12-95d1a9a1e88e/60fddf880eb5d4952d5a1358b566d8ab/aspnetcore-runtime-2.1.19-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/6bafbf91-d105-40ba-9f05-99b1bbd8b789/548b30b88e44fd4995ce0585ca9037fd/aspnetcore-runtime-2.1.19-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/032fa388-eea5-46d3-bbff-a27d6c5d6034/535c7f37640d98c56180b19152182c03/aspnetcore-runtime-2.1.19-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/40dfe80d-b50f-4c80-92e2-11af72075f3c/4a998070648613e7f842abb49fd27f87/aspnetcore-runtime-2.1.19-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/988d236a-30bf-4e96-8063-665d27c922c9/b793025960eaf182d8f32e723ad9b47a/dotnet-hosting-2.1.19-win.exe
[//]: # ( SDK 2.1.515 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0e29c1d2-8870-4faf-bae2-3b6bfc9235eb/462607fe7cd52587f3294368f0ce2296/dotnet-sdk-2.1.515-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c07f8224-d331-402c-9bb0-d2dbf77779f6/ddfebdecefbdfbb4e42d9618f7e05c05/dotnet-sdk-2.1.515-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/43483387-7937-49fa-8ae8-09da1b9008d3/0ff842912b90dc0b6362960ca0911ab9/dotnet-sdk-2.1.515-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/57e4a4f9-6da0-445d-a085-8f4406b5e79d/e640a084deff62b3ca3b7c43c8f53892/dotnet-sdk-2.1.515-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/7f180c25-195e-4919-89cf-4cdf9bc2c47a/e2c953588d71a9e2e706a380b87146ae/dotnet-sdk-2.1.515-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/921e00f2-367b-49cc-ae62-450e3854c743/a6d9316fdcfe45f8c0f0ce0b4bb2a02b/dotnet-sdk-2.1.515-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e9999ec1-46f0-4308-bb05-98ea7118c4a4/2be91074618d9bf7da9f44edd22d6779/dotnet-sdk-2.1.515-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d117c700-66e0-4793-91bb-f372a15b3165/250eecb26eede3e29f4f98faccb3094a/dotnet-sdk-2.1.515-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/7a39ca0e-2dfe-475d-98ae-00836307f0aa/203d1fbfa1d6f57d2fb6f5e73d056a2c/dotnet-sdk-2.1.515-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/1d45bd0c-5ed7-429e-a3f4-436180550da2/6c814cb573f4ccc8df999d4fb158837a/dotnet-sdk-2.1.515-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/40fee765-b69e-47f8-b824-4d358f7c1057/0fbcad2930eb0c64f9adabd363a1398e/dotnet-sdk-2.1.515-win-x86.zip
[//]: # ( Symbols )

View file

@ -0,0 +1,152 @@
# .NET Core 2.1.612
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 2.1.612
* .NET Core Runtime 2.1.19
* ASP.NET Core 2.1.19
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.19/2.1.19.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 installations steps below][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 table below to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.0 | [2.1.612](#downloads) |
| Windows | Visual Studio 2017 | [2.1.515](2.1.19.md) |
| MacOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/en-us/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 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 incude 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 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-2.1.19-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.19/2.1.19.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://docs.microsoft.com/en-us/dotnet/core/install/
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/
[//]: # ( Runtime 2.1.19)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cbe38aa4-087c-4daf-989d-f589054ca80b/871416c0056912e202d889c795c048c7/dotnet-runtime-2.1.19-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9ac2d7d3-c431-4859-af9b-87f1325a65ef/3928845f1187f848835d192afe27ec43/dotnet-runtime-2.1.19-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c26ab2e7-a54a-4231-b11a-59ce1475a894/f5f9153122571f6161d2e348051417ce/dotnet-runtime-2.1.19-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/64f26bd4-a0d0-47c3-87e6-2ba75d42b0a6/f9789f3f1f3ddddf385a1393e5b09989/dotnet-runtime-2.1.19-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/430a5c87-567d-4414-9ec0-6ace50e9750d/9092d51c5b75c2a76769c50bce349b51/dotnet-runtime-2.1.19-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f5b5af04-339c-4e01-993e-b2bb6b80ad80/46b1a332897568436618df89617ad9d0/dotnet-runtime-2.1.19-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5ddb5b56-921c-45d9-a355-1c542d553f09/7ccc1bf0c0779ae28b356f1299a39729/dotnet-runtime-2.1.19-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/f60b43e8-01ff-4f47-bdc0-3b5a8ddd3f0d/d3e8991c3e88b964e1719138e9edb8a8/dotnet-runtime-2.1.19-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7efea5a3-1365-48e1-8946-6ca6851f3952/f7d545ae430b9d83e4ebc9247a17b096/dotnet-runtime-2.1.19-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d1b9def4-0d12-446e-a0e4-88cb14accfa8/0f8e8c3a8100b6559cff0267549153ff/dotnet-runtime-2.1.19-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d0fbbf54-b844-4022-93f0-2ffaa93354b2/14f2dcd822f352331eaa60186e15194a/dotnet-runtime-2.1.19-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/387741ae-3e13-4e00-98be-359ec73c41f5/da250a40fbee22c12985caff4dccb328/dotnet-runtime-2.1.19-win-x86.zip
[//]: # ( WindowsDesktop )
[//]: # ( ASP 2.1.19)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e8cd01e-9b3d-4e69-837d-f8d558fb1a9f/e1c52cf207aee58ae4aff32d09ecfe05/aspnetcore-runtime-2.1.19-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e14036b9-60a8-4e1e-93c0-2649e65a9ece/f1e5d157c615420f4311d2d90b71a762/aspnetcore-runtime-2.1.19-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/abf8cad9-fe36-4bb6-9cdb-926a50bf63c6/5dc2f4e3e133ef073f12340d4fd6e943/aspnetcore-runtime-2.1.19-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/22ef858a-7c3b-4985-aa3b-609d118af67e/8eb85303e42bc099bc4b3b5abf890e76/aspnetcore-runtime-2.1.19-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/04953eff-44d5-45e6-ab12-95d1a9a1e88e/60fddf880eb5d4952d5a1358b566d8ab/aspnetcore-runtime-2.1.19-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/6bafbf91-d105-40ba-9f05-99b1bbd8b789/548b30b88e44fd4995ce0585ca9037fd/aspnetcore-runtime-2.1.19-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/032fa388-eea5-46d3-bbff-a27d6c5d6034/535c7f37640d98c56180b19152182c03/aspnetcore-runtime-2.1.19-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/40dfe80d-b50f-4c80-92e2-11af72075f3c/4a998070648613e7f842abb49fd27f87/aspnetcore-runtime-2.1.19-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/988d236a-30bf-4e96-8063-665d27c922c9/b793025960eaf182d8f32e723ad9b47a/dotnet-hosting-2.1.19-win.exe
[//]: # ( SDK 2.1.612 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c769a2d2-33a1-4d8c-822b-ca55fc4e8fe6/3f88dac9c4fcd37ecc6578a192037e93/dotnet-sdk-2.1.612-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b0dc8c1d-0a92-4dd9-b8d5-90cbdf85c90f/f2f760564b4b8ad70d81273c9970f5f0/dotnet-sdk-2.1.612-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/39b0a3c5-75f4-4caf-b852-b139b317a595/a2f985c75d65a7cf817b2dc1f145f61d/dotnet-sdk-2.1.612-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/688a4599-ab45-402a-a567-0a0a11fe4045/bff9d474e867dcbe7871d78074b19f01/dotnet-sdk-2.1.612-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/74e06270-068a-41fc-aa79-560c1eab2ffd/69fe346d936489d8f367018d23cb491a/dotnet-sdk-2.1.612-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/abe4ef60-7a32-443e-af2b-defcd02fc4ca/65f77d41ca09fe0c6e430ac9d3340883/dotnet-sdk-2.1.612-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/55305101-1ab3-4225-a498-843942069ca0/b3e08e52326b60a9aac2f5f896603835/dotnet-sdk-2.1.612-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/8a097690-f50f-41db-84c5-1cc5eb602e83/c980983fec59403bf78cba7892b748e2/dotnet-sdk-2.1.612-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/22773401-a234-4e1e-90eb-83635ab2a416/139d4ef5d4281b467faeed4782e6a3c4/dotnet-sdk-2.1.612-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/b5ace7ae-b57e-402c-9000-faecb3f528d1/3742e5afb8d793cfb9c85e0a806a54b9/dotnet-sdk-2.1.612-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/f946405d-47ff-4f61-bdc2-4272f2c1f480/c11ed0eddf2be6be72102be345876910/dotnet-sdk-2.1.612-win-x86.zip
[//]: # ( Symbols )

View file

@ -0,0 +1,168 @@
# .NET Core 2.1.807
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 2.1.807
* .NET Core Runtime 2.1.19
* ASP.NET Core 2.1.19
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.19/2.1.19.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 installations steps below][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 table below to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.0 | [2.1.612](2.1.612-download.md) |
| Windows | Visual Studio 2017 | [2.1.515](2.1.19.md) |
| MacOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/en-us/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 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 incude 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 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-2.1.19-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.19/2.1.19.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.19-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://docs.microsoft.com/en-us/dotnet/core/install/
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/
[//]: # ( Runtime 2.1.19)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cbe38aa4-087c-4daf-989d-f589054ca80b/871416c0056912e202d889c795c048c7/dotnet-runtime-2.1.19-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9ac2d7d3-c431-4859-af9b-87f1325a65ef/3928845f1187f848835d192afe27ec43/dotnet-runtime-2.1.19-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c26ab2e7-a54a-4231-b11a-59ce1475a894/f5f9153122571f6161d2e348051417ce/dotnet-runtime-2.1.19-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/64f26bd4-a0d0-47c3-87e6-2ba75d42b0a6/f9789f3f1f3ddddf385a1393e5b09989/dotnet-runtime-2.1.19-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/430a5c87-567d-4414-9ec0-6ace50e9750d/9092d51c5b75c2a76769c50bce349b51/dotnet-runtime-2.1.19-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f5b5af04-339c-4e01-993e-b2bb6b80ad80/46b1a332897568436618df89617ad9d0/dotnet-runtime-2.1.19-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5ddb5b56-921c-45d9-a355-1c542d553f09/7ccc1bf0c0779ae28b356f1299a39729/dotnet-runtime-2.1.19-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/f60b43e8-01ff-4f47-bdc0-3b5a8ddd3f0d/d3e8991c3e88b964e1719138e9edb8a8/dotnet-runtime-2.1.19-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7efea5a3-1365-48e1-8946-6ca6851f3952/f7d545ae430b9d83e4ebc9247a17b096/dotnet-runtime-2.1.19-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d1b9def4-0d12-446e-a0e4-88cb14accfa8/0f8e8c3a8100b6559cff0267549153ff/dotnet-runtime-2.1.19-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d0fbbf54-b844-4022-93f0-2ffaa93354b2/14f2dcd822f352331eaa60186e15194a/dotnet-runtime-2.1.19-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/387741ae-3e13-4e00-98be-359ec73c41f5/da250a40fbee22c12985caff4dccb328/dotnet-runtime-2.1.19-win-x86.zip
[//]: # ( WindowsDesktop )
[//]: # ( ASP 2.1.19)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e8cd01e-9b3d-4e69-837d-f8d558fb1a9f/e1c52cf207aee58ae4aff32d09ecfe05/aspnetcore-runtime-2.1.19-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e14036b9-60a8-4e1e-93c0-2649e65a9ece/f1e5d157c615420f4311d2d90b71a762/aspnetcore-runtime-2.1.19-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/abf8cad9-fe36-4bb6-9cdb-926a50bf63c6/5dc2f4e3e133ef073f12340d4fd6e943/aspnetcore-runtime-2.1.19-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/22ef858a-7c3b-4985-aa3b-609d118af67e/8eb85303e42bc099bc4b3b5abf890e76/aspnetcore-runtime-2.1.19-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/04953eff-44d5-45e6-ab12-95d1a9a1e88e/60fddf880eb5d4952d5a1358b566d8ab/aspnetcore-runtime-2.1.19-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/6bafbf91-d105-40ba-9f05-99b1bbd8b789/548b30b88e44fd4995ce0585ca9037fd/aspnetcore-runtime-2.1.19-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/032fa388-eea5-46d3-bbff-a27d6c5d6034/535c7f37640d98c56180b19152182c03/aspnetcore-runtime-2.1.19-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/40dfe80d-b50f-4c80-92e2-11af72075f3c/4a998070648613e7f842abb49fd27f87/aspnetcore-runtime-2.1.19-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/988d236a-30bf-4e96-8063-665d27c922c9/b793025960eaf182d8f32e723ad9b47a/dotnet-hosting-2.1.19-win.exe
[//]: # ( SDK 2.1.807 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5ebe60c2-b70a-4783-aea6-255387861b90/ae174e7ec848b83e7fe381a033e80b00/dotnet-sdk-2.1.807-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d378f459-514a-48d0-98ee-7b332049a495/d49fc6a5b71e21d1370de307ccf8b802/dotnet-sdk-2.1.807-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/824dbfec-85c6-4e2a-aec8-1838897d8da4/38f3191b8cabe79ca017c8fc18b0ee0e/dotnet-sdk-2.1.807-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8f959005-4742-44c0-8b30-17d394c0b954/348d5acbfe2a9879e39529be18b29f2d/dotnet-sdk-2.1.807-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/32139382-56dc-48a1-87ce-4422ec44c802/33b6bbf2678978d5d697107b6a9fcbfd/dotnet-sdk-2.1.807-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/abdbdd06-1cd4-4aae-8d0f-5a13aee881ec/837a60e4bb15d0cbb1ba9c0527dd2a84/dotnet-sdk-2.1.807-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0c2a3a9c-3013-41a9-980f-97f551993e75/a722fca7fd6713cb2f73be6c56e1a135/dotnet-sdk-2.1.807-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/805ff430-5116-49bb-95ff-2d0a61f11a77/f35ac0fb1d3171f6c7bfbee05efc84d2/dotnet-sdk-2.1.807-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/16370ec0-8187-4bcd-b7ab-d720c68062d3/c0df46b369c6501c2760b1cd88c79ea0/dotnet-sdk-2.1.807-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/36318b25-e47c-4947-89e9-1963ac8c20a3/c25eb4359bff06d42c65eadcfab0248b/dotnet-sdk-2.1.807-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/2857a4f6-0f24-4825-8569-896ed8bb3d87/af57a8128e69bdf3668eebf39c0c42a5/dotnet-sdk-2.1.807-win-x86.zip
[//]: # ( Symbols )

View file

@ -4,7 +4,8 @@ The following .NET Core 2.1 releases have been shipped. You must be on the lates
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/03/24 | [2.1.18](2.1.18/2.1.18.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/06/09 | [2.1.19](2.1.19/2.1.19.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/05/12 | [2.1.18](2.1.18/2.1.18.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/03/24 | [2.1.17](2.1.17/2.1.17.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/02/18 | [2.1.16](2.1.16/2.1.16.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2020/01/14 | [2.1.15](2.1.15/2.1.15.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.18",
"latest-release-date": "2020-05-12",
"latest-runtime": "2.1.18",
"latest-sdk": "2.1.806",
"latest-release": "2.1.19",
"latest-release-date": "2020-06-09",
"latest-runtime": "2.1.19",
"latest-sdk": "2.1.807",
"support-phase": "lts",
"eol-date": "2021-08-21",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-06-09",
"release-version": "2.1.19",
"security": true,
"cve-list": [
{
"cve-id": "CVE-2020-1108",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1108"
}
],
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.19/2.1.19.md",
"runtime": {
"version": "2.1.19",
"version-display": "2.1.19",
"vs-version": "15.9.24 16.0.15 16.4.10 16.6.2",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/cbe38aa4-087c-4daf-989d-f589054ca80b/871416c0056912e202d889c795c048c7/dotnet-runtime-2.1.19-linux-arm.tar.gz",
"hash": "c674da1a311cc413a217d081cf8a69c79c5e84cf8057a3953e69ec80655840dd08332462a3a89010e094e1b62de737c95c07a3978a7f8aee6bd6e1c73f0928ec"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9ac2d7d3-c431-4859-af9b-87f1325a65ef/3928845f1187f848835d192afe27ec43/dotnet-runtime-2.1.19-linux-arm64.tar.gz",
"hash": "f6d70a3a43d2c8194098626108e13f415ab078d676b979511cbaebc388a471e3140f69ba7d312deeb951f57f7091b0e377870d7155cf643012a7541e0af0d918"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c26ab2e7-a54a-4231-b11a-59ce1475a894/f5f9153122571f6161d2e348051417ce/dotnet-runtime-2.1.19-linux-musl-x64.tar.gz",
"hash": "438d48589ce292403195603b45eb377f6d3490626c591ee83844f51b10ab2df24d077178ffc58065d1b9b54236dd104147094ca59b6229e3064124bec72e46f9"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/64f26bd4-a0d0-47c3-87e6-2ba75d42b0a6/f9789f3f1f3ddddf385a1393e5b09989/dotnet-runtime-2.1.19-linux-x64.tar.gz",
"hash": "862c5fb342ffd97fea3c3f98b2c665e744e32a1c8f94c8542ecbe577a65439898db0f2f6f5c13a0f066a554ef7e48c473ee83bac314a0fa8e2d7ad0af5ec1e4b"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/430a5c87-567d-4414-9ec0-6ace50e9750d/9092d51c5b75c2a76769c50bce349b51/dotnet-runtime-2.1.19-osx-x64.pkg",
"hash": "27fed71bc3f364385b6f8aaa29857bf2e29fc5e98bab2efdb6333ca29d5ec2fbd9feac2b3269c48c24c2249eda5b6cba3d0ef405274ad083fba6c156967255bf"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f5b5af04-339c-4e01-993e-b2bb6b80ad80/46b1a332897568436618df89617ad9d0/dotnet-runtime-2.1.19-osx-x64.tar.gz",
"hash": "ee8f788cfcae006a62914800f667979c5d0ef6a891441715e9c47d2bf3a6347a94213dc1571387936e3e5d3776b39b07201e3cfb8ba69e3fd55b47042740355c"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5ddb5b56-921c-45d9-a355-1c542d553f09/7ccc1bf0c0779ae28b356f1299a39729/dotnet-runtime-2.1.19-rhel.6-x64.tar.gz",
"hash": "f7d0a9d1431809fa258b4aa23537cca65a374f33065186783f915d369f49765c7647ed14bc2b9431f138ed112fb10302dbfbc43252e97fcc0b05ddbad55aef5b"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/f60b43e8-01ff-4f47-bdc0-3b5a8ddd3f0d/d3e8991c3e88b964e1719138e9edb8a8/dotnet-runtime-2.1.19-win-arm.zip",
"hash": "8e6c4f6ae78838d3112a7a3d1e9cae101f6e08ddfdfeb8153d9360db077e4cb602a7b63f901aa45e2b9ad1f86dba09251a4d47953f94d3a9e311d33f8c668fc3"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7efea5a3-1365-48e1-8946-6ca6851f3952/f7d545ae430b9d83e4ebc9247a17b096/dotnet-runtime-2.1.19-win-x64.exe",
"hash": "17da4b41870819a5ab62035f9d28730b57aaaa13b183b3d488ab5a4939e855fa304ce4578fe4d664c588438cd2a54ee874c209f01f6a3261c25d2a90f0ab3853"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d1b9def4-0d12-446e-a0e4-88cb14accfa8/0f8e8c3a8100b6559cff0267549153ff/dotnet-runtime-2.1.19-win-x64.zip",
"hash": "f59d956cdbe52c58512cf25227a1f9e3038ae8f68781f081dcab5015a4f93448c3da0ad58ba09e58985abd671f7fe2462493cbcba53ccbd546e5eac2e7bc4e8b"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/d0fbbf54-b844-4022-93f0-2ffaa93354b2/14f2dcd822f352331eaa60186e15194a/dotnet-runtime-2.1.19-win-x86.exe",
"hash": "32715c486dfc212517cc3c473c41aa41220a4480040d06d272efb6cea1f8e08efcd5f39ae479ad2b334703adc9ce8d5393f75fa2de0e1a72947dd501dc0fffef"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/387741ae-3e13-4e00-98be-359ec73c41f5/da250a40fbee22c12985caff4dccb328/dotnet-runtime-2.1.19-win-x86.zip",
"hash": "1fbf08249eba32848a6921cd4478751c6afd7c9c675d5b5cfc1184a9f628607533eb1aae2d1ed843ceccc7131a48d980aef531fa02f5cad0f43e3f456af69061"
}
]
},
"sdk": {
"version": "2.1.807",
"version-display": "2.1.807",
"runtime-version": "2.1.19",
"vs-version": "",
"vs-support": "Visual Studio 2019 (v16.2 or later)",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/5ebe60c2-b70a-4783-aea6-255387861b90/ae174e7ec848b83e7fe381a033e80b00/dotnet-sdk-2.1.807-linux-arm.tar.gz",
"hash": "0b3e80abf6895d46cee8ad5c81aa7968cc6876f5a98c79ce6ad5f28fb43208aff8e5f2bca618c36577bf9f91d1f7a4f962accbe2ab472f713ba8e503519802b0"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d378f459-514a-48d0-98ee-7b332049a495/d49fc6a5b71e21d1370de307ccf8b802/dotnet-sdk-2.1.807-linux-arm64.tar.gz",
"hash": "9abf5de838038071fa965608ab43aa2f27cd3cf4106a743609c2c0f8b48fce2f5879337b2cfa1861d16c2bf5bb570bc9f9985240ce94805b46e32bc619476c83"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/824dbfec-85c6-4e2a-aec8-1838897d8da4/38f3191b8cabe79ca017c8fc18b0ee0e/dotnet-sdk-2.1.807-linux-musl-x64.tar.gz",
"hash": "65ee089284f293d506a386bf51198e6ee88722b5a0a8f786c3fe6f6b440d4da1222806b62f06627d521653a022519f010e4467a9caed47a46fc6605b8d70c359"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8f959005-4742-44c0-8b30-17d394c0b954/348d5acbfe2a9879e39529be18b29f2d/dotnet-sdk-2.1.807-linux-x64.tar.gz",
"hash": "85bfe356d1b6ac19ae5abe9f34f4cc4437f65c87ac8dff90613f447da619724ddcda5cbd1a403cd2ab96db8456d964fa60b83c468f7803d3caadbee4e8d134ec"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/32139382-56dc-48a1-87ce-4422ec44c802/33b6bbf2678978d5d697107b6a9fcbfd/dotnet-sdk-2.1.807-osx-x64.pkg",
"hash": "04b798efc9660024947e5d33a77d44f7e7baa59c622c29ed47bcdcee0511874ce92d0e591d93d4cadcc8de7b97ae1576fcd154f8023d685b45492dfff96f9a8a"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/abdbdd06-1cd4-4aae-8d0f-5a13aee881ec/837a60e4bb15d0cbb1ba9c0527dd2a84/dotnet-sdk-2.1.807-osx-x64.tar.gz",
"hash": "d20bb5f986e9f568f553d3ce387a8f108e059297239247996f6144345761e834857b6df534ee0cadf8f030d41da7a98701219cbb3d48b7790bca4e2d0f95029e"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0c2a3a9c-3013-41a9-980f-97f551993e75/a722fca7fd6713cb2f73be6c56e1a135/dotnet-sdk-2.1.807-rhel.6-x64.tar.gz",
"hash": "c4cc048414e594d3bb92d6b26c85342ca4df1f2e26c1473b8419cda0e0abbc7837c17003c1ea7adc56945cab9c194f143e3dbaa61e89daee0e1cab08a8bac084"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/805ff430-5116-49bb-95ff-2d0a61f11a77/f35ac0fb1d3171f6c7bfbee05efc84d2/dotnet-sdk-2.1.807-win-x64.exe",
"hash": "ff8ed317e004ff5153c92109e1caa69a230f1bd1fc09e6e3acc16bcdc6a58807feb0a6cf534f54f6557cb3821a404530d2c410b3da22f11cfd13a91d2e8248b8"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/16370ec0-8187-4bcd-b7ab-d720c68062d3/c0df46b369c6501c2760b1cd88c79ea0/dotnet-sdk-2.1.807-win-x64.zip",
"hash": "05eb8ab6a960ec51a24d24b73dbe4b12c6ac66e499a7f076caa3aaa1c3546ca78d1bf9054b49c61a2275e4c261e90f36364820eb1b90206e1e76f59ed96f97f0"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/36318b25-e47c-4947-89e9-1963ac8c20a3/c25eb4359bff06d42c65eadcfab0248b/dotnet-sdk-2.1.807-win-x86.exe",
"hash": "80a1b4bf48fa9fbc4944761057ed99dd540802a37757c89b42290d18033aa74296ad9bd820b5dd2566dba71fc0c9326a19cbf387476efb62228e2c1d3c2e6c82"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/2857a4f6-0f24-4825-8569-896ed8bb3d87/af57a8128e69bdf3668eebf39c0c42a5/dotnet-sdk-2.1.807-win-x86.zip",
"hash": "0b7e30c1e1a97ef5d633caf0f0988b9f3b2a531f2e3d1718a3473050de6493c42390ef24b8524080eb3c0fa6627fe7a933c31999a7d2e4edc84886e19ac6fc51"
}
]
},
"sdks": [
{
"version": "2.1.807",
"version-display": "2.1.807",
"runtime-version": "2.1.19",
"vs-version": "",
"vs-support": "Visual Studio 2019 (v16.2 or later)",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/5ebe60c2-b70a-4783-aea6-255387861b90/ae174e7ec848b83e7fe381a033e80b00/dotnet-sdk-2.1.807-linux-arm.tar.gz",
"hash": "0b3e80abf6895d46cee8ad5c81aa7968cc6876f5a98c79ce6ad5f28fb43208aff8e5f2bca618c36577bf9f91d1f7a4f962accbe2ab472f713ba8e503519802b0"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d378f459-514a-48d0-98ee-7b332049a495/d49fc6a5b71e21d1370de307ccf8b802/dotnet-sdk-2.1.807-linux-arm64.tar.gz",
"hash": "9abf5de838038071fa965608ab43aa2f27cd3cf4106a743609c2c0f8b48fce2f5879337b2cfa1861d16c2bf5bb570bc9f9985240ce94805b46e32bc619476c83"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/824dbfec-85c6-4e2a-aec8-1838897d8da4/38f3191b8cabe79ca017c8fc18b0ee0e/dotnet-sdk-2.1.807-linux-musl-x64.tar.gz",
"hash": "65ee089284f293d506a386bf51198e6ee88722b5a0a8f786c3fe6f6b440d4da1222806b62f06627d521653a022519f010e4467a9caed47a46fc6605b8d70c359"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8f959005-4742-44c0-8b30-17d394c0b954/348d5acbfe2a9879e39529be18b29f2d/dotnet-sdk-2.1.807-linux-x64.tar.gz",
"hash": "85bfe356d1b6ac19ae5abe9f34f4cc4437f65c87ac8dff90613f447da619724ddcda5cbd1a403cd2ab96db8456d964fa60b83c468f7803d3caadbee4e8d134ec"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/32139382-56dc-48a1-87ce-4422ec44c802/33b6bbf2678978d5d697107b6a9fcbfd/dotnet-sdk-2.1.807-osx-x64.pkg",
"hash": "04b798efc9660024947e5d33a77d44f7e7baa59c622c29ed47bcdcee0511874ce92d0e591d93d4cadcc8de7b97ae1576fcd154f8023d685b45492dfff96f9a8a"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/abdbdd06-1cd4-4aae-8d0f-5a13aee881ec/837a60e4bb15d0cbb1ba9c0527dd2a84/dotnet-sdk-2.1.807-osx-x64.tar.gz",
"hash": "d20bb5f986e9f568f553d3ce387a8f108e059297239247996f6144345761e834857b6df534ee0cadf8f030d41da7a98701219cbb3d48b7790bca4e2d0f95029e"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0c2a3a9c-3013-41a9-980f-97f551993e75/a722fca7fd6713cb2f73be6c56e1a135/dotnet-sdk-2.1.807-rhel.6-x64.tar.gz",
"hash": "c4cc048414e594d3bb92d6b26c85342ca4df1f2e26c1473b8419cda0e0abbc7837c17003c1ea7adc56945cab9c194f143e3dbaa61e89daee0e1cab08a8bac084"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/805ff430-5116-49bb-95ff-2d0a61f11a77/f35ac0fb1d3171f6c7bfbee05efc84d2/dotnet-sdk-2.1.807-win-x64.exe",
"hash": "ff8ed317e004ff5153c92109e1caa69a230f1bd1fc09e6e3acc16bcdc6a58807feb0a6cf534f54f6557cb3821a404530d2c410b3da22f11cfd13a91d2e8248b8"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/16370ec0-8187-4bcd-b7ab-d720c68062d3/c0df46b369c6501c2760b1cd88c79ea0/dotnet-sdk-2.1.807-win-x64.zip",
"hash": "05eb8ab6a960ec51a24d24b73dbe4b12c6ac66e499a7f076caa3aaa1c3546ca78d1bf9054b49c61a2275e4c261e90f36364820eb1b90206e1e76f59ed96f97f0"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/36318b25-e47c-4947-89e9-1963ac8c20a3/c25eb4359bff06d42c65eadcfab0248b/dotnet-sdk-2.1.807-win-x86.exe",
"hash": "80a1b4bf48fa9fbc4944761057ed99dd540802a37757c89b42290d18033aa74296ad9bd820b5dd2566dba71fc0c9326a19cbf387476efb62228e2c1d3c2e6c82"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/2857a4f6-0f24-4825-8569-896ed8bb3d87/af57a8128e69bdf3668eebf39c0c42a5/dotnet-sdk-2.1.807-win-x86.zip",
"hash": "0b7e30c1e1a97ef5d633caf0f0988b9f3b2a531f2e3d1718a3473050de6493c42390ef24b8524080eb3c0fa6627fe7a933c31999a7d2e4edc84886e19ac6fc51"
}
]
},
{
"version": "2.1.612",
"version-display": "2.1.612",
"runtime-version": "2.1.19",
"vs-version": "16.0.15",
"vs-support": "Visual Studio 2019 (v16.2 or later)",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/c769a2d2-33a1-4d8c-822b-ca55fc4e8fe6/3f88dac9c4fcd37ecc6578a192037e93/dotnet-sdk-2.1.612-linux-arm.tar.gz",
"hash": "d0723d6b12d504824e1d4eac74212d19d7d8ddba2517a578a2da826cdfe9cb303f63e8d622b5d278ed3ed67aca7d86eb45625aa12cca2d35f1711b259fa6ff9f"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b0dc8c1d-0a92-4dd9-b8d5-90cbdf85c90f/f2f760564b4b8ad70d81273c9970f5f0/dotnet-sdk-2.1.612-linux-arm64.tar.gz",
"hash": "ae61beb2955de87c8ea76e85c9f54b4b165b203757abcbfde1fabe330e91009ff31af4aff17b8504755ed0b31c72711aa009051889bd929cd13e546d457f4e6a"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/39b0a3c5-75f4-4caf-b852-b139b317a595/a2f985c75d65a7cf817b2dc1f145f61d/dotnet-sdk-2.1.612-linux-musl-x64.tar.gz",
"hash": "eec338534c9682c49dcf3704d11405cec687fef4c2db8426c4516ea9135d0c85a5456ddb53927d8cc6e73144f348c809755a528d5e7ee0b803d3b7eda130c0ac"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/688a4599-ab45-402a-a567-0a0a11fe4045/bff9d474e867dcbe7871d78074b19f01/dotnet-sdk-2.1.612-linux-x64.tar.gz",
"hash": "6ce6c029c926663fceb6454322e4b6f42889c8a2b9e705c9ac7b5ffd5a2e0f487acf122b5335522868c88e0c46eedfacd58f9f66904fd2eaaf60ae89be3eafb0"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/74e06270-068a-41fc-aa79-560c1eab2ffd/69fe346d936489d8f367018d23cb491a/dotnet-sdk-2.1.612-osx-x64.pkg",
"hash": "5026b1fa68fc617810375e95e3ff004fc2b14d0c33f3870c70929520c118fe092b802608527b317c427bf7f91c446449b47f52c58b897fff555f3bc9474747d1"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/abe4ef60-7a32-443e-af2b-defcd02fc4ca/65f77d41ca09fe0c6e430ac9d3340883/dotnet-sdk-2.1.612-osx-x64.tar.gz",
"hash": "abdc6a48c0d54643b4a4001d3d279686f158aff2274c3dbc6e8e2a99af75d5e14a614e7c5d04481a46cf0df6f3700919a301454a13272dd89d291574e523f194"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/55305101-1ab3-4225-a498-843942069ca0/b3e08e52326b60a9aac2f5f896603835/dotnet-sdk-2.1.612-rhel.6-x64.tar.gz",
"hash": "2cc130f3063d49054864beb627e95872d61357f7ff8e73c8b2a430319bf36b5259661af29bb2fdbf66f1b5571df8da3bd2a90145b9e080a4530f291fa07dce21"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8a097690-f50f-41db-84c5-1cc5eb602e83/c980983fec59403bf78cba7892b748e2/dotnet-sdk-2.1.612-win-x64.exe",
"hash": "8cece153f03897a42f5f31d37e86f5ebf4c9f5823cfa1376cea2e74e1d4281a6fb5c5a103c87fd43efff014ed3a7d58cd0b78f202d8f5996e7174a60bb21cc51"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/22773401-a234-4e1e-90eb-83635ab2a416/139d4ef5d4281b467faeed4782e6a3c4/dotnet-sdk-2.1.612-win-x64.zip",
"hash": "2e1f0cebe4d216d5d79cbaa9255808cfe284f21c09db52438786c93a6956e34a22411e7c50772efa0beeb2812b7aedd1bb46a339a58cf96212e0586125df17e7"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/b5ace7ae-b57e-402c-9000-faecb3f528d1/3742e5afb8d793cfb9c85e0a806a54b9/dotnet-sdk-2.1.612-win-x86.exe",
"hash": "d9e3d6e85bf9fc763fd0156d0ddb475f2e3c9162b74961b2f0c0138f2046c36ff2b9c762dbb72360ea5c4f5e488b36be4d409a311d333f277f0f521a386026b8"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/f946405d-47ff-4f61-bdc2-4272f2c1f480/c11ed0eddf2be6be72102be345876910/dotnet-sdk-2.1.612-win-x86.zip",
"hash": "dc3a7ac50a1bc70ff9218b53c22b57f3c9dc74aa9e5a228958a71119036fb44c1a945cb37980b3bec95dc2c2816542e2754207196877c8a14f8ed58e1a20db0c"
}
]
},
{
"version": "2.1.515",
"version-display": "2.1.515",
"runtime-version": "2.1.19",
"vs-version": "15.9.24",
"vs-support": "Visual Studio 2019 (v16.2 or later)",
"csharp-version": "7.3",
"fsharp-version": "4.5",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/0e29c1d2-8870-4faf-bae2-3b6bfc9235eb/462607fe7cd52587f3294368f0ce2296/dotnet-sdk-2.1.515-linux-arm.tar.gz",
"hash": "ae6c754719ba623a37a53341bac6ed79ff1e30088a75a706eb94859fbca67b96c8849b36eb618705d483d1a4188c41b89396c6503ad51e780f2abf1bb3b58e2f"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c07f8224-d331-402c-9bb0-d2dbf77779f6/ddfebdecefbdfbb4e42d9618f7e05c05/dotnet-sdk-2.1.515-linux-arm64.tar.gz",
"hash": "7c82818aa789c9f93d9a3a20d7574d61066df31ece0f8350b6c3383aa4032ddd4670aa9539f89dd240be10a0288376ae038cee7605e9346831bfea30320a4305"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/43483387-7937-49fa-8ae8-09da1b9008d3/0ff842912b90dc0b6362960ca0911ab9/dotnet-sdk-2.1.515-linux-musl-x64.tar.gz",
"hash": "f9f98674010c579f5ee9da99f7098ba1529d7e3124864ec8edae098fbc30812cb88d9889de9949d05aeeea206cfe10bad01b4147ac665a1563c908690a44b5a1"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/57e4a4f9-6da0-445d-a085-8f4406b5e79d/e640a084deff62b3ca3b7c43c8f53892/dotnet-sdk-2.1.515-linux-x64.tar.gz",
"hash": "90ebc0657e0b41507860391baed1cb50fd660e5bb38f81df248b8cdddaeec399664bd6c1b39051f3897391adc5bee82c25c15327fea9ca12babae7714c38303e"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7f180c25-195e-4919-89cf-4cdf9bc2c47a/e2c953588d71a9e2e706a380b87146ae/dotnet-sdk-2.1.515-osx-x64.pkg",
"hash": "bbdce085c4f5fdf341e6daf57ccf1968b2de11a00d9a667ffe8e7bf57b22649f35ae7a159c41453e7611c292eab309a70de846b331f89131828cb4ce63c27399"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/921e00f2-367b-49cc-ae62-450e3854c743/a6d9316fdcfe45f8c0f0ce0b4bb2a02b/dotnet-sdk-2.1.515-osx-x64.tar.gz",
"hash": "bd5be9632d02cd10824f14ae9a932ad5f9752a442e10dd01568674eafcae7067dabc2d47d0d6fe2d49b7bd5deacd30f3c09d742f88cd96776dadef4da12c6741"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e9999ec1-46f0-4308-bb05-98ea7118c4a4/2be91074618d9bf7da9f44edd22d6779/dotnet-sdk-2.1.515-rhel.6-x64.tar.gz",
"hash": "e858250148aec9e52a38a8b657d1badfeefa0fbd50b202d43b793a0ad4b76fe2f0d717c15d718937971f22b68d30c28249f55275c644a1f6dbb181f761db7d95"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d117c700-66e0-4793-91bb-f372a15b3165/250eecb26eede3e29f4f98faccb3094a/dotnet-sdk-2.1.515-win-x64.exe",
"hash": "b730a893cbd8b18780f9a5d1fa1285763608d84b74a28046f2e4c26f8d85780d91de9a6a722a0a2d45f0e9b7dcbf159fef51bea9edef671547740be7bf07a577"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7a39ca0e-2dfe-475d-98ae-00836307f0aa/203d1fbfa1d6f57d2fb6f5e73d056a2c/dotnet-sdk-2.1.515-win-x64.zip",
"hash": "84962382151fcc0c6a5f5285084bf0ac31f5cb47b257912fc722002a252be678a10c0019eb79862e862945a83cc7106c8335fadf336d11026a972d96f9f8573d"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/1d45bd0c-5ed7-429e-a3f4-436180550da2/6c814cb573f4ccc8df999d4fb158837a/dotnet-sdk-2.1.515-win-x86.exe",
"hash": "e634579f58983bb06798b353401e79e67be895ee6f7d676cfda5277c647768adfddc2f4b4afb4bca3e00d482aa913135fe927fa69e6358e6276b848eace84e99"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/40fee765-b69e-47f8-b824-4d358f7c1057/0fbcad2930eb0c64f9adabd363a1398e/dotnet-sdk-2.1.515-win-x86.zip",
"hash": "d79bd219d2a250226675e7557185b1d636b2b3572d62a8607aee2be18770975cbd40eff5c7d3c3c3c7dce43fecae10b69dbdcf341c4376e5efd145264da04124"
}
]
}
],
"aspnetcore-runtime": {
"version": "2.1.19",
"version-display": "2.1.19",
"version-aspnetcoremodule": [
"12.1.20149.19"
],
"vs-version": "15.9.24 16.0.15 16.4.10 16.6.2",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/4e8cd01e-9b3d-4e69-837d-f8d558fb1a9f/e1c52cf207aee58ae4aff32d09ecfe05/aspnetcore-runtime-2.1.19-linux-arm.tar.gz",
"hash": "f8ec53beb23c1308d91ffb2931c804714a0a10553319ffa596cd47d00cf324207130397f90ab5b78dc3d4f408eefd6753221254abaf0d02ffca9522b85851892"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e14036b9-60a8-4e1e-93c0-2649e65a9ece/f1e5d157c615420f4311d2d90b71a762/aspnetcore-runtime-2.1.19-linux-musl-x64.tar.gz",
"hash": "ad38186e0c34185981be134cb97cfc874d0459f781df6bac6270f892658a38cfc1a7c26cfc973e6a0b4d98f3d38cb46a0f1448da5f0d9081f5610ce408e677c2"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/abf8cad9-fe36-4bb6-9cdb-926a50bf63c6/5dc2f4e3e133ef073f12340d4fd6e943/aspnetcore-runtime-2.1.19-linux-x64.tar.gz",
"hash": "4ca81b0dc1efcb8562a07f658461ce5caf976c93942af7549053f4f5c3da232964989fee2ea42537c1086b244950d8e6a1230d3486317af5108d203036c4bc0c"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/22ef858a-7c3b-4985-aa3b-609d118af67e/8eb85303e42bc099bc4b3b5abf890e76/aspnetcore-runtime-2.1.19-osx-x64.tar.gz",
"hash": "426e4e1bc2718433651094b910ee5c27386d726bb2c1703a210fc0c964afccc06dbf9ba395684fc457df807d2374f92b1caaeed323f317d8bc4c4ed4a9c3912e"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/04953eff-44d5-45e6-ab12-95d1a9a1e88e/60fddf880eb5d4952d5a1358b566d8ab/aspnetcore-runtime-2.1.19-win-x64.exe",
"hash": "79a80ccece358e07259d7db1588a7a276acf5a37fd75d8529286aa85f165c0f333ef28c829775ee5f676e37f45021b452a597fe089c28be34b5164db4bf92d3b"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6bafbf91-d105-40ba-9f05-99b1bbd8b789/548b30b88e44fd4995ce0585ca9037fd/aspnetcore-runtime-2.1.19-win-x64.zip",
"hash": "7d29881fbbdc7834d8f802dbf46b80de979b7c675adb1e3562e85f8843b246c37138412ef5b0b8aef87f4476baf77bed0a553d9ed9e7314a5d2c0d1cf25ae746"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/032fa388-eea5-46d3-bbff-a27d6c5d6034/535c7f37640d98c56180b19152182c03/aspnetcore-runtime-2.1.19-win-x86.exe",
"hash": "d46cbbb84b04ff927979c07007fb73d906f99f115639eae8802fe3da2c3956286dd6fadb88b799c94e3ca0f715a45af09e42972b82ce1186387b0828ae6cd730"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/40dfe80d-b50f-4c80-92e2-11af72075f3c/4a998070648613e7f842abb49fd27f87/aspnetcore-runtime-2.1.19-win-x86.zip",
"hash": "06151b588add215716c4dc08ea2b6224723f26b12532d698d68cbe1007eb8eb25424ad45cf312ae9fecc9e14f733952243915f36c9be6910e1c36d64d5989c21"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/988d236a-30bf-4e96-8063-665d27c922c9/b793025960eaf182d8f32e723ad9b47a/dotnet-hosting-2.1.19-win.exe",
"hash": "6bbba7eb796ad88a4c66568e45b9e2eb6873f0d591093d0b3c574a9c9dddc4af03eacbfb6d8495653aa59eb8a03f804972a52759d07b5e456a93ee87e4619d4b"
}
]
},
"windowsdesktop": {
"version-display": "2.1.19",
"files": []
},
"symbols": {
"version": "2.1.19",
"files": []
}
},
{
"release-date": "2020-05-12",
"release-version": "2.1.18",

View file

@ -0,0 +1,177 @@
# .NET Core 3.1.301 - June 9, 2020
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 3.1.301
* .NET Core Runtime 3.1.5
* ASP.NET Core 3.1.5
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.5/3.1.5.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.301](#downloads) |
| Windows | Visual Studio 2019 version 16.4 | [3.1.105](3.1.5.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 incude 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 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.5-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.5/3.1.301-download.md
[snap-install]: 3.1.5-install-instructions.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.5-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.5-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://docs.microsoft.com/en-us/dotnet/core/install/
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-march-2020/
[//]: # ( Runtime 3.1.5)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/15132a5c-f0f4-4373-8b8b-b7e70834d899/cad479dda52359ad43956471274ec932/dotnet-runtime-3.1.5-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/65291ed8-e931-4605-9d5a-265928a835d0/1a15d18655c8b260170117e9bd1a1cb7/dotnet-runtime-3.1.5-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cb2d5114-feed-4dd9-aada-afe3784d2c1a/95e7bc1576e4344b3a1b101e3b4f763d/dotnet-runtime-3.1.5-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/56f86fa0-834a-4397-94b4-d4331078c91f/7de4bc57ed6a5cd7dddcefeed7aa1fd6/dotnet-runtime-3.1.5-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d00eaeea-6d7b-4e73-9d96-c0234ed3b665/0d25d9d1aeaebdeef01d15370d5cd22b/dotnet-runtime-3.1.5-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/e6494006-4940-48ed-9c28-a91fd4cfafba/fd10e3e409d55ff15f43611db6f9ead0/dotnet-runtime-3.1.5-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a1c0ee25-9bd5-48ef-96e9-33d3d8e52a7c/8cf1d5065aa5352b838c1c4278942dcf/dotnet-runtime-3.1.5-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/49656370-10aa-4db6-858b-db9fb51a1797/45929f56c70c9c6b7d864e353dae84e1/dotnet-runtime-3.1.5-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/49b6cd90-d8d1-4ce8-a7c2-2f7dfd3bdd5c/618343672c8f8972704f12b3517ce912/dotnet-runtime-3.1.5-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d97cfaf4-b17f-46c7-9a11-7f0d25dfd8b0/f76d4fce8e38b289efb9403aab0a0c9f/dotnet-runtime-3.1.5-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/bc76dfb3-3666-4dcb-9e29-79f0a4e5c727/3b1c6aa838db8d49d8de1cb65feae626/dotnet-runtime-3.1.5-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/fcea8129-4de7-4842-aa80-42efb2e0f250/3205c15852a1b559659991236eca5ac5/dotnet-runtime-3.1.5-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/76a97b28-a754-456b-be6d-fbf82cc8a237/746ac1926d55f8e0827404a763a5c5c0/dotnet-runtime-3.1.5-win-x86.zip
[//]: # ( WindowsDesktop 3.1.5)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/86835fe4-93b5-4f4e-a7ad-c0b0532e407b/f4f2b1239f1203a05b9952028d54fc13/windowsdesktop-runtime-3.1.5-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/df7b90d9-b93e-4974-85ef-c1de418bc186/e380e58bbd8505ebaee6c3abb23baade/windowsdesktop-runtime-3.1.5-win-x86.exe
[//]: # ( ASP 3.1.5)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7e519c5b-b434-4067-bc0b-bb38179f7e4f/80a840dc7fb2c4a065f442aea1d98516/aspnetcore-runtime-3.1.5-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/91f02336-1852-421d-907f-4aeae252a15e/dbb20e3a176c38a569cbcaa5d1d5782b/aspnetcore-runtime-3.1.5-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/021b09b2-1de4-47f8-9dcb-183795e2ada3/4f823c9ab8b968f734eda54f7d40090e/aspnetcore-runtime-3.1.5-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8438f49c-a336-4846-87ae-b3badfb978ee/2b4d72e03ccd0e737657e0534f4e092c/aspnetcore-runtime-3.1.5-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6827d794-a218-4352-b3b3-a19ec773c975/e3e53bc2f20df220a29c6e09f74d8a00/aspnetcore-runtime-3.1.5-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3d4a6ce4-7d9f-4087-bd06-23aa54d1b9ac/e6fb7592489a5d5a8a2801196509dd72/aspnetcore-runtime-3.1.5-osx-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/c21c6919-1016-49b9-a99b-3d99fe489f3c/5e25370475eb6a891d883de77ebc4613/aspnetcore-runtime-3.1.5-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/6818f1f7-75de-43e5-9202-2b328ca127f7/039edc4bab29e5af63ed618e59f82fad/aspnetcore-runtime-3.1.5-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/b5d221a7-f799-4ac2-9da9-26855a6778c1/7eefcd7210b825b98c4ad14190075f70/aspnetcore-runtime-3.1.5-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/c5f311ca-3ed2-4249-8e09-51ff15250836/dfbee818fd022129a60f290187215b2f/aspnetcore-runtime-3.1.5-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/7e417328-ef5b-4584-96c6-feaadcb8da80/e5c2f428da51907d6a2c6abc35fa172a/aspnetcore-runtime-3.1.5-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/7c30d3a1-f519-4167-b850-b9c49bf2aa0e/dbfa957a76a41a1e1795f59d400d4ccd/dotnet-hosting-3.1.5-win.exe
[//]: # ( SDK 3.1.301 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/dbf4ea18-70bf-4b0f-ae9c-65c8c88bcadd/115e84fb95170ddeeaf9bdb9222c964d/dotnet-sdk-3.1.301-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fe5c0663-3ed1-4a93-95e1-fd068b89215b/14d1caad8fd2859d5f3514745a9bf6b3/dotnet-sdk-3.1.301-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5cb7099e-fc8e-4a44-b9ec-79f353c4635f/234e69ea68821cf6fa022c4aa9781cbb/dotnet-sdk-3.1.301-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8db2b522-7fa2-4903-97ec-d6d04d297a01/f467006b9098c2de256e40d2e2f36fea/dotnet-sdk-3.1.301-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/aad9adc7-90bb-4294-a378-00f4cc5fb695/89cfc771a783b1441c34ac925aee7141/dotnet-sdk-3.1.301-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d8bc3271-b869-4dc3-96db-d91c574bacc7/b2fbdac38ca4ac71194a41cdd97f1d82/dotnet-sdk-3.1.301-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f64df040-452c-4e57-96e1-56936ee8a8ea/758bc5ce3ad1331a97f2c39f5f21f27b/dotnet-sdk-3.1.301-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/46cc1326-b655-46b5-925b-bd69e627f699/4110a7c0356eb62ae5c44a7cff9b0f56/dotnet-sdk-3.1.301-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/4e88f517-196e-4b17-a40c-2692c689661d/eed3f5fca28262f764d8b650585a7278/dotnet-sdk-3.1.301-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/cb535978-7eb4-4bcb-8e85-98c3d42eae3f/1acdc320ba87e1d840242ee4b930b026/dotnet-sdk-3.1.301-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/77b944fa-aa83-4101-85a9-9d3bde200ebc/f0f0e2a3544593b19df8471cbe9b6b61/dotnet-sdk-3.1.301-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/26af3d3c-a6d9-43f7-8e31-63e6fdd122a9/63722096d4aca389101c3c8ca74c9334/dotnet-sdk-3.1.301-win-x86.zip
[//]: # ( Symbols )

View file

@ -0,0 +1,97 @@
# .NET Core 3.1.5
.NET Core 3.1.5 comprises:
* .NET Core Runtime 3.1.5
* ASP.NET Core 3.1.5
* .NET Core SDK 3.1.105
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.5/3.1.5.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 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 incude 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 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.5-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.5/3.1.5.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.5-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.5-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://docs.microsoft.com/en-us/dotnet/core/install/
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/7c30d3a1-f519-4167-b850-b9c49bf2aa0e/dbfa957a76a41a1e1795f59d400d4ccd/dotnet-hosting-3.1.5-win.exe

View file

@ -0,0 +1,423 @@
# .NET Core 3.1.5 - June 9, 2020
[.NET Core 3.1.5](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.5 and .NET Core SDK 3.1.105.
* [Blog Roundup][dotnet-blog]
* [Downloads](https://dotnet.microsoft.com/download/dotnet-core/3.1)
* [Changes in this release](#changes-in-315)
* [Known issues](../3.1-known-issues.md)
* [Visual Studio Compatibility](#visual-studio-compatibility)
The .NET Core SDK 3.1.105 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.105, the following command will show that you're running version `3.1.105` 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.6 | [3.1.301](3.1.301-download.md) |
| Windows | Visual Studio 2019 version 16.4 | [3.1.105](#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.5 is being deployed to Azure App Services and the deployment is expected to complete later in June 2020.
## .NET Core Lifecycle News
Alpine 3.12 and Centos 8 has been added as [supported OS](../3.1-supported-os.md) with this update of .NET Core 3.1.
## Changes in 3.1.5
.NET Core 3.1.5 release carries both security and non-security fixes.
### [CVE-2020-1108: .NET Core Denial of Service Vulnerability](https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/CVE-2020-1108)
To comprehensively address CVE-2020-1108, Microsoft has released updates for .NET Core 2.1 and .NET Core 3.1. Customers who use any of these versions of .NET Core should install the latest version of .NET Core. See the [Release Notes](https://github.com/dotnet/announcements/issues/156) for the latest version numbers and instructions for updating .NET Core.
Microsoft is aware of a denial of service vulnerability which exists when .NET Core improperly handles web requests. An attacker who successfully exploited this vulnerability could cause a denial of service against a .NET Core web application. The vulnerability can be exploited remotely, without authentication. 
A remote unauthenticated attacker could exploit this vulnerability by issuing specially crafted requests to the .NET Core application. The update addresses the vulnerability by correcting how the .NET Core web application handles web requests. 
### Additional fixes in this release
* [CoreCLR](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=milestone%3A3.1.5+label%3Aservicing-approved)
* [CoreFX](https://github.com/dotnet/corefx/issues?utf8=%E2%9C%93&q=milestone%3A3.1.5+label%3Aservicing-approved)
* [ASP.NETCore](https://github.com/search?q=is%3Apr+label%3AServicing-approved+milestone%3A3.1.5+repo%3Adotnet%2Faspnetcore+repo%3Adotnet%2Fextensions+repo%3Adotnet%2Faspnetcore-tooling+repo%3Adotnet%2Fblazor+repo%3Adotnet%2Fefcore+repo%3Adotnet%2Fef6)
* [Core-Setup](https://github.com/dotnet/core-setup/issues?utf8=✓&q=milestone:3.1.5+label:servicing-approved)
### macOS Notarization Change
Running "dotnet build" will generate dll instead of binary on macOS. This is a planned change to not use the AppHost by default on macOS because of [notarization requirements](https://docs.microsoft.com/en-us/dotnet/core/install/macos-notarization-issues). If you want to opt into using the AppHost, please use following:
```
<PropertyGroup>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
```
## Packages updated in this release:
Package name | Version
:----------- | :------------------
runtime.linux-arm.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x86 | 3.1.5.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.linux-arm | 3.1.5.nupkg
Microsoft.NETCore.App.Host.linux-arm64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.linux-musl-arm64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.linux-musl-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.linux-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.osx-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.rhel.6-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.win-arm | 3.1.5.nupkg
Microsoft.NETCore.App.Host.win-arm64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.win-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Host.win-x86 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.linux-arm | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.linux-arm64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-arm64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.linux-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.osx-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.rhel.6-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.win-arm | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.win-arm64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.win-x64 | 3.1.5.nupkg
Microsoft.NETCore.App.Runtime.win-x86 | 3.1.5.nupkg
Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetAppHost | 3.1.5.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHost | 3.1.5.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy | 3.1.5.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 3.1.5.nupkg
Microsoft.DotNet.PlatformAbstractions | 3.1.5.nupkg
Microsoft.NET.HostModel | 3.1.5.nupkg
Microsoft.Extensions.DependencyModel | 3.1.5.nupkg
System.Threading.Tasks.Dataflow | 4.11.1.nupkg
System.Text.Json | 4.7.2.nupkg
System.Collections.Immutable | 1.7.1.nupkg
Microsoft.XmlSerializer.Generator | 2.2.1.nupkg
Microsoft.NETCore.Platforms | 3.1.1.nupkg
Microsoft.Bcl.AsyncInterfaces | 1.1.1.nupkg
System.Threading.Channels | 4.7.1.nupkg
System.Composition | 1.4.1.nupkg
System.Composition.Convention | 1.4.1.nupkg
System.Text.Encodings.Web | 4.7.1.nupkg
System.Text.Encoding.CodePages | 4.7.1.nupkg
System.Resources.Extensions | 4.7.1.nupkg
System.Reflection.MetadataLoadContext | 4.7.2.nupkg
System.Reflection.Metadata | 1.8.1.nupkg
System.Reflection.DispatchProxy | 4.7.1.nupkg
System.Composition.AttributedModel | 1.4.1.nupkg
System.Json | 4.7.1.nupkg
System.IO.Pipelines | 4.7.2.nupkg
System.Diagnostics.DiagnosticSource | 4.7.1.nupkg
System.Data.OleDb | 4.7.1.nupkg
System.Composition.TypedParts | 1.4.1.nupkg
System.Composition.Runtime | 1.4.1.nupkg
System.Composition.Hosting | 1.4.1.nupkg
System.Net.WebSockets.WebSocketProtocol | 4.7.1.nupkg
Microsoft.Extensions.Identity.Stores | 3.1.5.nupkg
Microsoft.Extensions.Identity.Core | 3.1.5.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore | 3.1.5.nupkg
Microsoft.Extensions.ApiDescription.Client | 3.1.5.nupkg
Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1 | 3.1.5.nupkg
Microsoft.Extensions.ApiDescription.Server | 3.1.5.nupkg
Microsoft.DotNet.Web.ItemTemplates | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm64 | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm | 3.1.5.nupkg
AspNetCoreRuntime.3.1.x64 | 3.1.5.nupkg
AspNetCoreRuntime.3.1.x86 | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.Certificate | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.AzureADB2C.UI | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.AzureAD.UI | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.win-x86 | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.win-x64 | 3.1.5.nupkg
Microsoft.AspNetCore.ApiAuthorization.IdentityServer | 3.1.5.nupkg
dotnet-sql-cache | 3.1.5.nupkg
Microsoft.DotNet.Web.ProjectTemplates.3.1 | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.osx-x64 | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm64 | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.linux-x64 | 3.1.5.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-x64 | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.Google | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.Facebook | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.MicrosoftAccount | 3.1.5.nupkg
Microsoft.AspNetCore.Mvc.Testing | 3.1.5.nupkg
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation | 3.1.5.nupkg
Microsoft.AspNetCore.Mvc.NewtonsoftJson | 3.1.5.nupkg
Microsoft.AspNetCore.MiddlewareAnalysis | 3.1.5.nupkg
Microsoft.AspNetCore.NodeServices | 3.1.5.nupkg
Microsoft.AspNetCore.Metadata | 3.1.5.nupkg
Microsoft.AspNetCore.Identity.UI | 3.1.5.nupkg
Microsoft.AspNetCore.Identity.Specification.Tests | 3.1.5.nupkg
Microsoft.AspNetCore.Identity.EntityFrameworkCore | 3.1.5.nupkg
Microsoft.AspNetCore.Http.Features | 3.1.5.nupkg
Microsoft.AspNetCore.Http.Connections.Common | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.JwtBearer | 3.1.5.nupkg
Microsoft.AspNetCore.JsonPatch | 3.1.5.nupkg
Microsoft.AspNetCore.Hosting.WindowsServices | 3.1.5.nupkg
Microsoft.AspNetCore.Owin | 3.1.5.nupkg
Microsoft.DotNet.Web.Client.ItemTemplates | 3.1.5.nupkg
Microsoft.dotnet-openapi | 3.1.5.nupkg
Microsoft.AspNetCore.TestHost | 3.1.5.nupkg
Microsoft.AspNetCore.SpaServices.Extensions | 3.1.5.nupkg
Microsoft.AspNetCore.SpaServices | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.StackExchangeRedis | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.Specification.Tests | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.Protocols.MessagePack | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.Protocols.Json | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.Common | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.Client.Core | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.Client | 3.1.5.nupkg
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv | 3.1.5.nupkg
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson | 3.1.5.nupkg
Microsoft.AspNetCore.HeaderPropagation | 3.1.5.nupkg
Microsoft.AspNetCore.Http.Connections.Client | 3.1.5.nupkg
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore | 3.1.5.nupkg
Microsoft.AspNetCore.AzureAppServicesIntegration | 3.1.5.nupkg
Microsoft.AspNetCore.AzureAppServices.HostingStartup | 3.1.5.nupkg
Microsoft.AspNetCore.Authorization | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.WsFederation | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.Twitter | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.OpenIdConnect | 3.1.5.nupkg
Microsoft.AspNetCore.Authentication.Negotiate | 3.1.5.nupkg
Microsoft.AspNetCore.AzureAppServices.SiteExtension | 3.1.5.nupkg
Microsoft.AspNetCore.Components | 3.1.5.nupkg
Microsoft.AspNetCore.DataProtection.StackExchangeRedis | 3.1.5.nupkg
Microsoft.AspNetCore.DataProtection.Extensions | 3.1.5.nupkg
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore | 3.1.5.nupkg
Microsoft.AspNetCore.DataProtection.AzureStorage | 3.1.5.nupkg
Microsoft.AspNetCore.DataProtection.Abstractions | 3.1.5.nupkg
Microsoft.AspNetCore.DataProtection | 3.1.5.nupkg
Microsoft.AspNetCore.DataProtection.AzureKeyVault | 3.1.5.nupkg
Microsoft.AspNetCore.Cryptography.Internal | 3.1.5.nupkg
Microsoft.AspNetCore.Connections.Abstractions | 3.1.5.nupkg
Microsoft.AspNetCore.ConcurrencyLimiter | 3.1.5.nupkg
Microsoft.AspNetCore.Components.Web | 3.1.5.nupkg
Microsoft.AspNetCore.Components.Forms | 3.1.5.nupkg
Microsoft.AspNetCore.Components.Authorization | 3.1.5.nupkg
Microsoft.AspNetCore.Components.Analyzers | 3.1.5.nupkg
Microsoft.AspNetCore.Cryptography.KeyDerivation | 3.1.5.nupkg
dotnet-svcutil.xmlserializer | 1.2.0.nupkg
System.Net.Http.WinHttpHandler | 4.7.2.nupkg
System.Net.Http.Json | 3.2.1.nupkg
Microsoft.AspNetCore.Mvc.Razor.Extensions | 3.1.5.nupkg
Microsoft.AspNetCore.Razor.Language | 3.1.5.nupkg
Microsoft.CodeAnalysis.Razor | 3.1.5.nupkg
Microsoft.NET.Sdk.Razor | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Tools | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.InMemory | 3.1.5.nupkg
Microsoft.EntityFrameworkCore | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Abstractions | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Analyzers | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Cosmos | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Design | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Proxies | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Relational | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Relational.Specification.Tests | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Specification.Tests | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Sqlite | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Sqlite.Core | 3.1.5.nupkg
dotnet-ef | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite | 3.1.5.nupkg
Microsoft.EntityFrameworkCore.SqlServer | 3.1.5.nupkg
Microsoft.Data.Sqlite.Core | 3.1.5.nupkg
Microsoft.Data.Sqlite | 3.1.5.nupkg
Microsoft.JSInterop | 3.1.5.nupkg
Microsoft.Extensions.FileProviders.Physical | 3.1.5.nupkg
Microsoft.Extensions.FileProviders.Embedded | 3.1.5.nupkg
Microsoft.Extensions.FileProviders.Composite | 3.1.5.nupkg
Microsoft.Extensions.FileProviders.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks | 3.1.5.nupkg
Microsoft.Extensions.DiagnosticAdapter | 3.1.5.nupkg
Microsoft.Extensions.DependencyInjection.Specification.Tests | 3.1.5.nupkg
Microsoft.Extensions.DependencyInjection.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.DependencyInjection | 3.1.5.nupkg
Microsoft.Extensions.Configuration.Xml | 3.1.5.nupkg
Microsoft.Extensions.Configuration.UserSecrets | 3.1.5.nupkg
Microsoft.Extensions.Configuration.NewtonsoftJson | 3.1.5.nupkg
Microsoft.Extensions.Configuration.KeyPerFile | 3.1.5.nupkg
Microsoft.Extensions.Configuration.Json | 3.1.5.nupkg
Microsoft.Extensions.WebEncoders | 3.1.5.nupkg
Microsoft.Extensions.Configuration.Ini | 3.1.5.nupkg
Microsoft.Extensions.Configuration.EnvironmentVariables | 3.1.5.nupkg
Microsoft.Extensions.Configuration.CommandLine | 3.1.5.nupkg
Microsoft.Extensions.Configuration.Binder | 3.1.5.nupkg
Microsoft.Extensions.Configuration.AzureKeyVault | 3.1.5.nupkg
Microsoft.Extensions.Configuration.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.Configuration | 3.1.5.nupkg
Microsoft.Extensions.Caching.StackExchangeRedis | 3.1.5.nupkg
Microsoft.Extensions.Caching.SqlServer | 3.1.5.nupkg
Microsoft.Extensions.Caching.Memory | 3.1.5.nupkg
Microsoft.Extensions.Caching.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.Configuration.FileExtensions | 3.1.5.nupkg
Microsoft.Extensions.FileSystemGlobbing | 3.1.5.nupkg
Microsoft.Extensions.Primitives | 3.1.5.nupkg
Microsoft.Extensions.Options.DataAnnotations | 3.1.5.nupkg
Microsoft.Extensions.Options.ConfigurationExtensions | 3.1.5.nupkg
Microsoft.Extensions.Options | 3.1.5.nupkg
Microsoft.Extensions.ObjectPool | 3.1.5.nupkg
Microsoft.Extensions.Logging.TraceSource | 3.1.5.nupkg
Microsoft.Extensions.Logging.EventSource | 3.1.5.nupkg
Microsoft.Extensions.Logging.EventLog | 3.1.5.nupkg
Microsoft.Extensions.Logging.Debug | 3.1.5.nupkg
Microsoft.Extensions.Logging.Configuration | 3.1.5.nupkg
Microsoft.Extensions.Logging.AzureAppServices | 3.1.5.nupkg
Microsoft.Extensions.Logging.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.Logging | 3.1.5.nupkg
Microsoft.Extensions.Localization.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.Localization | 3.1.5.nupkg
Microsoft.Extensions.Http.Polly | 3.1.5.nupkg
Microsoft.Extensions.Http | 3.1.5.nupkg
Microsoft.Extensions.Hosting.WindowsServices | 3.1.5.nupkg
Microsoft.Extensions.Hosting.Systemd | 3.1.5.nupkg
Microsoft.Extensions.Hosting.Abstractions | 3.1.5.nupkg
Microsoft.Extensions.Hosting | 3.1.5.nupkg
Microsoft.Extensions.Logging.Console | 3.1.5.nupkg
microsoft.build | 16.6.0.nupkg
microsoft.build.conversion.core | 16.6.0.nupkg
microsoft.build.engine | 16.6.0.nupkg
microsoft.build.framework | 16.6.0.nupkg
microsoft.build.runtime | 16.6.0.nupkg
microsoft.build.tasks.core | 16.6.0.nupkg
microsoft.build.utilities.core | 16.6.0.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.5/3.1.5.md
[snap-install]: 3.1.5-install-instructions.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.5-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.5-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://docs.microsoft.com/en-us/dotnet/core/install/
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-june-2020/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-core-3-1/
[//]: # ( Runtime 3.1.5)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/15132a5c-f0f4-4373-8b8b-b7e70834d899/cad479dda52359ad43956471274ec932/dotnet-runtime-3.1.5-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/65291ed8-e931-4605-9d5a-265928a835d0/1a15d18655c8b260170117e9bd1a1cb7/dotnet-runtime-3.1.5-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cb2d5114-feed-4dd9-aada-afe3784d2c1a/95e7bc1576e4344b3a1b101e3b4f763d/dotnet-runtime-3.1.5-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/56f86fa0-834a-4397-94b4-d4331078c91f/7de4bc57ed6a5cd7dddcefeed7aa1fd6/dotnet-runtime-3.1.5-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d00eaeea-6d7b-4e73-9d96-c0234ed3b665/0d25d9d1aeaebdeef01d15370d5cd22b/dotnet-runtime-3.1.5-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/e6494006-4940-48ed-9c28-a91fd4cfafba/fd10e3e409d55ff15f43611db6f9ead0/dotnet-runtime-3.1.5-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a1c0ee25-9bd5-48ef-96e9-33d3d8e52a7c/8cf1d5065aa5352b838c1c4278942dcf/dotnet-runtime-3.1.5-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/49656370-10aa-4db6-858b-db9fb51a1797/45929f56c70c9c6b7d864e353dae84e1/dotnet-runtime-3.1.5-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/49b6cd90-d8d1-4ce8-a7c2-2f7dfd3bdd5c/618343672c8f8972704f12b3517ce912/dotnet-runtime-3.1.5-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d97cfaf4-b17f-46c7-9a11-7f0d25dfd8b0/f76d4fce8e38b289efb9403aab0a0c9f/dotnet-runtime-3.1.5-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/bc76dfb3-3666-4dcb-9e29-79f0a4e5c727/3b1c6aa838db8d49d8de1cb65feae626/dotnet-runtime-3.1.5-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/fcea8129-4de7-4842-aa80-42efb2e0f250/3205c15852a1b559659991236eca5ac5/dotnet-runtime-3.1.5-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/76a97b28-a754-456b-be6d-fbf82cc8a237/746ac1926d55f8e0827404a763a5c5c0/dotnet-runtime-3.1.5-win-x86.zip
[//]: # ( WindowsDesktop 3.1.5)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/86835fe4-93b5-4f4e-a7ad-c0b0532e407b/f4f2b1239f1203a05b9952028d54fc13/windowsdesktop-runtime-3.1.5-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/df7b90d9-b93e-4974-85ef-c1de418bc186/e380e58bbd8505ebaee6c3abb23baade/windowsdesktop-runtime-3.1.5-win-x86.exe
[//]: # ( ASP 3.1.5)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7e519c5b-b434-4067-bc0b-bb38179f7e4f/80a840dc7fb2c4a065f442aea1d98516/aspnetcore-runtime-3.1.5-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/91f02336-1852-421d-907f-4aeae252a15e/dbb20e3a176c38a569cbcaa5d1d5782b/aspnetcore-runtime-3.1.5-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/021b09b2-1de4-47f8-9dcb-183795e2ada3/4f823c9ab8b968f734eda54f7d40090e/aspnetcore-runtime-3.1.5-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8438f49c-a336-4846-87ae-b3badfb978ee/2b4d72e03ccd0e737657e0534f4e092c/aspnetcore-runtime-3.1.5-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6827d794-a218-4352-b3b3-a19ec773c975/e3e53bc2f20df220a29c6e09f74d8a00/aspnetcore-runtime-3.1.5-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3d4a6ce4-7d9f-4087-bd06-23aa54d1b9ac/e6fb7592489a5d5a8a2801196509dd72/aspnetcore-runtime-3.1.5-osx-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/c21c6919-1016-49b9-a99b-3d99fe489f3c/5e25370475eb6a891d883de77ebc4613/aspnetcore-runtime-3.1.5-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/6818f1f7-75de-43e5-9202-2b328ca127f7/039edc4bab29e5af63ed618e59f82fad/aspnetcore-runtime-3.1.5-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/b5d221a7-f799-4ac2-9da9-26855a6778c1/7eefcd7210b825b98c4ad14190075f70/aspnetcore-runtime-3.1.5-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/c5f311ca-3ed2-4249-8e09-51ff15250836/dfbee818fd022129a60f290187215b2f/aspnetcore-runtime-3.1.5-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/7e417328-ef5b-4584-96c6-feaadcb8da80/e5c2f428da51907d6a2c6abc35fa172a/aspnetcore-runtime-3.1.5-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/7c30d3a1-f519-4167-b850-b9c49bf2aa0e/dbfa957a76a41a1e1795f59d400d4ccd/dotnet-hosting-3.1.5-win.exe
[//]: # ( SDK 3.1.105 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/52f61afc-0897-4bc7-abf4-f936f9c6f637/8fca0abb8c378a32d966c1b762524c0d/dotnet-sdk-3.1.105-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a2de5fc2-1c17-4ea2-bf3f-77c404e9263e/f9c79b6067afc819656ba9f6e6a4ed73/dotnet-sdk-3.1.105-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b1f4dd66-4a78-49a4-bcb9-bf73bdfa39d9/d144548fecee7312f70c40eb0aac7c3b/dotnet-sdk-3.1.105-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/37268c18-226d-436b-b13c-4b77b7f42140/17e8a85360206006a557d634d16713cd/dotnet-sdk-3.1.105-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/47a85fd5-0b13-4c18-a9a7-5cf2cc3038aa/4ce0adb969338364899237f6644ba0b2/dotnet-sdk-3.1.105-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/14a67d5a-a425-4590-9a69-ba6046d9cd66/840237e0763f50caa1ad02fdd00c59f5/dotnet-sdk-3.1.105-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/10ad68c5-250a-4d93-8350-d4039da5e188/82512828fe1a8909e09c50fc2320ef26/dotnet-sdk-3.1.105-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/7caeeb16-d88b-4971-b60f-37ba6f1f363d/ee1b90a2f88dc80c467245376b7f3b1c/dotnet-sdk-3.1.105-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/9aa47df1-aa7a-4f15-9a7a-1d6076e257cd/d6a65f8cf039676b505a630b4e70e5b3/dotnet-sdk-3.1.105-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/3b50c65a-b098-4d9d-aa1c-b3b24d364e47/9af666cb3326428ada9aef5847cf58c6/dotnet-sdk-3.1.105-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/e048019a-f9b0-4aaf-9808-4f30775bf160/b1e456c8022b1fa81afcefc13c648926/dotnet-sdk-3.1.105-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/ff6f7f4f-589f-4456-ba1f-338876583888/d62d8cca47071eafe42e18863f7411c2/dotnet-sdk-3.1.105-win-x86.zip
[//]: # ( Symbols )

View file

@ -1,13 +1,465 @@
{
"channel-version": "3.1",
"latest-release": "3.1.4",
"latest-release-date": "2020-05-19",
"latest-runtime": "3.1.4",
"latest-sdk": "3.1.300",
"latest-release": "3.1.5",
"latest-release-date": "2020-06-09",
"latest-runtime": "3.1.5",
"latest-sdk": "3.1.301",
"support-phase": "lts",
"eol-date": "2022-12-03",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-06-09",
"release-version": "3.1.5",
"security": true,
"cve-list": [
{
"cve-id": "CVE-2020-1108",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1108"
}
],
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.5/3.1.5.md",
"runtime": {
"version": "3.1.5",
"version-display": "3.1.5",
"vs-version": "16.4.10 16.6.2",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/15132a5c-f0f4-4373-8b8b-b7e70834d899/cad479dda52359ad43956471274ec932/dotnet-runtime-3.1.5-linux-arm.tar.gz",
"hash": "c3eb0453893ca7f758e491780031ef0b1323a14c080740847aea652b5c4db99d30e8b3b27fcd306c3a098dc838572c41d3ea871156ba62d9302df32e63a28835"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/65291ed8-e931-4605-9d5a-265928a835d0/1a15d18655c8b260170117e9bd1a1cb7/dotnet-runtime-3.1.5-linux-arm64.tar.gz",
"hash": "ebf79c3f529bbffc9445f7d75849896f67caede5be93be1a3291edb1e85120ffb35d65990cc1ed3c74bfe66627c11d93fa1283aeebbf1adc24fde1bf9545fe8a"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cb2d5114-feed-4dd9-aada-afe3784d2c1a/95e7bc1576e4344b3a1b101e3b4f763d/dotnet-runtime-3.1.5-linux-musl-arm64.tar.gz",
"hash": "3ee1b7a86be7cfcddcf501f8fd3bd482ce7d5695f5149765ac0967658bd9a2ee47f417159e096ce774e651314f532545d4e82a589b8260ee6ba84384f0ed4e42"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/56f86fa0-834a-4397-94b4-d4331078c91f/7de4bc57ed6a5cd7dddcefeed7aa1fd6/dotnet-runtime-3.1.5-linux-musl-x64.tar.gz",
"hash": "2f98acecc0779dba03fc5ee674d6305dda780f174af47582d80d556002028df0b6a594e5d13dd36f8a1443e5fc6950ef126064ba6c4b3109b490c6d5ebcb9f39"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d00eaeea-6d7b-4e73-9d96-c0234ed3b665/0d25d9d1aeaebdeef01d15370d5cd22b/dotnet-runtime-3.1.5-linux-x64.tar.gz",
"hash": "b88e110df7486266e3850d26617290cdee13b20dabc6fbe62bcac052d93cd7e76f787722a5beb15b06673577a47ba26943530cb14913569a25d9f55df029f306"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e6494006-4940-48ed-9c28-a91fd4cfafba/fd10e3e409d55ff15f43611db6f9ead0/dotnet-runtime-3.1.5-osx-x64.pkg",
"hash": "81fc60fa00b14d551ec8c69cfc4267219e64f25c5cad667780b534091577b7084af79817812cdcf2707961970d48d178dd5d9f771cf6dc7f62e2f8cfa77ac34f"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a1c0ee25-9bd5-48ef-96e9-33d3d8e52a7c/8cf1d5065aa5352b838c1c4278942dcf/dotnet-runtime-3.1.5-osx-x64.tar.gz",
"hash": "ef6844e9be6c1385c486038997e401461d4459f1b1353e9ec9f5b01ca8a3eb9244cbf986a77726f50831f327cb8795816e2b1e959e2627d8f5778f0dbb4a249e"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/49656370-10aa-4db6-858b-db9fb51a1797/45929f56c70c9c6b7d864e353dae84e1/dotnet-runtime-3.1.5-rhel.6-x64.tar.gz",
"hash": "69a22ac1d8d692e0b95a349e351da110aa6ef229a7bb691f2c6c60722748b445b2a25c11e2be86d68238634640fc080b34aa3595bad104fb22fbfeeab536ffaf"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/49b6cd90-d8d1-4ce8-a7c2-2f7dfd3bdd5c/618343672c8f8972704f12b3517ce912/dotnet-runtime-3.1.5-win-arm.zip",
"hash": "551eff63b0aff9eac07c9842fb6d3c53c2f080756edd72a07b423e16123b1946c048ea90b6d8421e9f06648c50d67c7221e070f49319925f6ac3a4d56da058c9"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d97cfaf4-b17f-46c7-9a11-7f0d25dfd8b0/f76d4fce8e38b289efb9403aab0a0c9f/dotnet-runtime-3.1.5-win-x64.exe",
"hash": "3e656dc718e1fea248f628f71a8771a542711494ee8b07de9c4bca998a86e5c2c9080bf4f9b6fe6fcf91a9c66491f481b083c8d86c44d0f05fb6dc965d6685bd"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/bc76dfb3-3666-4dcb-9e29-79f0a4e5c727/3b1c6aa838db8d49d8de1cb65feae626/dotnet-runtime-3.1.5-win-x64.zip",
"hash": "7baebbf09273acbf082c0cd1e9e1d935cd4a96794fb6a05dc67f3e80dc027775738c900db1e4c025cfe0562cadd0f3f5feaff00d6feec4dcd372633d27a17820"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/fcea8129-4de7-4842-aa80-42efb2e0f250/3205c15852a1b559659991236eca5ac5/dotnet-runtime-3.1.5-win-x86.exe",
"hash": "7b258cfb442eb5991f9047f5fb030e7888291a05ed048cd1bd24446dce8b5195de49fa25b128ec0902b787448ae2af386001d8454b597c7a94f30b6a3408e86b"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/76a97b28-a754-456b-be6d-fbf82cc8a237/746ac1926d55f8e0827404a763a5c5c0/dotnet-runtime-3.1.5-win-x86.zip",
"hash": "1536cb211492804d62b5aa413909c16448f18ed92c462f4969d106502320fab2bac326376c77a05ecdaf6b4d81a7502d241058f09154bd53b81da9da127bdfbb"
}
]
},
"sdk": {
"version": "3.1.301",
"version-display": "3.1.301",
"runtime-version": "3.1.5",
"vs-version": "16.6.2",
"vs-support": "Visual Studio 2019 (v16.6)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/dbf4ea18-70bf-4b0f-ae9c-65c8c88bcadd/115e84fb95170ddeeaf9bdb9222c964d/dotnet-sdk-3.1.301-linux-arm.tar.gz",
"hash": "732364b93caaa94ee96dfe24ed42e63ae59862afd0691760557c22019c67139f92db28cc5e730618a630c45a96b2468676867345e54ae93004567b470edf5f47"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fe5c0663-3ed1-4a93-95e1-fd068b89215b/14d1caad8fd2859d5f3514745a9bf6b3/dotnet-sdk-3.1.301-linux-arm64.tar.gz",
"hash": "834dc5829730ea7abcf5adfca5557458d5de534597933dbdcec99abbd7eff00f3e1d0084b7f3572de80b4d333dee6d32cffa2d1ead022faad3957c95e5a920a0"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5cb7099e-fc8e-4a44-b9ec-79f353c4635f/234e69ea68821cf6fa022c4aa9781cbb/dotnet-sdk-3.1.301-linux-musl-x64.tar.gz",
"hash": "f1631569991b448ab9814fe1150609136f428d686d67f93e23b203163dc743de9b0c061bd5dd15f383c832a143ed9e2f7e70d4d417f75c6812d4ff09efb82188"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8db2b522-7fa2-4903-97ec-d6d04d297a01/f467006b9098c2de256e40d2e2f36fea/dotnet-sdk-3.1.301-linux-x64.tar.gz",
"hash": "dd39931df438b8c1561f9a3bdb50f72372e29e5706d3fb4c490692f04a3d55f5acc0b46b8049bc7ea34dedba63c71b4c64c57032740cbea81eef1dce41929b4e"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/aad9adc7-90bb-4294-a378-00f4cc5fb695/89cfc771a783b1441c34ac925aee7141/dotnet-sdk-3.1.301-osx-x64.pkg",
"hash": "5c125edb32d388eea765334d465b3b312fe55f5e0ad53174e6f643fb0e461eb147ca28e66b093f85ae26fab658f23f88af5253684c4bf170aa4fa663902449d8"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d8bc3271-b869-4dc3-96db-d91c574bacc7/b2fbdac38ca4ac71194a41cdd97f1d82/dotnet-sdk-3.1.301-osx-x64.tar.gz",
"hash": "0b2b88698047434bd80efd85b5f54632004951b010b9737d5e351a2e28e35eb48e61394add156eac850befab1d5bb9b557bd154ae7ae54c77470f1f2a9ef4ea0"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f64df040-452c-4e57-96e1-56936ee8a8ea/758bc5ce3ad1331a97f2c39f5f21f27b/dotnet-sdk-3.1.301-rhel.6-x64.tar.gz",
"hash": "b7d95969c604e59c0726f46d110aaad1bbd73a532a9a41e1d6827bf0da4e469c4f041dbedfd0f73545899b4238c1691717ad607517f8fdde2285d316a0235f5a"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/46cc1326-b655-46b5-925b-bd69e627f699/4110a7c0356eb62ae5c44a7cff9b0f56/dotnet-sdk-3.1.301-win-arm.zip",
"hash": "1a423728488fa4797b34d28889fefb31ea52aa54e0b9e3b4c9850b1bed16c20a22cea1da1f43d6d251ed378bc2f08c63728b226eda13b5312c5ceb6713e37e75"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4e88f517-196e-4b17-a40c-2692c689661d/eed3f5fca28262f764d8b650585a7278/dotnet-sdk-3.1.301-win-x64.exe",
"hash": "d4c564fb970f8f21ae7c1ae3185eb1f048d2ff79755198c25cfe461049c3a34de7392c8f4c66da2591b086ea69fb4d9caf830346ed98619743a201d05148ca16"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cb535978-7eb4-4bcb-8e85-98c3d42eae3f/1acdc320ba87e1d840242ee4b930b026/dotnet-sdk-3.1.301-win-x64.zip",
"hash": "99a124d19503036bcedefffb348fa23476e60cdabfcb8e9cddc6545f05f57d8d2cf5bc7ff9b42039387a15328471c5bd47e50c5ea129fbd418a6e0fa9607bb17"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/77b944fa-aa83-4101-85a9-9d3bde200ebc/f0f0e2a3544593b19df8471cbe9b6b61/dotnet-sdk-3.1.301-win-x86.exe",
"hash": "6c060c220b0282c88382a66f4569501c2fb803ded6c90481f1828715105e9ca2a9e31ed48eca6f1acc28b73b237fdaaf872c912f67703fb5aa7ecf9c15c8cf6d"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/26af3d3c-a6d9-43f7-8e31-63e6fdd122a9/63722096d4aca389101c3c8ca74c9334/dotnet-sdk-3.1.301-win-x86.zip",
"hash": "d955f6a129ddc5ee8173b225b5053f1a7f7a3f38ba5e68237ba53eff792b6b1473649cda4eabd637c4460600bf649b0dc02e99c2a7db0ad1d982dc23ae710b6c"
}
]
},
"sdks": [
{
"version": "3.1.301",
"version-display": "3.1.301",
"runtime-version": "3.1.5",
"vs-version": "16.6.2",
"vs-support": "Visual Studio 2019 (v16.6)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/dbf4ea18-70bf-4b0f-ae9c-65c8c88bcadd/115e84fb95170ddeeaf9bdb9222c964d/dotnet-sdk-3.1.301-linux-arm.tar.gz",
"hash": "732364b93caaa94ee96dfe24ed42e63ae59862afd0691760557c22019c67139f92db28cc5e730618a630c45a96b2468676867345e54ae93004567b470edf5f47"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fe5c0663-3ed1-4a93-95e1-fd068b89215b/14d1caad8fd2859d5f3514745a9bf6b3/dotnet-sdk-3.1.301-linux-arm64.tar.gz",
"hash": "834dc5829730ea7abcf5adfca5557458d5de534597933dbdcec99abbd7eff00f3e1d0084b7f3572de80b4d333dee6d32cffa2d1ead022faad3957c95e5a920a0"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5cb7099e-fc8e-4a44-b9ec-79f353c4635f/234e69ea68821cf6fa022c4aa9781cbb/dotnet-sdk-3.1.301-linux-musl-x64.tar.gz",
"hash": "f1631569991b448ab9814fe1150609136f428d686d67f93e23b203163dc743de9b0c061bd5dd15f383c832a143ed9e2f7e70d4d417f75c6812d4ff09efb82188"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8db2b522-7fa2-4903-97ec-d6d04d297a01/f467006b9098c2de256e40d2e2f36fea/dotnet-sdk-3.1.301-linux-x64.tar.gz",
"hash": "dd39931df438b8c1561f9a3bdb50f72372e29e5706d3fb4c490692f04a3d55f5acc0b46b8049bc7ea34dedba63c71b4c64c57032740cbea81eef1dce41929b4e"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/aad9adc7-90bb-4294-a378-00f4cc5fb695/89cfc771a783b1441c34ac925aee7141/dotnet-sdk-3.1.301-osx-x64.pkg",
"hash": "5c125edb32d388eea765334d465b3b312fe55f5e0ad53174e6f643fb0e461eb147ca28e66b093f85ae26fab658f23f88af5253684c4bf170aa4fa663902449d8"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d8bc3271-b869-4dc3-96db-d91c574bacc7/b2fbdac38ca4ac71194a41cdd97f1d82/dotnet-sdk-3.1.301-osx-x64.tar.gz",
"hash": "0b2b88698047434bd80efd85b5f54632004951b010b9737d5e351a2e28e35eb48e61394add156eac850befab1d5bb9b557bd154ae7ae54c77470f1f2a9ef4ea0"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f64df040-452c-4e57-96e1-56936ee8a8ea/758bc5ce3ad1331a97f2c39f5f21f27b/dotnet-sdk-3.1.301-rhel.6-x64.tar.gz",
"hash": "b7d95969c604e59c0726f46d110aaad1bbd73a532a9a41e1d6827bf0da4e469c4f041dbedfd0f73545899b4238c1691717ad607517f8fdde2285d316a0235f5a"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/46cc1326-b655-46b5-925b-bd69e627f699/4110a7c0356eb62ae5c44a7cff9b0f56/dotnet-sdk-3.1.301-win-arm.zip",
"hash": "1a423728488fa4797b34d28889fefb31ea52aa54e0b9e3b4c9850b1bed16c20a22cea1da1f43d6d251ed378bc2f08c63728b226eda13b5312c5ceb6713e37e75"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4e88f517-196e-4b17-a40c-2692c689661d/eed3f5fca28262f764d8b650585a7278/dotnet-sdk-3.1.301-win-x64.exe",
"hash": "d4c564fb970f8f21ae7c1ae3185eb1f048d2ff79755198c25cfe461049c3a34de7392c8f4c66da2591b086ea69fb4d9caf830346ed98619743a201d05148ca16"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cb535978-7eb4-4bcb-8e85-98c3d42eae3f/1acdc320ba87e1d840242ee4b930b026/dotnet-sdk-3.1.301-win-x64.zip",
"hash": "99a124d19503036bcedefffb348fa23476e60cdabfcb8e9cddc6545f05f57d8d2cf5bc7ff9b42039387a15328471c5bd47e50c5ea129fbd418a6e0fa9607bb17"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/77b944fa-aa83-4101-85a9-9d3bde200ebc/f0f0e2a3544593b19df8471cbe9b6b61/dotnet-sdk-3.1.301-win-x86.exe",
"hash": "6c060c220b0282c88382a66f4569501c2fb803ded6c90481f1828715105e9ca2a9e31ed48eca6f1acc28b73b237fdaaf872c912f67703fb5aa7ecf9c15c8cf6d"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/26af3d3c-a6d9-43f7-8e31-63e6fdd122a9/63722096d4aca389101c3c8ca74c9334/dotnet-sdk-3.1.301-win-x86.zip",
"hash": "d955f6a129ddc5ee8173b225b5053f1a7f7a3f38ba5e68237ba53eff792b6b1473649cda4eabd637c4460600bf649b0dc02e99c2a7db0ad1d982dc23ae710b6c"
}
]
},
{
"version": "3.1.105",
"version-display": "3.1.105",
"runtime-version": "3.1.5",
"vs-version": "16.4.10",
"vs-support": "Visual Studio 2019 (v16.4)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/52f61afc-0897-4bc7-abf4-f936f9c6f637/8fca0abb8c378a32d966c1b762524c0d/dotnet-sdk-3.1.105-linux-arm.tar.gz",
"hash": "a5e7531445c5efc5d647a6dca3725bc13b92df19aa87b63163b01518de5eb29e22f02c124807f29edc5f07ab31c56b675a6c34a1eae50e090c4ddf930fb4bd9f"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a2de5fc2-1c17-4ea2-bf3f-77c404e9263e/f9c79b6067afc819656ba9f6e6a4ed73/dotnet-sdk-3.1.105-linux-arm64.tar.gz",
"hash": "10c13928f8f3b4a7bd0c782d3579e417b526f3497cb59deeef4ae9e7fae3228df2ecddfeb1c66f9c2d329204a62fa0c4bb759e2954a0e26ac00419b3efd6017e"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b1f4dd66-4a78-49a4-bcb9-bf73bdfa39d9/d144548fecee7312f70c40eb0aac7c3b/dotnet-sdk-3.1.105-linux-musl-x64.tar.gz",
"hash": "8922550a852f04aa7e331b141ce7eff1a53965b2b4b58ceca9c01b25a0345d6999ecaccdb77541e5c3eae604ff0faf54ecadad50c6dcc3ad1dcc91b05ffa77b3"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/37268c18-226d-436b-b13c-4b77b7f42140/17e8a85360206006a557d634d16713cd/dotnet-sdk-3.1.105-linux-x64.tar.gz",
"hash": "4c15208c6edde102c447cbe20abb3189ae9ab530118297994a523b3ef4bababffe74830d0803fd8afcae3cd6bccf1a8f02c42c3bee19bf6ccd6d7cf8d25c68f4"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/47a85fd5-0b13-4c18-a9a7-5cf2cc3038aa/4ce0adb969338364899237f6644ba0b2/dotnet-sdk-3.1.105-osx-x64.pkg",
"hash": "d42f6714f4dbed52aa3d6bf81eaac7840489c30c7019929488c587fbbed2098778500e9976dfbe486e757506409944ac098064590a2ae6acb6c99b8ffbb3d6bf"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/14a67d5a-a425-4590-9a69-ba6046d9cd66/840237e0763f50caa1ad02fdd00c59f5/dotnet-sdk-3.1.105-osx-x64.tar.gz",
"hash": "df6df2d120c373088813e1015ddd24c5aceeb0425dba976a2771ee6bcd49bb9fcf0fd1182b7634b003f0102a44c7fda3be19cefb1ce45428f4781d6c7ef440d4"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/10ad68c5-250a-4d93-8350-d4039da5e188/82512828fe1a8909e09c50fc2320ef26/dotnet-sdk-3.1.105-rhel.6-x64.tar.gz",
"hash": "a8c57a31b388454499f6b612ae62d73eccaaa85c68df383c2514261a5daaeb69188ab0729866bbd4d41632f6db96a31106b765f616017c802659c5d7a803d074"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/7caeeb16-d88b-4971-b60f-37ba6f1f363d/ee1b90a2f88dc80c467245376b7f3b1c/dotnet-sdk-3.1.105-win-arm.zip",
"hash": "44eb1ea82f4935f05999e567456bd760207c362220866fa53db8e8bea619ecc26ff396b25be00df3cd085df5fa2bf18c7909abd2a784e27c9518194fc464bd66"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9aa47df1-aa7a-4f15-9a7a-1d6076e257cd/d6a65f8cf039676b505a630b4e70e5b3/dotnet-sdk-3.1.105-win-x64.exe",
"hash": "1c3121ef7be444581589bfd06a8e6881669fbc0e68cac8f8aa38cb2bc72d3fbfc477d47711b625966b150f396fb0563d6b103a1f990522c639a28f2ce6013531"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3b50c65a-b098-4d9d-aa1c-b3b24d364e47/9af666cb3326428ada9aef5847cf58c6/dotnet-sdk-3.1.105-win-x64.zip",
"hash": "6a1398fb3b0cff3942c4a6668e0b187000fc7f0ccc9a557673b74b5a5e3da2162f24b4b368a88aa8580f24d41664129d85a83bc435c8e0f995ce4cc2ff7ede17"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/e048019a-f9b0-4aaf-9808-4f30775bf160/b1e456c8022b1fa81afcefc13c648926/dotnet-sdk-3.1.105-win-x86.exe",
"hash": "b357519f7e1984c84b86d9903e3e36d110142d465b98f9effdbc892d1dc6b3a9cbd82931d39e84a98a40bad04d70e42dcac552cc35c752da2426702118a80eba"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/ff6f7f4f-589f-4456-ba1f-338876583888/d62d8cca47071eafe42e18863f7411c2/dotnet-sdk-3.1.105-win-x86.zip",
"hash": "994da02c662c9324c7464ef740f01e05870d4a1b67c5b9fee550c9b764d61b71a7372055ba37addabf8a2fba083e3d14cb9154ef9bb3a89eb73d904afa6222d8"
}
]
}
],
"aspnetcore-runtime": {
"version": "3.1.5",
"version-display": "3.1.5",
"version-aspnetcoremodule": [
"13.1.20142.5"
],
"vs-version": "16.4.10 16.6.2",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/7e519c5b-b434-4067-bc0b-bb38179f7e4f/80a840dc7fb2c4a065f442aea1d98516/aspnetcore-runtime-3.1.5-linux-arm.tar.gz",
"hash": "090ef0da2454935015184f4b4b968c049eb806d19dcd258af06265e922f9d0df209fa9f84ebefe9e7cb6bb391dd0459eb3b5f7e8609fca2cffd75d3801c1b6a7"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/91f02336-1852-421d-907f-4aeae252a15e/dbb20e3a176c38a569cbcaa5d1d5782b/aspnetcore-runtime-3.1.5-linux-arm64.tar.gz",
"hash": "8ac87f0d5a7593a0341dbffc2d7e68a0e3ff86d512f03f40471020087152997df8176c6ea415275ed682a5fe68652e080c63f5bca6bdd10cbe76de6d086eb8ac"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/021b09b2-1de4-47f8-9dcb-183795e2ada3/4f823c9ab8b968f734eda54f7d40090e/aspnetcore-runtime-3.1.5-linux-musl-arm64.tar.gz",
"hash": "3d97ffabe40743b86b5264c6eebe26af894a98dc71d35570a5288373be48b7fb5f65734a891ca48feeb2d0e10825c6aeb2d0d315d41049844c1a901c9a77b59b"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8438f49c-a336-4846-87ae-b3badfb978ee/2b4d72e03ccd0e737657e0534f4e092c/aspnetcore-runtime-3.1.5-linux-musl-x64.tar.gz",
"hash": "b56aaefdd188106b47f3c20aa65f1fb3b9bdaca450e9599f132c178803119e7611ff8cde07c9248a49923dec1255d1e3e2fb53d7ec5807903c7bd1b1b9954a88"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6827d794-a218-4352-b3b3-a19ec773c975/e3e53bc2f20df220a29c6e09f74d8a00/aspnetcore-runtime-3.1.5-linux-x64.tar.gz",
"hash": "262a8e670a8800aea1c518e48a237543f2bca92010187d25cae2bd513163786c5b49ff2593b1e256ca89201fd3d819c2265f8a3946b257e8490b37a5a66e1fff"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3d4a6ce4-7d9f-4087-bd06-23aa54d1b9ac/e6fb7592489a5d5a8a2801196509dd72/aspnetcore-runtime-3.1.5-osx-x64.tar.gz",
"hash": "1c32470742e45bed30b34bda27c8d52164976fdd91880c330774200be64cc8bac495d661fc4410153020e5d07c6ecfca90e8df26a7a52be7a0adeb4e045deb74"
},
{
"name": "aspnetcore-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/c21c6919-1016-49b9-a99b-3d99fe489f3c/5e25370475eb6a891d883de77ebc4613/aspnetcore-runtime-3.1.5-win-arm.zip",
"hash": "f8864765da0ba7da02f998a0bd26df066b8553d43706115c743766e1898d92232a0462f06876bde7798d37ebab04160be0ceccdcf7e298fff1ba2cc6aa0dcde8"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6818f1f7-75de-43e5-9202-2b328ca127f7/039edc4bab29e5af63ed618e59f82fad/aspnetcore-runtime-3.1.5-win-x64.exe",
"hash": "b091b7c2403c2b86817f73a3f678313580f9d494e213978440795e359b9311ba89a6d10921ca35f172b3631b029b242b93ca2d3e08ed738a0859d6a0951f987b"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b5d221a7-f799-4ac2-9da9-26855a6778c1/7eefcd7210b825b98c4ad14190075f70/aspnetcore-runtime-3.1.5-win-x64.zip",
"hash": "e71f865cbd25f03d6975991da488ade449f315d71e1bdab50d2737a6e6f458ecbfe90addf44f24b56117af484175b6cd2f91d9583005167ea70e35be3e85cb34"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/c5f311ca-3ed2-4249-8e09-51ff15250836/dfbee818fd022129a60f290187215b2f/aspnetcore-runtime-3.1.5-win-x86.exe",
"hash": "6ab1c24d88ef3d929804afaa07a0279486aae720cd2281cb2f6b329b68750b3eb015365f79e008cbc515abeae62d59ed643346aaa070f94b11c45da1dde18a0c"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/7e417328-ef5b-4584-96c6-feaadcb8da80/e5c2f428da51907d6a2c6abc35fa172a/aspnetcore-runtime-3.1.5-win-x86.zip",
"hash": "d322d5a460f32e24df9d7da5c923bd72c14890625de2ebd5ee3bd50dd884e3b0867354e70cbb80bee8f5344ee98107d85d6b7585d6be247c3f81a99fb3a3d94b"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/7c30d3a1-f519-4167-b850-b9c49bf2aa0e/dbfa957a76a41a1e1795f59d400d4ccd/dotnet-hosting-3.1.5-win.exe",
"hash": "d4965bc1b3c39759e4781248e4b57ba358697ac2c5bfa8a29ec07388cdc8dc64ef0debd6686a2ee264b08eab76dac1b7830f8bf0254d33bcf89d0626f5d89055"
}
]
},
"windowsdesktop": {
"version": "3.1.5",
"version-display": "3.1.5",
"files": [
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/86835fe4-93b5-4f4e-a7ad-c0b0532e407b/f4f2b1239f1203a05b9952028d54fc13/windowsdesktop-runtime-3.1.5-win-x64.exe",
"hash": "5df17bd9fed94727ec5b151e1684bf9cdc6bfd3075f615ab546759ffca0679d23a35fcf7a8961ac014dd5a4ff0d22ef5f7434a072e23122d5c0415fcd4198831"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/df7b90d9-b93e-4974-85ef-c1de418bc186/e380e58bbd8505ebaee6c3abb23baade/windowsdesktop-runtime-3.1.5-win-x86.exe",
"hash": "b5e7e49d5b6f4f83a665d1f4c7d83700540f9c888c3c36ccd44f5395138dc1e258a4fcb260845d8ac7e3e5a1513be1666521edeaf6dfd67669a04a1290cda7e1"
}
]
},
"symbols": {
"version": "3.1.5",
"files": []
}
},
{
"release-date": "2020-05-19",
"release-version": "3.1.4",

View file

@ -7,8 +7,8 @@ The latest supported release is [.NET Core 3.1](3.1).
You can download the latest updates for .NET Core.
* [.NET 5.0 Preview 4](5.0/preview/5.0.0-preview.4.md)
* [.NET Core 3.1.4](3.1/3.1.4/3.1.4.md)
* [.NET Core 2.1.18](2.1/2.1.18/2.1.18.md)
* [.NET Core 3.1.5](3.1/3.1.5/3.1.5.md)
* [.NET Core 2.1.19](2.1/2.1.19/2.1.19.md)
## Release Information

View file

@ -14,11 +14,11 @@
},
{
"channel-version": "3.1",
"latest-release": "3.1.4",
"latest-release-date": "2020-05-12",
"latest-release": "3.1.5",
"latest-release-date": "2020-06-09",
"security": true,
"latest-runtime": "3.1.4",
"latest-sdk": "3.1.300",
"latest-runtime": "3.1.5",
"latest-sdk": "3.1.301",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2022-12-03",
@ -38,11 +38,11 @@
},
{
"channel-version": "2.1",
"latest-release": "2.1.18",
"latest-release-date": "2020-05-12",
"latest-release": "2.1.19",
"latest-release-date": "2020-06-09",
"security": true,
"latest-runtime": "2.1.18",
"latest-sdk": "2.1.806",
"latest-runtime": "2.1.19",
"latest-sdk": "2.1.807",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2021-08-21",