Artifacts for Feb 2020 Release

This commit is contained in:
Rahul Bhandari 2020-02-12 15:41:37 -08:00
parent e1ebcb23a1
commit 00e9f64b97
17 changed files with 2397 additions and 40 deletions

View file

@ -12,9 +12,9 @@ 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.1](https://dotnet.microsoft.com/download/dotnet-core/3.1) | December 3, 2022 |
| [.NET Core 3.0](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-0/) | September 23, 2019 | Maintenance | [3.0.2](https://dotnet.microsoft.com/download/dotnet-core/3.0) | March 3, 2020 |
| [.NET Core 2.1](https://blogs.msdn.microsoft.com/dotnet/2018/05/30/announcing-net-core-2-1) | May 30, 2018 | LTS | [2.1.15](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.2](https://dotnet.microsoft.com/download/dotnet-core/3.1) | December 3, 2022 |
| [.NET Core 3.0](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-0/) | September 23, 2019 | Maintenance | [3.0.3](https://dotnet.microsoft.com/download/dotnet-core/3.0) | March 3, 2020 |
| [.NET Core 2.1](https://blogs.msdn.microsoft.com/dotnet/2018/05/30/announcing-net-core-2-1) | May 30, 2018 | LTS | [2.1.16](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.16
.NET Core 2.1.16 comprises:
* .NET Core Runtime 2.1.16
* ASP.NET Core 2.1.16
* .NET Core SDK 2.1.512
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.16/2.1.16.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.16-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.16/2.1.16.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-february-2020/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/783f01c8-5e85-4a26-b0f8-e2197cd37a5a/fe65d151ad17e0d64f868cb3b8855616/dotnet-hosting-2.1.16-win.exe

View file

@ -0,0 +1,246 @@
# .NET Core 2.1.16 Update - February 18, 2020
[.NET Core 2.1.16](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.16, ASP.NET Core 2.1.16 and the .NET Core SDK.
* [Blog Post][dotnet-blog]
* [Downloads](#downloads)
* [Changes in this release](#changes-in-2116)
* [Known Issues](../2.1-known-issues.md)
* [Visual Studio Compatibility](#visual-studio-compatibility)
* [.NET Core Lifecycle News](#net-core-lifecycle-news)
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.609](2.1.609-download.md) |
| Windows | Visual Studio 2017 | [2.1.512](#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.16 is being deployed to Azure App Services and the deployment is expected to complete later in February 2020.
## .NET Core Lifecycle News
[.NET Core 2.2 reached end of life](https://github.com/dotnet/announcements/issues/147/) on December 23, 2019. This means .NET Core 2.2 is no longer supported and updates will no longer be provided. We recommend moving to .NET Core 3.1, our long term support (LTS) release.
.NET Core 3.0 will reach end of life on March 3, 2020 which is 3 months after the release of .NET Core 3.1. You can view the [Microsoft Support for .NET Core](https://github.com/dotnet/core/blob/master/microsoft-support.md) for more information about life-cycle of each product.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 2.1.16
.NET Core 2.1.16 release carries only non-security fixes.
* [CoreCLR](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=milestone%3A2.1.16+label%3Aservicing-approved)
* [CoreFX](https://github.com/dotnet/corefx/issues?utf8=%E2%9C%93&q=milestone%3A2.1.16+label%3Aservicing-approved)
* [ASP.NETCore](https://github.com/search?q=is%3Apr+label%3AServicing-approved+milestone%3A2.1.16+repo%3Adotnet%2Faspnetcore+repo%3Adotnet%2Fextensions+repo%3Adotnet%2Faspnetcore-tooling+repo%3Adotnet%2Fblazor+repo%3Adotnet%2Fefcore+repo%3Adotnet%2Fef6)
## Packages updated in this release:
Package name | Version
:----------- | :------------------
Microsoft.NETCore.App | 2.1.16
Microsoft.NETCore.DotNetAppHost | 2.1.16
Microsoft.NETCore.DotNetHost | 2.1.16
Microsoft.NETCore.DotNetHostPolicy | 2.1.16
Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.linux-arm.Microsoft.NETCore.App | 2.1.16
runtime.linux-arm.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.linux-arm.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.linux-arm64.Microsoft.NETCore.App | 2.1.16
runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.linux-arm64.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.linux-musl-x64.Microsoft.NETCore.App | 2.1.16
runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.linux-x64.Microsoft.NETCore.App | 2.1.16
runtime.linux-x64.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.linux-x64.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.osx-x64.Microsoft.NETCore.App | 2.1.16
runtime.osx-x64.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.osx-x64.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.rhel.6-x64.Microsoft.NETCore.App | 2.1.16
runtime.rhel.6-x64.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.win-arm.Microsoft.NETCore.App | 2.1.16
runtime.win-arm.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.win-arm.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.win-arm.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.win-arm64.Microsoft.NETCore.App | 2.1.16
runtime.win-arm64.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.win-arm64.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.win-x64.Microsoft.NETCore.App | 2.1.16
runtime.win-x64.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.win-x64.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.win-x64.Microsoft.NETCore.DotNetHostResolver | 2.1.16
runtime.win-x86.Microsoft.NETCore.App | 2.1.16
runtime.win-x86.Microsoft.NETCore.DotNetAppHost | 2.1.16
runtime.win-x86.Microsoft.NETCore.DotNetHost | 2.1.16
runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy | 2.1.16
runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 2.1.16
VS.Redist.Common.NetCore.HostFXR.x64.2.1 | 2.1.16
VS.Redist.Common.NetCore.HostFXR.x86.2.1 | 2.1.16
VS.Redist.Common.NetCore.SharedFramework.x64.2.1 | 2.1.16
VS.Redist.Common.NetCore.SharedFramework.x86.2.1 | 2.1.16
VS.Redist.Common.NetCore.SharedHost.x64.2.1 | 2.1.16
VS.Redist.Common.NetCore.SharedHost.x86.2.1 | 2.1.16
Microsoft.NETCore.Platforms | 2.1.8
System.Data.SqlClient | 4.5.3
Microsoft.AspNetCore.All | 2.1.16
Microsoft.AspNetCore.App | 2.1.16
Microsoft.AspNetCore.Authentication.Cookies | 2.1.16
Microsoft.AspNetCore.Mvc.Core | 2.1.16
Microsoft.DotNet.Web.Client.ItemTemplates | 2.1.16
Microsoft.DotNet.Web.ItemTemplates | 2.1.16
Microsoft.DotNet.Web.ProjectTemplates.2.1 | 2.1.16
Microsoft.DotNet.Web.Spa.ProjectTemplates.2.1 | 2.1.16
[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.16/2.1.16.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-february-2020/
[//]: # ( Runtime 2.1.16)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e1154ac1-c67b-4403-9fcd-7ea74db15940/6b747093fa4ef3cdf82a4f48f2f918bf/dotnet-runtime-2.1.16-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/68a9089a-d7a9-4df8-bef3-07823c85c985/e12aaa871454d8d58b8c76f4224e3304/dotnet-runtime-2.1.16-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d3ee1032-49f8-4135-b1cb-4db12425762e/ca3920fc3593576d9b6ed780f121c3ee/dotnet-runtime-2.1.16-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/55d69fac-3c70-48da-ab75-a11732ea41fd/35a62311fe92ff96dfd6b4121078bbbd/dotnet-runtime-2.1.16-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/fd9b3790-0a70-4bfd-bb76-0cfa5501d5ae/875f08c18afaa5b083a4845c8534427d/dotnet-runtime-2.1.16-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/69cb2041-a16a-4ac1-a7d8-79a92e64c32a/e3fa8a41d1c592cfd455a6867ab9a1b8/dotnet-runtime-2.1.16-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/73f1cb6e-3ffe-42ca-9d59-374b5e4fea9c/0b77418b9408a85f88dc3999f52865f4/dotnet-runtime-2.1.16-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/abc50270-cbf1-41fd-b974-7cab384b285b/7feedd5db9dfae07fb1f29ae15da90b1/dotnet-runtime-2.1.16-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d666bf27-e5d0-4cad-ae16-474b88cf6235/bf72e6c63a4c876ea0e5438365268a1a/dotnet-runtime-2.1.16-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/f4bb7517-97b5-47e6-89c3-d7fd1ec0c905/dd7492dacebb2f815aad2942f9f98ef5/dotnet-runtime-2.1.16-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/5f3cbfce-d76d-4d51-87a2-e6a460333d37/11cd1f4b33548a5c32a87de8d1c95667/dotnet-runtime-2.1.16-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9f6eca37-4f5b-43c6-ae3f-72f3695de183/cb006c70c820d904b1a0425b9f5cae59/dotnet-runtime-2.1.16-win-x86.zip
[//]: # ( WindowsDesktop 2.1.16)
[//]: # ( ASP 2.1.16)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0312cc24-a7b9-4f0b-a568-e8358427f5f2/b85c525cb9cf1f8e044f2c06177219cf/aspnetcore-runtime-2.1.16-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c414945c-f69e-4a54-84c5-ef4f84842ed3/641a14bef2a4737f00b693d99fd1b0bc/aspnetcore-runtime-2.1.16-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b484e0dc-235b-43b5-8956-89d387c31c2d/68e41e2465147cbe508537b9ca70db64/aspnetcore-runtime-2.1.16-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/34583c5c-cd52-4f0b-93a3-4671e089a26a/a0ec82ce0e0b4049ff039e772e2e9ac4/aspnetcore-runtime-2.1.16-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/5e97eb0e-7c06-4b6f-8dfc-492b10c537c2/6890daed9329abeff9cf6ecb8f66e87c/aspnetcore-runtime-2.1.16-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/163b8448-4586-4041-b094-28d9a9749e6d/269d7ee08654abaf9c0f671cadad93a0/aspnetcore-runtime-2.1.16-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/858d5354-3ae8-44a1-9bfc-d8e08c50d437/f9e0e11519597837d762a6d0fb31bca4/aspnetcore-runtime-2.1.16-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/4a9a1e38-1b7e-4b47-a954-e9698845fffa/802cba0d946b4cfd1f59c4805f0e1b19/aspnetcore-runtime-2.1.16-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/783f01c8-5e85-4a26-b0f8-e2197cd37a5a/fe65d151ad17e0d64f868cb3b8855616/dotnet-hosting-2.1.16-win.exe
[//]: # ( SDK 2.1.512 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c8e9e807-e290-4d6e-84e7-81cd79ae8542/cbe9d232869e16c03230d73da38f0c05/dotnet-sdk-2.1.512-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/82f51d0d-d766-426d-9f62-2a58fb5beb17/8848ae51a7aff600a7bd029fd24a4287/dotnet-sdk-2.1.512-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0c8b6691-6307-426f-be34-0484c82c2f16/9f613bfb38bfa61b289e937e95b3f769/dotnet-sdk-2.1.512-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f0b9e28c-4b82-47e0-b2d5-8cba61bcd076/b18b9aa9a3aaef3d3e74a51d8841657f/dotnet-sdk-2.1.512-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/e9cd00c1-4c0b-4605-9ad8-454dc0e11727/6d9cb2593d7cacbc18415a248f6abcd7/dotnet-sdk-2.1.512-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/04d61ce9-25c0-442e-8f97-d8fdfac06994/5bfcf2046270973b0d0f44b9e724d665/dotnet-sdk-2.1.512-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3a28ac11-6c2c-443c-a718-c3efede3cc37/61b8490f83856a650ca8d59679e2484b/dotnet-sdk-2.1.512-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d6cdde91-e4ca-4db9-904a-f1276791944f/f8866e8bd14072d88f4d5fdd64fcbd13/dotnet-sdk-2.1.512-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/9a7571ee-fc95-4cbc-ba14-ae6b6d07215e/1d815c6d941e4a0ecb66ff681244556c/dotnet-sdk-2.1.512-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/1b78884d-0453-48a4-876a-2b8054d4d011/6a08821b865c6e7f36da847d8ffd6906/dotnet-sdk-2.1.512-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/f11f82a7-b044-43e5-8167-4fcdb65bb8cd/96352d211163f2a7d73bdf9b0c3563f8/dotnet-sdk-2.1.512-win-x86.zip
[//]: # ( Symbols )
[//]: # ( Runtime 2.1.16)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/642b50a5-6d8e-468c-8983-2e4f52cb5cef/5f7de0d4eb4e2a2076ac026a37804a74/dotnet-runtime-2.1.16-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf06e231-6998-4237-9383-660ff2b096cf/05d4fbcba454cde64b63a100d880b501/dotnet-runtime-2.1.16-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f53383b6-f980-4561-b214-a6f2efd5f1ce/864c92809a322d80993eac826da498f3/dotnet-runtime-2.1.16-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf08e56f-f5bb-4a11-80e6-f3e663f1d2ae/b589c7600042c20ca48de32bb388f145/dotnet-runtime-2.1.16-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/70f7a735-567a-41ae-91ee-43ee0a12f907/7512ca026f0a4168d53d43b62ca2dee2/dotnet-runtime-2.1.16-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/58b6c6f5-9a86-46c9-b185-23867c20ba6a/a517c07e52a0403a8dbdbad3e031ba53/dotnet-runtime-2.1.16-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/aab4d0ea-5876-4bde-a87d-b1a12029b571/e079c0d61c2a163314981c8e072f3809/dotnet-runtime-2.1.16-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/14624816-e69c-479b-9747-01d461c09ad7/3661b2350f143c48e3f300c3bab743fa/dotnet-runtime-2.1.16-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/33f5e828-ac34-46d4-8d4b-2cd7aa89cad7/97e4361a356f466029c3c30fa7f6e778/dotnet-runtime-2.1.16-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/be05350a-bb89-40ae-b221-20a5d9a6bf6b/e4c01caf023d723515963fe04206e228/dotnet-runtime-2.1.16-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/4b049376-acbb-47c2-b7ee-4a6391072cfd/9ce04542737026143b82d9d6c763ddd4/dotnet-runtime-2.1.16-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/671c727e-0d9c-4917-879d-e1067ee65d2f/c0939f16a6113f0e60b451c6e7d80526/dotnet-runtime-2.1.16-win-x86.zip
[//]: # ( WindowsDesktop 2.1.16)
[//]: # ( ASP 2.1.16)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5320e7dc-edb5-47da-b7a7-21f41d900df8/790d4fc9c0740753027e09e85b8f8b73/aspnetcore-runtime-2.1.16-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/48c55817-a638-4efa-b01a-c6e109bebe6c/3ef6df9794ad3954340317e50edf0e0b/aspnetcore-runtime-2.1.16-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5fa590c6-dbb4-41d2-81a1-d6650d3b390c/6f7c69995ebadeaa43fcd8872083cd58/aspnetcore-runtime-2.1.16-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf269e2e-4202-43fa-811e-e55aa86fc08d/8189293f3d624f68ab1cd99fa4ca03fe/aspnetcore-runtime-2.1.16-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/020c2ecb-cdb8-4ea0-bf4a-3e06e43e72f9/cdf754ac6ee692b270c37c5c34bdc8b1/aspnetcore-runtime-2.1.16-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/0c14d9b1-08aa-43a2-9266-3d18ad34b625/2b8ac6bc26085f66007dc6ec0af9705e/aspnetcore-runtime-2.1.16-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/9afe37a3-47a2-4184-881c-69bfcb2e4ed7/e24dfa19aa5622ee399bdf1f99bbda86/aspnetcore-runtime-2.1.16-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/eadccb14-3710-4c79-9f30-51c32840de1b/8b267a8f530a2409ed4c6888cad04360/aspnetcore-runtime-2.1.16-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/5a059308-c27a-4223-b04d-0e815dce2cd0/10f528c237fed56192ea22283d81c409/dotnet-hosting-2.1.16-win.exe
[//]: # ( SDK 2.1.512 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0925365c-7054-4887-b54a-d19ccf815256/b905091a2dd235d01568627ebe910798/dotnet-sdk-2.1.512-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/03a099c0-c240-484e-a301-d66790fa2b26/adc347091fa559a9b821da98cd945707/dotnet-sdk-2.1.512-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cbc74bd2-11d9-4c98-80ab-de1409d35646/a65c13ec6940b14a2118880a886fb555/dotnet-sdk-2.1.512-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/326ff625-4f6d-440c-95bf-a9cecb63396a/a9206932a7493ceebcecc62b36e8f039/dotnet-sdk-2.1.512-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/6e341d69-2393-43e8-abc8-952b191af9ed/f975eeed4a2b152cdfdad5eb6934677d/dotnet-sdk-2.1.512-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/08c2e7be-1e80-43c5-877b-d2de421059f6/94ae355bb7cc23ab0f8181314d511c82/dotnet-sdk-2.1.512-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/be338c91-bb76-48dd-98f0-e5655ebdf838/bb5ec78a2393612fa9346dfe01e08e74/dotnet-sdk-2.1.512-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/5e651460-8be6-4530-bfa9-e3d0bd7323ae/cd007b52ba0ffb21227083919870a827/dotnet-sdk-2.1.512-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/48d31be5-20b4-486a-ad90-04e6f56d2894/f31e810a8ad9197c42c9e25c3ed2a829/dotnet-sdk-2.1.512-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/458eda17-3e47-4b99-8c83-e762a8c1f41f/f19b0647f60580a94bcd49817e12586d/dotnet-sdk-2.1.512-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/794f499c-6746-49a0-a9fb-16c8ea6a36c8/8ab3d8d2a9fd7198a9620c8295b63293/dotnet-sdk-2.1.512-win-x86.zip
[//]: # ( Symbols )

View file

@ -0,0 +1,210 @@
# .NET Core 2.1.609
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 2.1.609
* .NET Core Runtime 2.1.16
* ASP.NET Core 2.1.16
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.16/2.1.16.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 R
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.609](#downloads) |
| Windows | Visual Studio 2017 | [2.1.512](2.1.16.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.16-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.16/2.1.16.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/
[//]: # ( Runtime 2.1.16)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e1154ac1-c67b-4403-9fcd-7ea74db15940/6b747093fa4ef3cdf82a4f48f2f918bf/dotnet-runtime-2.1.16-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/68a9089a-d7a9-4df8-bef3-07823c85c985/e12aaa871454d8d58b8c76f4224e3304/dotnet-runtime-2.1.16-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d3ee1032-49f8-4135-b1cb-4db12425762e/ca3920fc3593576d9b6ed780f121c3ee/dotnet-runtime-2.1.16-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/55d69fac-3c70-48da-ab75-a11732ea41fd/35a62311fe92ff96dfd6b4121078bbbd/dotnet-runtime-2.1.16-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/fd9b3790-0a70-4bfd-bb76-0cfa5501d5ae/875f08c18afaa5b083a4845c8534427d/dotnet-runtime-2.1.16-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/69cb2041-a16a-4ac1-a7d8-79a92e64c32a/e3fa8a41d1c592cfd455a6867ab9a1b8/dotnet-runtime-2.1.16-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/73f1cb6e-3ffe-42ca-9d59-374b5e4fea9c/0b77418b9408a85f88dc3999f52865f4/dotnet-runtime-2.1.16-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/abc50270-cbf1-41fd-b974-7cab384b285b/7feedd5db9dfae07fb1f29ae15da90b1/dotnet-runtime-2.1.16-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d666bf27-e5d0-4cad-ae16-474b88cf6235/bf72e6c63a4c876ea0e5438365268a1a/dotnet-runtime-2.1.16-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/f4bb7517-97b5-47e6-89c3-d7fd1ec0c905/dd7492dacebb2f815aad2942f9f98ef5/dotnet-runtime-2.1.16-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/5f3cbfce-d76d-4d51-87a2-e6a460333d37/11cd1f4b33548a5c32a87de8d1c95667/dotnet-runtime-2.1.16-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9f6eca37-4f5b-43c6-ae3f-72f3695de183/cb006c70c820d904b1a0425b9f5cae59/dotnet-runtime-2.1.16-win-x86.zip
[//]: # ( WindowsDesktop 2.1.16)
[//]: # ( ASP 2.1.16)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0312cc24-a7b9-4f0b-a568-e8358427f5f2/b85c525cb9cf1f8e044f2c06177219cf/aspnetcore-runtime-2.1.16-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c414945c-f69e-4a54-84c5-ef4f84842ed3/641a14bef2a4737f00b693d99fd1b0bc/aspnetcore-runtime-2.1.16-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b484e0dc-235b-43b5-8956-89d387c31c2d/68e41e2465147cbe508537b9ca70db64/aspnetcore-runtime-2.1.16-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/34583c5c-cd52-4f0b-93a3-4671e089a26a/a0ec82ce0e0b4049ff039e772e2e9ac4/aspnetcore-runtime-2.1.16-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/5e97eb0e-7c06-4b6f-8dfc-492b10c537c2/6890daed9329abeff9cf6ecb8f66e87c/aspnetcore-runtime-2.1.16-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/163b8448-4586-4041-b094-28d9a9749e6d/269d7ee08654abaf9c0f671cadad93a0/aspnetcore-runtime-2.1.16-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/858d5354-3ae8-44a1-9bfc-d8e08c50d437/f9e0e11519597837d762a6d0fb31bca4/aspnetcore-runtime-2.1.16-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/4a9a1e38-1b7e-4b47-a954-e9698845fffa/802cba0d946b4cfd1f59c4805f0e1b19/aspnetcore-runtime-2.1.16-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/783f01c8-5e85-4a26-b0f8-e2197cd37a5a/fe65d151ad17e0d64f868cb3b8855616/dotnet-hosting-2.1.16-win.exe
[//]: # ( SDK 2.1.609 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/71bd9393-f38a-46ae-bdcd-f583623648c9/d53f083156f40cb3568eb8e7b3ea0dd1/dotnet-sdk-2.1.609-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/153b1bb1-ef57-4c3e-880b-15a464fabd13/bcc7d0cbb6fe2625039480a80138fd45/dotnet-sdk-2.1.609-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/32f70c0e-098b-4756-af69-72b5b1fdf5ea/b3b901f8a18c04704dd36634bd536a6b/dotnet-sdk-2.1.609-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/27195129-81ba-4ac8-97ad-1fc49d86a9b3/737fe3bb585d9225ec9c575b972d2b4e/dotnet-sdk-2.1.609-linux-x64.tar.gz
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2f786f7a-aa83-4ae0-993b-ab31bbfbea30/e96025f528301baf7f60eb3de571ef69/dotnet-sdk-2.1.609-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/06a71e40-6413-4a72-b6f9-f4813885e1a6/7fe845b8fd902e6ec45f0358e5800fec/dotnet-sdk-2.1.609-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/fdfab67d-0c63-4b8b-8cca-7f202c40e69b/c49dbcb32a1fbcd96bc8b8efb67cb69b/dotnet-sdk-2.1.609-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/6850dd7f-ec1f-49cc-861f-1f37c1817827/a0ec22643e126958e2b46e162409305e/dotnet-sdk-2.1.609-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/ba478525-9ae1-412d-bdf2-56666c5069ab/ad8bed9eb30def66e3ae20574687fd29/dotnet-sdk-2.1.609-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/0706ec43-61f8-4f40-ac22-e860e81935b3/c11531d9cf4cfbed8f5609ba5d65b76f/dotnet-sdk-2.1.609-win-x86.zip
[//]: # ( Runtime 2.1.16)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/642b50a5-6d8e-468c-8983-2e4f52cb5cef/5f7de0d4eb4e2a2076ac026a37804a74/dotnet-runtime-2.1.16-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf06e231-6998-4237-9383-660ff2b096cf/05d4fbcba454cde64b63a100d880b501/dotnet-runtime-2.1.16-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f53383b6-f980-4561-b214-a6f2efd5f1ce/864c92809a322d80993eac826da498f3/dotnet-runtime-2.1.16-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf08e56f-f5bb-4a11-80e6-f3e663f1d2ae/b589c7600042c20ca48de32bb388f145/dotnet-runtime-2.1.16-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/70f7a735-567a-41ae-91ee-43ee0a12f907/7512ca026f0a4168d53d43b62ca2dee2/dotnet-runtime-2.1.16-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/58b6c6f5-9a86-46c9-b185-23867c20ba6a/a517c07e52a0403a8dbdbad3e031ba53/dotnet-runtime-2.1.16-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/aab4d0ea-5876-4bde-a87d-b1a12029b571/e079c0d61c2a163314981c8e072f3809/dotnet-runtime-2.1.16-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/14624816-e69c-479b-9747-01d461c09ad7/3661b2350f143c48e3f300c3bab743fa/dotnet-runtime-2.1.16-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/33f5e828-ac34-46d4-8d4b-2cd7aa89cad7/97e4361a356f466029c3c30fa7f6e778/dotnet-runtime-2.1.16-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/be05350a-bb89-40ae-b221-20a5d9a6bf6b/e4c01caf023d723515963fe04206e228/dotnet-runtime-2.1.16-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/4b049376-acbb-47c2-b7ee-4a6391072cfd/9ce04542737026143b82d9d6c763ddd4/dotnet-runtime-2.1.16-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/671c727e-0d9c-4917-879d-e1067ee65d2f/c0939f16a6113f0e60b451c6e7d80526/dotnet-runtime-2.1.16-win-x86.zip
[//]: # ( WindowsDesktop 2.1.16)
[//]: # ( ASP 2.1.16)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5320e7dc-edb5-47da-b7a7-21f41d900df8/790d4fc9c0740753027e09e85b8f8b73/aspnetcore-runtime-2.1.16-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/48c55817-a638-4efa-b01a-c6e109bebe6c/3ef6df9794ad3954340317e50edf0e0b/aspnetcore-runtime-2.1.16-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5fa590c6-dbb4-41d2-81a1-d6650d3b390c/6f7c69995ebadeaa43fcd8872083cd58/aspnetcore-runtime-2.1.16-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf269e2e-4202-43fa-811e-e55aa86fc08d/8189293f3d624f68ab1cd99fa4ca03fe/aspnetcore-runtime-2.1.16-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/020c2ecb-cdb8-4ea0-bf4a-3e06e43e72f9/cdf754ac6ee692b270c37c5c34bdc8b1/aspnetcore-runtime-2.1.16-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/0c14d9b1-08aa-43a2-9266-3d18ad34b625/2b8ac6bc26085f66007dc6ec0af9705e/aspnetcore-runtime-2.1.16-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/9afe37a3-47a2-4184-881c-69bfcb2e4ed7/e24dfa19aa5622ee399bdf1f99bbda86/aspnetcore-runtime-2.1.16-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/eadccb14-3710-4c79-9f30-51c32840de1b/8b267a8f530a2409ed4c6888cad04360/aspnetcore-runtime-2.1.16-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/5a059308-c27a-4223-b04d-0e815dce2cd0/10f528c237fed56192ea22283d81c409/dotnet-hosting-2.1.16-win.exe
[//]: # ( SDK 2.1.609 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a506ab6b-656e-4cd3-a0ac-6994d650dd25/07a4f6fa0a07e7983232cc8bb7eb15d2/dotnet-sdk-2.1.609-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/25838c54-fab5-4d80-9279-061077a3cccc/a5cb1b4b62eef92e3cfa34634514191a/dotnet-sdk-2.1.609-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/116e348a-5da3-48f9-ab91-afb2e3b6e9b2/6508223d6576e112e7ddcd6a0ccadc10/dotnet-sdk-2.1.609-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/056482d6-b465-4a7d-8a86-30deb63e8abf/7241098056c5eb3d00ee98569f0e20a4/dotnet-sdk-2.1.609-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/373af1f4-c5a8-46f2-a94a-24989dcf0a56/9ed1d5875de35581e372a2f52c5d250d/dotnet-sdk-2.1.609-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fe94f374-db0a-48bf-ae3e-7054f0fafbcd/8ae8b335ad7b5762d7f44db77ca30bf3/dotnet-sdk-2.1.609-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3663b134-4f33-4884-a73e-7136f1573d03/6921c9c499716c446ee83d828637731e/dotnet-sdk-2.1.609-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/4c8347d4-289e-4635-9ae8-f4d81d69bea0/6fc3710c423a72e50647073ca0f454bb/dotnet-sdk-2.1.609-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/eac6f85e-c95c-4756-a589-b2b062e0a917/369e37c8c3fa0d2715ca69c2386ce6ee/dotnet-sdk-2.1.609-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/e5c2489a-5623-40a4-a0bf-e0023571c950/8619367310baccc07fb2d74bf6b6094e/dotnet-sdk-2.1.609-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/e288079a-a735-4083-9992-1db3ab3a6289/92845b3a4ff440af4e8692006dd66a88/dotnet-sdk-2.1.609-win-x86.zip
[//]: # ( Symbols )

View file

@ -0,0 +1,212 @@
# .NET Core 2.1.804
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 2.1.804
* .NET Core Runtime 2.1.16
* ASP.NET Core 2.1.16
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.16/2.1.16.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.609](2.1.609-download.md) |
| Windows | Visual Studio 2017 | [2.1.512](2.1.16.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.16-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.16/2.1.16.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.16-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/
[//]: # ( Runtime 2.1.16)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e1154ac1-c67b-4403-9fcd-7ea74db15940/6b747093fa4ef3cdf82a4f48f2f918bf/dotnet-runtime-2.1.16-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/68a9089a-d7a9-4df8-bef3-07823c85c985/e12aaa871454d8d58b8c76f4224e3304/dotnet-runtime-2.1.16-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d3ee1032-49f8-4135-b1cb-4db12425762e/ca3920fc3593576d9b6ed780f121c3ee/dotnet-runtime-2.1.16-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/55d69fac-3c70-48da-ab75-a11732ea41fd/35a62311fe92ff96dfd6b4121078bbbd/dotnet-runtime-2.1.16-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/fd9b3790-0a70-4bfd-bb76-0cfa5501d5ae/875f08c18afaa5b083a4845c8534427d/dotnet-runtime-2.1.16-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/69cb2041-a16a-4ac1-a7d8-79a92e64c32a/e3fa8a41d1c592cfd455a6867ab9a1b8/dotnet-runtime-2.1.16-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/73f1cb6e-3ffe-42ca-9d59-374b5e4fea9c/0b77418b9408a85f88dc3999f52865f4/dotnet-runtime-2.1.16-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/abc50270-cbf1-41fd-b974-7cab384b285b/7feedd5db9dfae07fb1f29ae15da90b1/dotnet-runtime-2.1.16-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/d666bf27-e5d0-4cad-ae16-474b88cf6235/bf72e6c63a4c876ea0e5438365268a1a/dotnet-runtime-2.1.16-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/f4bb7517-97b5-47e6-89c3-d7fd1ec0c905/dd7492dacebb2f815aad2942f9f98ef5/dotnet-runtime-2.1.16-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/5f3cbfce-d76d-4d51-87a2-e6a460333d37/11cd1f4b33548a5c32a87de8d1c95667/dotnet-runtime-2.1.16-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9f6eca37-4f5b-43c6-ae3f-72f3695de183/cb006c70c820d904b1a0425b9f5cae59/dotnet-runtime-2.1.16-win-x86.zip
[//]: # ( WindowsDesktop 2.1.16)
[//]: # ( ASP 2.1.16)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0312cc24-a7b9-4f0b-a568-e8358427f5f2/b85c525cb9cf1f8e044f2c06177219cf/aspnetcore-runtime-2.1.16-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c414945c-f69e-4a54-84c5-ef4f84842ed3/641a14bef2a4737f00b693d99fd1b0bc/aspnetcore-runtime-2.1.16-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b484e0dc-235b-43b5-8956-89d387c31c2d/68e41e2465147cbe508537b9ca70db64/aspnetcore-runtime-2.1.16-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/34583c5c-cd52-4f0b-93a3-4671e089a26a/a0ec82ce0e0b4049ff039e772e2e9ac4/aspnetcore-runtime-2.1.16-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/5e97eb0e-7c06-4b6f-8dfc-492b10c537c2/6890daed9329abeff9cf6ecb8f66e87c/aspnetcore-runtime-2.1.16-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/163b8448-4586-4041-b094-28d9a9749e6d/269d7ee08654abaf9c0f671cadad93a0/aspnetcore-runtime-2.1.16-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/858d5354-3ae8-44a1-9bfc-d8e08c50d437/f9e0e11519597837d762a6d0fb31bca4/aspnetcore-runtime-2.1.16-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/4a9a1e38-1b7e-4b47-a954-e9698845fffa/802cba0d946b4cfd1f59c4805f0e1b19/aspnetcore-runtime-2.1.16-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/783f01c8-5e85-4a26-b0f8-e2197cd37a5a/fe65d151ad17e0d64f868cb3b8855616/dotnet-hosting-2.1.16-win.exe
[//]: # ( SDK 2.1.804 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/22123f10-a2bc-486b-81d9-ce67889b0b90/2aa4f985999dad2f7a8c6a84bcdd591d/dotnet-sdk-2.1.804-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/50645f34-f3dd-45e8-80cc-231c34da6b21/7390b6302c466fc407758093d5e915cd/dotnet-sdk-2.1.804-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2c468e75-b1ef-4b41-88c2-59dbd645fcdf/32337541ffbba0ec7e89bf0392a7e11e/dotnet-sdk-2.1.804-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1c4d5cc1-3ce5-4298-aa8c-56d2befc5474/60d79468f9b770d116bb7a5a1937abd8/dotnet-sdk-2.1.804-linux-x64.tar.gz
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b530c5b6-855c-4810-9d22-a3dc42ab0338/8fc82d06db18ad614ee7e50d265e22b0/dotnet-sdk-2.1.804-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d539e23c-8265-4358-b71f-fe9dcb48c464/8ad8a50e82b952b17cfbf3c97e7b82af/dotnet-sdk-2.1.804-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/0ec90d98-54fd-4bfc-9f36-c946abf15d9e/852c978e4377c898f5ccd36b1663cd55/dotnet-sdk-2.1.804-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/65e1d6ca-0f71-442c-8e9f-88127df46bad/497378e04707fec0f04458c82c73b035/dotnet-sdk-2.1.804-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/c767afcc-6106-4fa6-99bf-d68bc0259205/002aabc810d17f2940c3db554b8f3f4d/dotnet-sdk-2.1.804-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/80cd608f-f1b6-40e0-a76d-c08deb9b64eb/588b721ec845afdd47c8730dc7a141b0/dotnet-sdk-2.1.804-win-x86.zip
[//]: # ( WindowsDesktop 2.1.16)
[//]: # ( Symbols )
[//]: # ( Runtime 2.1.16)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/642b50a5-6d8e-468c-8983-2e4f52cb5cef/5f7de0d4eb4e2a2076ac026a37804a74/dotnet-runtime-2.1.16-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf06e231-6998-4237-9383-660ff2b096cf/05d4fbcba454cde64b63a100d880b501/dotnet-runtime-2.1.16-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f53383b6-f980-4561-b214-a6f2efd5f1ce/864c92809a322d80993eac826da498f3/dotnet-runtime-2.1.16-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf08e56f-f5bb-4a11-80e6-f3e663f1d2ae/b589c7600042c20ca48de32bb388f145/dotnet-runtime-2.1.16-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/70f7a735-567a-41ae-91ee-43ee0a12f907/7512ca026f0a4168d53d43b62ca2dee2/dotnet-runtime-2.1.16-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/58b6c6f5-9a86-46c9-b185-23867c20ba6a/a517c07e52a0403a8dbdbad3e031ba53/dotnet-runtime-2.1.16-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/aab4d0ea-5876-4bde-a87d-b1a12029b571/e079c0d61c2a163314981c8e072f3809/dotnet-runtime-2.1.16-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/14624816-e69c-479b-9747-01d461c09ad7/3661b2350f143c48e3f300c3bab743fa/dotnet-runtime-2.1.16-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/33f5e828-ac34-46d4-8d4b-2cd7aa89cad7/97e4361a356f466029c3c30fa7f6e778/dotnet-runtime-2.1.16-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/be05350a-bb89-40ae-b221-20a5d9a6bf6b/e4c01caf023d723515963fe04206e228/dotnet-runtime-2.1.16-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/4b049376-acbb-47c2-b7ee-4a6391072cfd/9ce04542737026143b82d9d6c763ddd4/dotnet-runtime-2.1.16-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/671c727e-0d9c-4917-879d-e1067ee65d2f/c0939f16a6113f0e60b451c6e7d80526/dotnet-runtime-2.1.16-win-x86.zip
[//]: # ( WindowsDesktop 2.1.16)
[//]: # ( ASP 2.1.16)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5320e7dc-edb5-47da-b7a7-21f41d900df8/790d4fc9c0740753027e09e85b8f8b73/aspnetcore-runtime-2.1.16-linux-arm.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/48c55817-a638-4efa-b01a-c6e109bebe6c/3ef6df9794ad3954340317e50edf0e0b/aspnetcore-runtime-2.1.16-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5fa590c6-dbb4-41d2-81a1-d6650d3b390c/6f7c69995ebadeaa43fcd8872083cd58/aspnetcore-runtime-2.1.16-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bf269e2e-4202-43fa-811e-e55aa86fc08d/8189293f3d624f68ab1cd99fa4ca03fe/aspnetcore-runtime-2.1.16-osx-x64.tar.gz
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/020c2ecb-cdb8-4ea0-bf4a-3e06e43e72f9/cdf754ac6ee692b270c37c5c34bdc8b1/aspnetcore-runtime-2.1.16-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/0c14d9b1-08aa-43a2-9266-3d18ad34b625/2b8ac6bc26085f66007dc6ec0af9705e/aspnetcore-runtime-2.1.16-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/9afe37a3-47a2-4184-881c-69bfcb2e4ed7/e24dfa19aa5622ee399bdf1f99bbda86/aspnetcore-runtime-2.1.16-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/eadccb14-3710-4c79-9f30-51c32840de1b/8b267a8f530a2409ed4c6888cad04360/aspnetcore-runtime-2.1.16-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/5a059308-c27a-4223-b04d-0e815dce2cd0/10f528c237fed56192ea22283d81c409/dotnet-hosting-2.1.16-win.exe
[//]: # ( SDK 2.1.804 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/365bc2c9-eb08-4c17-b462-e4addba6dd0a/5101726ab1e41e751c169e3b735357fc/dotnet-sdk-2.1.804-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2d8b6ed1-e489-4e68-bc88-201801435297/bfe788aeab04d79507d940675ee6f27b/dotnet-sdk-2.1.804-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4546f2c5-3ec8-4d0d-a47d-ba44b58a2a3f/4b5319fcb0ec675d3a05cdc4d6c65c80/dotnet-sdk-2.1.804-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9ba4d9b0-3fca-40ed-b5a2-1552dfa4f89e/8e5e555b543a7afd8fd764e080d25671/dotnet-sdk-2.1.804-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/f845905d-89d4-4e47-b2ec-398e47ff8411/2f49da28650e5259e694aa7321dcf935/dotnet-sdk-2.1.804-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4d378181-83f9-4a91-a25f-b823edba34a4/313ea90f4e72678fca86dffa6223fee5/dotnet-sdk-2.1.804-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0514c39f-3e3b-4e1c-804a-04f143b9b7a7/0faf3ad41cdb40bc274809b61ea72127/dotnet-sdk-2.1.804-rhel.6-x64.tar.gz
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/b2730cab-bf3e-4fd5-836a-262960e0f65d/89fabb24ebb624d1fb212b26451a402c/dotnet-sdk-2.1.804-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/e571ccd9-4aaa-49be-bd94-da08b7b39dd4/45d4a2d7e585f98a00fec2c7daadff8b/dotnet-sdk-2.1.804-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/0320343a-6431-457e-bdd3-bfb85fa213a3/e69ccb9ad66b4b80d90b414b095671ac/dotnet-sdk-2.1.804-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/a36f89d0-817b-445a-894d-f02851e39c89/6d675df4531974f37c7a923810fa5951/dotnet-sdk-2.1.804-win-x86.zip
[//]: # ( Symbols )

View file

@ -4,6 +4,7 @@ The following .NET Core 2.1 releases have been shipped. You must be on the lates
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/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) |
| 2019/11/19 | [2.1.14](2.1.14/2.1.14.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/2.1) |
| 2019/09/10 | [2.1.13](2.1.13/2.1.13.md) | [download](2.1.13/2.1.13-download.md) |

View file

@ -1,13 +1,466 @@
{
"channel-version": "2.1",
"latest-release": "2.1.15",
"latest-release-date": "2020-01-14",
"latest-runtime": "2.1.15",
"latest-sdk": "2.1.803",
"latest-release": "2.1.16",
"latest-release-date": "2020-02-18",
"latest-runtime": "2.1.16",
"latest-sdk": "2.1.804",
"support-phase": "lts",
"eol-date": "2021-08-21",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-02-18",
"release-version": "2.1.16",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.16/2.1.16.md",
"runtime": {
"version": "2.1.16",
"version-display": "2.1.16",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/642b50a5-6d8e-468c-8983-2e4f52cb5cef/5f7de0d4eb4e2a2076ac026a37804a74/dotnet-runtime-2.1.16-linux-arm.tar.gz",
"hash": "a3cbe1c4dc562797c15b880803b0bde2ce4606d31e91b6d9c460e303a4809ddd499051a89add8fc419a41e0b8cacc46866e0b6525a4fa12b8fa02bd5e15230de"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf06e231-6998-4237-9383-660ff2b096cf/05d4fbcba454cde64b63a100d880b501/dotnet-runtime-2.1.16-linux-arm64.tar.gz",
"hash": "209cb8a60f4cfabbef2e7870ad7c02218d119379655aac764d7318894f7585b8ea1ed3c3ab1c3903719f7e15d003f7e87c86dfe1860cbe7f0b9bd3df02a5a58e"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f53383b6-f980-4561-b214-a6f2efd5f1ce/864c92809a322d80993eac826da498f3/dotnet-runtime-2.1.16-linux-musl-x64.tar.gz",
"hash": "d8b326d30fa870749e657c41eebc982a059fb11b9edca6cf7f3c19b6b152f1362f80783a772e5a29a51876f5da2e86efea419f793685bd0d8528ce66a47f4eea"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf08e56f-f5bb-4a11-80e6-f3e663f1d2ae/b589c7600042c20ca48de32bb388f145/dotnet-runtime-2.1.16-linux-x64.tar.gz",
"hash": "b49046a3f5ca102f36407ef0505d333c6c431862ab5ce76b25a516b91eae07dd96dd80ab1b6f82c44d65ee4203f029e2597ca2eac9ee27fcd2a5a118ead7bd0f"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/70f7a735-567a-41ae-91ee-43ee0a12f907/7512ca026f0a4168d53d43b62ca2dee2/dotnet-runtime-2.1.16-osx-x64.pkg",
"hash": "83d7be01676eab36b032c134cc7251e71fdeaab2f72024eddeb2b7110e27fa55a46ad6bc4527dd66c79f9553c2badc3b785ddfa5647ae4be4b85303a6469fafe"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/58b6c6f5-9a86-46c9-b185-23867c20ba6a/a517c07e52a0403a8dbdbad3e031ba53/dotnet-runtime-2.1.16-osx-x64.tar.gz",
"hash": "4e68eed074858f1ab48175e6dd13f9baffe7035341bedffd1720353035eb30eb1b6b4359e93b736c37b57df7a3799545c9bfa62d4744f0a0a290651b9c5ddcaf"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/aab4d0ea-5876-4bde-a87d-b1a12029b571/e079c0d61c2a163314981c8e072f3809/dotnet-runtime-2.1.16-rhel.6-x64.tar.gz",
"hash": "99b8d88450d2ee0cab16dff23742335e02a1b4597c5a5cc4d05eba1f8631a930ce0753710ba68768f65cab30d5b392de20c53ca2eab258f1bdb6604824478b06"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/14624816-e69c-479b-9747-01d461c09ad7/3661b2350f143c48e3f300c3bab743fa/dotnet-runtime-2.1.16-win-arm.zip",
"hash": "888f691d243205393e2ab61d2bbfbe453fe0054b010d0eba5aa65216a7a590a7748e6e099b22dec68d114b893c58b83dfb83dfdb85d8a634cf3d1bbe6b38df25"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/33f5e828-ac34-46d4-8d4b-2cd7aa89cad7/97e4361a356f466029c3c30fa7f6e778/dotnet-runtime-2.1.16-win-x64.exe",
"hash": "fa2bdd8ed6d440f75ebb2ead883fbc8e40def25c6edadcd35c027e5e9e342a0912692d9153fa92560b5f5e7d1ea482d23a941090831099d6549aed423b82a93f"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/be05350a-bb89-40ae-b221-20a5d9a6bf6b/e4c01caf023d723515963fe04206e228/dotnet-runtime-2.1.16-win-x64.zip",
"hash": "76e1a3948c7a2662e59bffa4f8d819dd36142948d78a4f5c2acd1a6bea8658fddd4f17c1096469b0e42c9e9fb145cd31fb28c05228d0711e076411f12bb8d144"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/4b049376-acbb-47c2-b7ee-4a6391072cfd/9ce04542737026143b82d9d6c763ddd4/dotnet-runtime-2.1.16-win-x86.exe",
"hash": "e4543ace5c8951db2fe063b4051426aa99de5f2cbedf97b857b6932e653c5f6c956ea35301a16ecd77bde258d527b0672b445383d8a41249d11e635d5bca55ec"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/671c727e-0d9c-4917-879d-e1067ee65d2f/c0939f16a6113f0e60b451c6e7d80526/dotnet-runtime-2.1.16-win-x86.zip",
"hash": "3a431f13f3fff641eeb81a82619dada70e458d7584a1343af20a03228a158f285bac1cc8e0b90d5793106e52228090a0de36f3133718486c84629a8be88f9d39"
}
]
},
"sdk": {
"version": "2.1.804",
"version-display": "2.1.804",
"runtime-version": "2.1.16",
"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/365bc2c9-eb08-4c17-b462-e4addba6dd0a/5101726ab1e41e751c169e3b735357fc/dotnet-sdk-2.1.804-linux-arm.tar.gz",
"hash": "5a2427fd3461aa5dc5a90857e7d599447c29bbd36daaf216ce2d42d6f430ad5b3278168cfaf5d241bf1340df693c93c5beecc95a5679aab35f40dcbd11dcb486"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2d8b6ed1-e489-4e68-bc88-201801435297/bfe788aeab04d79507d940675ee6f27b/dotnet-sdk-2.1.804-linux-arm64.tar.gz",
"hash": "4f30381658ca8e45fb7da0db23f5e6a24a61db42e534d097bd59691bb058d1a71906d4386cbcf673eef582616af3b7400cecbdf10959a418bed7a6ed70f7939a"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4546f2c5-3ec8-4d0d-a47d-ba44b58a2a3f/4b5319fcb0ec675d3a05cdc4d6c65c80/dotnet-sdk-2.1.804-linux-musl-x64.tar.gz",
"hash": "325b6a4c8b019ac3b6fafeda042da7893672fcc65185385c39f97a50fbe371262282da22ac0e9acda54042789b33519d29fc4f51e4e6425e0d4b15089c6eda5d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9ba4d9b0-3fca-40ed-b5a2-1552dfa4f89e/8e5e555b543a7afd8fd764e080d25671/dotnet-sdk-2.1.804-linux-x64.tar.gz",
"hash": "82b039856dadd2b47fa56a262d1a1a389132f0db037d4ee5c0872f2949c2cd447c33a978e1f532783119aa416860e03f26b840863ca3a97392a4b77f8df5bf66"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f845905d-89d4-4e47-b2ec-398e47ff8411/2f49da28650e5259e694aa7321dcf935/dotnet-sdk-2.1.804-osx-x64.pkg",
"hash": "e22b8ea195ac6cd0ebb193197d33ee718dce6e1394d20fc2282c7cfcc410f232237c1e78947196af8e8f5507e5d020bc044afcd7e37e27832123d9a7e683e0ad"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4d378181-83f9-4a91-a25f-b823edba34a4/313ea90f4e72678fca86dffa6223fee5/dotnet-sdk-2.1.804-osx-x64.tar.gz",
"hash": "8829cad78096bbc1d101ced08c373e44a4d7a8ad20eea80f704d9b4130750c901abe59cd231a0d89870013dd250b0a1e8b9adbdefb209df1afe6de8f1b052b1d"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0514c39f-3e3b-4e1c-804a-04f143b9b7a7/0faf3ad41cdb40bc274809b61ea72127/dotnet-sdk-2.1.804-rhel.6-x64.tar.gz",
"hash": "4380760d1e7ab6ac5b4e19cf988be455a6c1ef2bf3df5dde553806fa2ef85d207ed3d1315b719bcdeab97641aa90c91efaf01efbafe55c41abd9e7956f1c66ca"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b2730cab-bf3e-4fd5-836a-262960e0f65d/89fabb24ebb624d1fb212b26451a402c/dotnet-sdk-2.1.804-win-x64.exe",
"hash": "411b2e9afbbb44ef7239ee9e83dc1db61049473b36edea09e184f98a2cf9f10499dbc8d043df069af86625392154a09d26843edeaadffa0113edd7380d32161f"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e571ccd9-4aaa-49be-bd94-da08b7b39dd4/45d4a2d7e585f98a00fec2c7daadff8b/dotnet-sdk-2.1.804-win-x64.zip",
"hash": "9fcd2eb1f87f8ce2c5117e774ac8954ead4905f154f5255b61599a1d1ef6a6b8aea7e28bcc4950936db32e2351ec387d12c7ea878342d37bdb980ea1856bb349"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/0320343a-6431-457e-bdd3-bfb85fa213a3/e69ccb9ad66b4b80d90b414b095671ac/dotnet-sdk-2.1.804-win-x86.exe",
"hash": "d539e4cf897e167795c4ebfbfcbebcb57816771235ae667e87617da33ec1ac42a99ace81c0fa0d434ab26157af6756488c92247042b1c0153981e50dd0ac7d51"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/a36f89d0-817b-445a-894d-f02851e39c89/6d675df4531974f37c7a923810fa5951/dotnet-sdk-2.1.804-win-x86.zip",
"hash": "77b796be3706fd98a8158edd7afcf58a1572837d9f09ac22c6f5059655dc39c18345439b7ae434f86db5766f540bcac9a4aa46811bd8ace1b37a9c71cbd3ec98"
}
]
},
"sdks": [
{
"version": "2.1.804",
"version-display": "2.1.804",
"runtime-version": "2.1.16",
"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/365bc2c9-eb08-4c17-b462-e4addba6dd0a/5101726ab1e41e751c169e3b735357fc/dotnet-sdk-2.1.804-linux-arm.tar.gz",
"hash": "5a2427fd3461aa5dc5a90857e7d599447c29bbd36daaf216ce2d42d6f430ad5b3278168cfaf5d241bf1340df693c93c5beecc95a5679aab35f40dcbd11dcb486"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2d8b6ed1-e489-4e68-bc88-201801435297/bfe788aeab04d79507d940675ee6f27b/dotnet-sdk-2.1.804-linux-arm64.tar.gz",
"hash": "4f30381658ca8e45fb7da0db23f5e6a24a61db42e534d097bd59691bb058d1a71906d4386cbcf673eef582616af3b7400cecbdf10959a418bed7a6ed70f7939a"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4546f2c5-3ec8-4d0d-a47d-ba44b58a2a3f/4b5319fcb0ec675d3a05cdc4d6c65c80/dotnet-sdk-2.1.804-linux-musl-x64.tar.gz",
"hash": "325b6a4c8b019ac3b6fafeda042da7893672fcc65185385c39f97a50fbe371262282da22ac0e9acda54042789b33519d29fc4f51e4e6425e0d4b15089c6eda5d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9ba4d9b0-3fca-40ed-b5a2-1552dfa4f89e/8e5e555b543a7afd8fd764e080d25671/dotnet-sdk-2.1.804-linux-x64.tar.gz",
"hash": "82b039856dadd2b47fa56a262d1a1a389132f0db037d4ee5c0872f2949c2cd447c33a978e1f532783119aa416860e03f26b840863ca3a97392a4b77f8df5bf66"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f845905d-89d4-4e47-b2ec-398e47ff8411/2f49da28650e5259e694aa7321dcf935/dotnet-sdk-2.1.804-osx-x64.pkg",
"hash": "e22b8ea195ac6cd0ebb193197d33ee718dce6e1394d20fc2282c7cfcc410f232237c1e78947196af8e8f5507e5d020bc044afcd7e37e27832123d9a7e683e0ad"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4d378181-83f9-4a91-a25f-b823edba34a4/313ea90f4e72678fca86dffa6223fee5/dotnet-sdk-2.1.804-osx-x64.tar.gz",
"hash": "8829cad78096bbc1d101ced08c373e44a4d7a8ad20eea80f704d9b4130750c901abe59cd231a0d89870013dd250b0a1e8b9adbdefb209df1afe6de8f1b052b1d"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0514c39f-3e3b-4e1c-804a-04f143b9b7a7/0faf3ad41cdb40bc274809b61ea72127/dotnet-sdk-2.1.804-rhel.6-x64.tar.gz",
"hash": "4380760d1e7ab6ac5b4e19cf988be455a6c1ef2bf3df5dde553806fa2ef85d207ed3d1315b719bcdeab97641aa90c91efaf01efbafe55c41abd9e7956f1c66ca"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b2730cab-bf3e-4fd5-836a-262960e0f65d/89fabb24ebb624d1fb212b26451a402c/dotnet-sdk-2.1.804-win-x64.exe",
"hash": "411b2e9afbbb44ef7239ee9e83dc1db61049473b36edea09e184f98a2cf9f10499dbc8d043df069af86625392154a09d26843edeaadffa0113edd7380d32161f"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e571ccd9-4aaa-49be-bd94-da08b7b39dd4/45d4a2d7e585f98a00fec2c7daadff8b/dotnet-sdk-2.1.804-win-x64.zip",
"hash": "9fcd2eb1f87f8ce2c5117e774ac8954ead4905f154f5255b61599a1d1ef6a6b8aea7e28bcc4950936db32e2351ec387d12c7ea878342d37bdb980ea1856bb349"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/0320343a-6431-457e-bdd3-bfb85fa213a3/e69ccb9ad66b4b80d90b414b095671ac/dotnet-sdk-2.1.804-win-x86.exe",
"hash": "d539e4cf897e167795c4ebfbfcbebcb57816771235ae667e87617da33ec1ac42a99ace81c0fa0d434ab26157af6756488c92247042b1c0153981e50dd0ac7d51"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/a36f89d0-817b-445a-894d-f02851e39c89/6d675df4531974f37c7a923810fa5951/dotnet-sdk-2.1.804-win-x86.zip",
"hash": "77b796be3706fd98a8158edd7afcf58a1572837d9f09ac22c6f5059655dc39c18345439b7ae434f86db5766f540bcac9a4aa46811bd8ace1b37a9c71cbd3ec98"
}
]
},
{
"version": "2.1.609",
"version-display": "2.1.609",
"runtime-version": "2.1.16",
"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/a506ab6b-656e-4cd3-a0ac-6994d650dd25/07a4f6fa0a07e7983232cc8bb7eb15d2/dotnet-sdk-2.1.609-linux-arm.tar.gz",
"hash": "6985b14e42af414c54d49fe7da1c5b423c00f3bce7e1b3695aaabb78ee8db6834399a26d52f9faac713f0d72a9eba31d35daf0a7a02b6c701ba85cac9565270a"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/25838c54-fab5-4d80-9279-061077a3cccc/a5cb1b4b62eef92e3cfa34634514191a/dotnet-sdk-2.1.609-linux-arm64.tar.gz",
"hash": "9399533da7b1f6bff9355e94dbb620e48f799060451698512a1dde16c435ccc7545a02bd54e0b1d2023f274ca579ae8ce20fb410cf57a72eee84db36f37f2c5f"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/116e348a-5da3-48f9-ab91-afb2e3b6e9b2/6508223d6576e112e7ddcd6a0ccadc10/dotnet-sdk-2.1.609-linux-musl-x64.tar.gz",
"hash": "6cc9e3da8c6711b30d071c9ebeb02aaabc07013c0ba1d978ae9b74eb0147e9f4c81f0d43410837698177290264c22b08ac28c4e1b22bb65f824d173f09ae00dd"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/056482d6-b465-4a7d-8a86-30deb63e8abf/7241098056c5eb3d00ee98569f0e20a4/dotnet-sdk-2.1.609-linux-x64.tar.gz",
"hash": "26d246f696c9d009471dfceed2ebb5cfd1ebf9f55056c12b64a6ab2c7a75fe162bc3f1a75a7e7a1f81733feee4c4e7acd009e9f6461ef6924baa1aa14b024d1b"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/373af1f4-c5a8-46f2-a94a-24989dcf0a56/9ed1d5875de35581e372a2f52c5d250d/dotnet-sdk-2.1.609-osx-x64.pkg",
"hash": "9ee9badbb477ae5b97778742db434aec8d93e4550550cd5a7af3da346fd612e3feab7a6707015ea9dbbde043269894bcb5bb94cbedf750eced8943d3b467faff"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fe94f374-db0a-48bf-ae3e-7054f0fafbcd/8ae8b335ad7b5762d7f44db77ca30bf3/dotnet-sdk-2.1.609-osx-x64.tar.gz",
"hash": "1678b5e6f244bfaf9655b4035fe054f866671910e016fb0e2eff3e2cc4616ff3a804dbd2e42160d6479f5835cd94f3758a930ffee0bc5a78c38836fb4958eb34"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3663b134-4f33-4884-a73e-7136f1573d03/6921c9c499716c446ee83d828637731e/dotnet-sdk-2.1.609-rhel.6-x64.tar.gz",
"hash": "0273ad354fef062470a29ec00231104ef155577a1f59fc49872a1acf05e7c4461bb2e514af5f073b4de5ebe186ce17442a4aee1ef6ff450382af259baaf34dc2"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4c8347d4-289e-4635-9ae8-f4d81d69bea0/6fc3710c423a72e50647073ca0f454bb/dotnet-sdk-2.1.609-win-x64.exe",
"hash": "a47a497e1609463234719cc29b44b28a4fae69d43ea3a54be1251c980f29ceaf44504eb437ad634f4d2925b12b2047360848747214c2cf4dfe3a3ee0a3982d2b"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/eac6f85e-c95c-4756-a589-b2b062e0a917/369e37c8c3fa0d2715ca69c2386ce6ee/dotnet-sdk-2.1.609-win-x64.zip",
"hash": "0652569a4a6115b7089a30810dec5bdfc08929d2b9e44973eb57c60d514fd4b565f9f50022b760009ceb8eef254eb5c635ee0c0ee885e2b000418e1345fe99ac"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/e5c2489a-5623-40a4-a0bf-e0023571c950/8619367310baccc07fb2d74bf6b6094e/dotnet-sdk-2.1.609-win-x86.exe",
"hash": "c3305c6eed0deefbc0c041b4a036a463cdbd5cba6d1c702b0448ef0176a06f1dafc50297ed8e1a5d94f565037358ebddb90d7a4a2c177c0bdd10025ca2c128f5"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/e288079a-a735-4083-9992-1db3ab3a6289/92845b3a4ff440af4e8692006dd66a88/dotnet-sdk-2.1.609-win-x86.zip",
"hash": "9543d5c9093ca7367962f1e6ff0386d9efa371ca3da903b2469b7ac92de1a70ebbe087fdca13238e086ed7b9520372f097934a32b225373612dae410a106299a"
}
]
},
{
"version": "2.1.512",
"version-display": "2.1.512",
"runtime-version": "2.1.16",
"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/0925365c-7054-4887-b54a-d19ccf815256/b905091a2dd235d01568627ebe910798/dotnet-sdk-2.1.512-linux-arm.tar.gz",
"hash": "4fc7d6ebdb5cf5d062b6e13934ad506326a1351130919e2b4a1b33e2a55f1730f1c0f70ceb33eed299e4196ae416634658474575d6d734500ef6c5e81ea6b00a"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/03a099c0-c240-484e-a301-d66790fa2b26/adc347091fa559a9b821da98cd945707/dotnet-sdk-2.1.512-linux-arm64.tar.gz",
"hash": "f1ff89759b85a10511ef4540645d76f3052da77f8483e070edeca182fa5a034019d0e27e12272d9c8319dd1df61f1400b6eb4415bb2a170a24612a42f6ea3792"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cbc74bd2-11d9-4c98-80ab-de1409d35646/a65c13ec6940b14a2118880a886fb555/dotnet-sdk-2.1.512-linux-musl-x64.tar.gz",
"hash": "af91e5d4b3a19d98c060f35067d1ebdbf864119e45a251442d0cc36667692233f711ea60c64937338a31d83d51174fddc5a2bb836d10b5b97d3ad0226cf093cd"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/326ff625-4f6d-440c-95bf-a9cecb63396a/a9206932a7493ceebcecc62b36e8f039/dotnet-sdk-2.1.512-linux-x64.tar.gz",
"hash": "820bdc189441e39e8d5f22d3d2c45dabede7d6d96e4bc39a3634f53382d34c6431b78616064ec8ad7b2a0f8d3527df7cc5a5ca74e78734c906b817ffde4b47a1"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6e341d69-2393-43e8-abc8-952b191af9ed/f975eeed4a2b152cdfdad5eb6934677d/dotnet-sdk-2.1.512-osx-x64.pkg",
"hash": "1b0d54737461e5592f05f9f63ef3dc1080d1390908b571c828f54442f9d1cb8172fc50650a96bad39a7c879191f669e63a34e23654122bba641ec1a0fd31b3ce"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/08c2e7be-1e80-43c5-877b-d2de421059f6/94ae355bb7cc23ab0f8181314d511c82/dotnet-sdk-2.1.512-osx-x64.tar.gz",
"hash": "4bf3c86436a04a9b4a71a720f2f8e9d2426b95610c18c4627b6b3663f0e2bcf56ced9bef0b7db3eebe411526bfa9510e1232146968a5518d798c7bf5d1ac60a6"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/be338c91-bb76-48dd-98f0-e5655ebdf838/bb5ec78a2393612fa9346dfe01e08e74/dotnet-sdk-2.1.512-rhel.6-x64.tar.gz",
"hash": "2f962fb0ae6201d4f0b2c61a7f323eac3fd3a81736f54150c81c83c18348cf77da965416766cf0ac55ed9d0b0ff0978d069b8546a73a50b78acbda1ed16fe18d"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5e651460-8be6-4530-bfa9-e3d0bd7323ae/cd007b52ba0ffb21227083919870a827/dotnet-sdk-2.1.512-win-x64.exe",
"hash": "fd26060ae46d550191a06bf5b7b25435d62e0af8e6d8e58b322c370303623532be12719474a2faed9fd20ea29e7aa18160d397c8c2554a00e2d1e97b9d12fcb6"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/48d31be5-20b4-486a-ad90-04e6f56d2894/f31e810a8ad9197c42c9e25c3ed2a829/dotnet-sdk-2.1.512-win-x64.zip",
"hash": "85fc23f01c33fa81c8f78838ee2c0bf8dabe29d72233d981918b8b813cc1c01097c1f584b4c54f0f0e8e693ffe110bd1cac33745112f45d5f6bea7607d94ab05"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/458eda17-3e47-4b99-8c83-e762a8c1f41f/f19b0647f60580a94bcd49817e12586d/dotnet-sdk-2.1.512-win-x86.exe",
"hash": "086eb9dba667fc6bb90f858abb7ff164bd0a7f3dad6f9c3e6393b9af7aa88d56c8b931f379cd008951a174674cd67fdce0eb55061dd3553493639dfc9e98f7a3"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/794f499c-6746-49a0-a9fb-16c8ea6a36c8/8ab3d8d2a9fd7198a9620c8295b63293/dotnet-sdk-2.1.512-win-x86.zip",
"hash": "4b38064e69daeb8929cf336a13e3c9a7b3c54b8207642241d2e9bddcd9d3a1604f570531b10b6cd34c2196763ad49f904f8458deb10c0c0a1690df5a0a50356c"
}
]
}
],
"aspnetcore-runtime": {
"version": "2.1.16",
"version-display": "2.1.16",
"version-aspnetcoremodule": [
"12.1.20017.16"
],
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/5320e7dc-edb5-47da-b7a7-21f41d900df8/790d4fc9c0740753027e09e85b8f8b73/aspnetcore-runtime-2.1.16-linux-arm.tar.gz",
"hash": "d4f9540c9e505669c407d9bb2e7f821f5d0d0cd20e3d02f89f145f8863740811278b9ec961f4824a19f9b9a6cc3177f855764f20bd506c5f768888f1aa709b17"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/48c55817-a638-4efa-b01a-c6e109bebe6c/3ef6df9794ad3954340317e50edf0e0b/aspnetcore-runtime-2.1.16-linux-musl-x64.tar.gz",
"hash": "f5867edc41e0fb1a597ecc1f2151fc539fca1eca4143919397b8bb45f3f594527a452c856940837b90dba3255edc9dbacb26ade278557b660f9ca92698f96f67"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5fa590c6-dbb4-41d2-81a1-d6650d3b390c/6f7c69995ebadeaa43fcd8872083cd58/aspnetcore-runtime-2.1.16-linux-x64.tar.gz",
"hash": "f01c74183f551456539dec9af1b3a56fab7394fed85afb03e116d1d055eb02503214b5044623db811d07b37985974ea51e5a5a748e28f1aca3b7b46f28fec615"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/bf269e2e-4202-43fa-811e-e55aa86fc08d/8189293f3d624f68ab1cd99fa4ca03fe/aspnetcore-runtime-2.1.16-osx-x64.tar.gz",
"hash": "a95f80857dabb9c0188e38fb4efb499283f40f70a77909e6ce817c4ffe549192b8076e995bafa90d0094ee489722a1a79869229c74aefb50e41b21b1f162ac6f"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/020c2ecb-cdb8-4ea0-bf4a-3e06e43e72f9/cdf754ac6ee692b270c37c5c34bdc8b1/aspnetcore-runtime-2.1.16-win-x64.exe",
"hash": "78d55b606c0e466e8f2a787ffd76fe85367a6edfbf619f0c09900e9170c6085fc12dea618645157d13b319a18b2cfec2103440d3998408d7dd38293feb7ad39b"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0c14d9b1-08aa-43a2-9266-3d18ad34b625/2b8ac6bc26085f66007dc6ec0af9705e/aspnetcore-runtime-2.1.16-win-x64.zip",
"hash": "7fb045aeb7761e9683f71aae64e30a92bddd480eac279dcaace0a584e3235428351de31f62be019728ba0dc36168166d945b67f83c6fa6a8e57409048399e32f"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/9afe37a3-47a2-4184-881c-69bfcb2e4ed7/e24dfa19aa5622ee399bdf1f99bbda86/aspnetcore-runtime-2.1.16-win-x86.exe",
"hash": "0cab3901a5f93e9ecc17cc6530a292e0d9fcadf916dd4d9a9e452092d08fd59ce492b29d5a8224db384ee73b10682f0ba03a2cc81774942011d4b1b2cd2754a2"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/eadccb14-3710-4c79-9f30-51c32840de1b/8b267a8f530a2409ed4c6888cad04360/aspnetcore-runtime-2.1.16-win-x86.zip",
"hash": "3d7ba5093761865363a9e7aba35cee0f88f1c8ded7ed45646cc81caf0047a8fc147ce18fbc86ed94779a1860545ac17e5f933e7dd0169279c18aa37b1b326467"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/5a059308-c27a-4223-b04d-0e815dce2cd0/10f528c237fed56192ea22283d81c409/dotnet-hosting-2.1.16-win.exe",
"hash": "c0daf9c71f4d02c1b4686765b068bd8334e7a2ef6f1d2ff2ed066babd4fdc911ab83e8a35afb22f55330bd49dcde595d90998db7781ea5c9fc1ace75cb45b5ab"
}
]
}
},
{
"release-date": "2020-01-14",
"release-version": "2.1.15",

View file

@ -0,0 +1,97 @@
# .NET Core 3.0.3
.NET Core 3.0.3 comprises:
* .NET Core Runtime 3.0.3
* ASP.NET Core 3.0.3
* .NET Core SDK 3.0.103
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.0/3.0.3/3.0.3.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.0/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.0
```
## 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.0
```
### 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.0` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.0` will install both the ASP Runtime and .NET Core Runtime.
## Windows Server Hosting
If you are looking to host stand-alone apps on Servers, the following installer can be used on Windows systems.
### Windows
You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
* [dotnet-hosting-3.0.3-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.0/3.0.3/3.0.3.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.0.3-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.0.3-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/18e13f02-1a28-4fe4-b642-6674408c3673/108e75fd84bf9153ea03ed4011252f9b/dotnet-hosting-3.0.3-win.exe

View file

@ -0,0 +1,165 @@
# .NET Core 3.0.3 Update - February 18, 2020
[.NET Core 3.0.3](https://dotnet.microsoft.com/download/dotnet-core/3.0) is available for download and usage in your environment. This release includes .NET Core 3.0.3 and .NET Core SDK 3.0.103.
* [Blog Post][dotnet-blog]
* [Downloads](#downloads)
* [Changes in this release](#changes-in-303)
* [Known Issues](../3.0-known-issues.md)
* [.NET Core Lifecycle News](#net-core-lifecycle-news)
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] | -<sup></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] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [ARM64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup> | - |
| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - | - |
1. Includes the .NET 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.
## 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 3.0.3 is being deployed to Azure App Services and the deployment is expected to complete later in February 2020.
## .NET Core Lifecycle News
[.NET Core 2.2 reached end of life](https://github.com/dotnet/announcements/issues/147/) on December 23, 2019. This means .NET Core 2.2 is no longer supported and updates will no longer be provided. We recommend moving to .NET Core 3.1, our long term support (LTS) release.
.NET Core 3.0 will reach end of life on March 3, 2020 which is 3 months after the release of .NET Core 3.1. You can view the [Microsoft Support for .NET Core](https://github.com/dotnet/core/blob/master/microsoft-support.md) for more information about life-cycle of each product.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 3.0.3
.NET Core 3.0.3 release carries only non-security fixes.
* [CoreCLR](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=milestone%3A3.0.3+label%3Aservicing-approved)
* [ASP.NETCore](https://github.com/search?q=is%3Apr+label%3AServicing-approved+milestone%3A3.0.3+repo%3Adotnet%2Faspnetcore+repo%3Adotnet%2Fextensions+repo%3Adotnet%2Faspnetcore-tooling+repo%3Adotnet%2Fblazor+repo%3Adotnet%2Fefcore+repo%3Adotnet%2Fef6)
[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.0/3.0.3/3.0.3.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.0.3-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.0.3-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-february-2020/
[snap-install]: 3.0.3-install-instructions.md
[//]: # ( Runtime 3.0.3)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5bc0f5d9-8651-4d2b-bf73-c668127fd7a6/482ba135bde7abe1b4d9ac7aca1d492e/dotnet-runtime-3.0.3-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/24687337-74b3-4897-89e4-eec2a743fb70/e12c8e9decba2cadc31e6358c2dad9da/dotnet-runtime-3.0.3-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0c3dbb86-d643-489b-b1a7-d3c386d8fa47/fc9e71cbcca384c03a37e8b5aa9d07be/dotnet-runtime-3.0.3-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6ad304ea-28a3-41c6-b30f-f0e1393f41de/83af63265fd59a8bf171417bd5134bb6/dotnet-runtime-3.0.3-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/8368f0ac-6410-4f51-bc94-b4569f9ba2c3/8a0f1c12fe3db05323ec9739a7aa7bca/dotnet-runtime-3.0.3-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ab85ac56-066d-4324-94c3-f0f5bfd2e8eb/6d3b9974984dd8b9032a0bb9a0299997/dotnet-runtime-3.0.3-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6e47383c-e2b9-4d9a-ac3b-887da34495b1/654097120bb0a624a7f88f872f1cafa9/dotnet-runtime-3.0.3-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/943c49b6-78b1-400c-9e48-b22ca1ff10e5/db14cf3087d92b6eb613b7d61b6c23ba/dotnet-runtime-3.0.3-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/fa69f1ae-255d-453c-b4ff-28d832525037/51694be04e411600c2e3361f6c81400d/dotnet-runtime-3.0.3-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/15e4e37f-a748-467f-b2f1-9abe313118db/c1d747e823daacbffca069368a690bdd/dotnet-runtime-3.0.3-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/43ee0fd4-eba6-4803-ad1f-3508ab8a928a/6ab4fc4ba693870614d72dc52073e339/dotnet-runtime-3.0.3-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/cd1505e1-3b9c-4dd6-b94b-476117f28f0b/c549924e17fc7c9be079729bf28fff28/dotnet-runtime-3.0.3-win-x86.zip
[//]: # ( WindowsDesktop 3.0.3)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c525a2bb-6e98-4e6e-849e-45241d0db71c/d21612f02b9cae52fa50eb54de905986/windowsdesktop-runtime-3.0.3-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/e312618d-85c4-4cad-b660-569b5522eca9/e951e76ebe011b5d3ea1289ef68e8281/windowsdesktop-runtime-3.0.3-win-x86.exe
[//]: # ( ASP 3.0.3)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4a6ecb0e-d322-44b1-8137-8e52f9486d1d/c2336dd6d8c7cf7f5d6c1d257f76d369/aspnetcore-runtime-3.0.3-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/86acdeec-817b-41a1-921d-7a6d8caa45b1/7ac0ea3144ef9266b204bf17d6e20e3c/aspnetcore-runtime-3.0.3-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/baa7233f-cbd9-486e-bcfd-9c4bd6142d31/c77859cee6f8ddba26b8af1ca1694771/aspnetcore-runtime-3.0.3-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c25ded8c-70c9-4287-9d25-f7842bca6b93/d03d7e7206c6d98240fd0696054468d0/aspnetcore-runtime-3.0.3-linux-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/81a88ac6-cc4f-4cad-a87b-043c9523bd61/cc5cada454049e9ce125860f58c4949d/aspnetcore-runtime-3.0.3-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/207c4791-a366-4d35-96ed-0bbe10a683d3/1ca408df70ca668ea8e8ec36d2aedf48/aspnetcore-runtime-3.0.3-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/c6dab355-4d7c-4998-94f2-4157397fa801/f98b118cb0f5428aacbafcbb97bcf980/aspnetcore-runtime-3.0.3-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/289dff4e-eec9-4d2f-9b4b-fe7524e89e79/db4900dcf54b4bb7dcc8beecb5634695/aspnetcore-runtime-3.0.3-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/04980341-57ae-4366-bf68-b2b0d7e169c7/d8a32dae7bb764aafb1fb596a3737277/aspnetcore-runtime-3.0.3-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/18e13f02-1a28-4fe4-b642-6674408c3673/108e75fd84bf9153ea03ed4011252f9b/dotnet-hosting-3.0.3-win.exe
[//]: # ( SDK 3.0.103 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4a44d4d2-19c1-485a-8b58-fa06805cddcf/cc805a1ebd9d72099309dcd46492d36f/dotnet-sdk-3.0.103-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/eb4ffaf1-b0a9-466d-8440-0220dca8f806/48df585d8d978c5418fa514da6a2bd9b/dotnet-sdk-3.0.103-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/66a28bc9-f5c1-454b-b729-986b7c7040be/72285e6d6e74780c63cc061503a2d88a/dotnet-sdk-3.0.103-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/43f3a3bd-3df2-41e6-beca-3ec4952ca6c4/30fe7779249607d1bb3bb4b20d61a479/dotnet-sdk-3.0.103-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/0940cd74-9702-4c11-8ed1-883a4d8b53f3/f699c036a9e6731b4168f22884da2b37/dotnet-sdk-3.0.103-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1c0c10c5-c7f1-463d-b9d3-e11b19f0fd00/984ad2bde8d919c53032d45ae61ff86a/dotnet-sdk-3.0.103-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9951d9b5-286a-434b-89a3-18e87f1c5aa4/14e7bf58086f0dd96d98d78af2feb310/dotnet-sdk-3.0.103-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/914b0608-b8ee-4485-87bb-cca2a3f78e1d/68dd03598a4503ad1de4b3a3099c6357/dotnet-sdk-3.0.103-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/848d3804-9a9c-42a0-8a53-40329bc7bf76/8f39c7ad960594e5ec7235c333b53733/dotnet-sdk-3.0.103-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/874a85a8-de9b-405d-b75e-9c3e9b3ddd0d/eb5f33724a7ba55d47fd12b2f1f8f764/dotnet-sdk-3.0.103-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/715dc65d-5906-4365-ab5b-fa8fc8f80a10/32f8fb72e1d704eebee7d8e8cf79f308/dotnet-sdk-3.0.103-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/b9728e15-2acb-4a02-ba8e-d122bd2c497c/ad2258b4463a4180187b1fed0f340971/dotnet-sdk-3.0.103-win-x86.zip
[//]: # ( Symbols )
[//]: # ( Runtime 3.0.3)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5bc0f5d9-8651-4d2b-bf73-c668127fd7a6/482ba135bde7abe1b4d9ac7aca1d492e/dotnet-runtime-3.0.3-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/24687337-74b3-4897-89e4-eec2a743fb70/e12c8e9decba2cadc31e6358c2dad9da/dotnet-runtime-3.0.3-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0c3dbb86-d643-489b-b1a7-d3c386d8fa47/fc9e71cbcca384c03a37e8b5aa9d07be/dotnet-runtime-3.0.3-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6ad304ea-28a3-41c6-b30f-f0e1393f41de/83af63265fd59a8bf171417bd5134bb6/dotnet-runtime-3.0.3-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/8368f0ac-6410-4f51-bc94-b4569f9ba2c3/8a0f1c12fe3db05323ec9739a7aa7bca/dotnet-runtime-3.0.3-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ab85ac56-066d-4324-94c3-f0f5bfd2e8eb/6d3b9974984dd8b9032a0bb9a0299997/dotnet-runtime-3.0.3-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6e47383c-e2b9-4d9a-ac3b-887da34495b1/654097120bb0a624a7f88f872f1cafa9/dotnet-runtime-3.0.3-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/943c49b6-78b1-400c-9e48-b22ca1ff10e5/db14cf3087d92b6eb613b7d61b6c23ba/dotnet-runtime-3.0.3-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/fa69f1ae-255d-453c-b4ff-28d832525037/51694be04e411600c2e3361f6c81400d/dotnet-runtime-3.0.3-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/15e4e37f-a748-467f-b2f1-9abe313118db/c1d747e823daacbffca069368a690bdd/dotnet-runtime-3.0.3-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/43ee0fd4-eba6-4803-ad1f-3508ab8a928a/6ab4fc4ba693870614d72dc52073e339/dotnet-runtime-3.0.3-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/cd1505e1-3b9c-4dd6-b94b-476117f28f0b/c549924e17fc7c9be079729bf28fff28/dotnet-runtime-3.0.3-win-x86.zip
[//]: # ( WindowsDesktop 3.0.3)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c525a2bb-6e98-4e6e-849e-45241d0db71c/d21612f02b9cae52fa50eb54de905986/windowsdesktop-runtime-3.0.3-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/e312618d-85c4-4cad-b660-569b5522eca9/e951e76ebe011b5d3ea1289ef68e8281/windowsdesktop-runtime-3.0.3-win-x86.exe
[//]: # ( ASP 3.0.3)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4a6ecb0e-d322-44b1-8137-8e52f9486d1d/c2336dd6d8c7cf7f5d6c1d257f76d369/aspnetcore-runtime-3.0.3-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/86acdeec-817b-41a1-921d-7a6d8caa45b1/7ac0ea3144ef9266b204bf17d6e20e3c/aspnetcore-runtime-3.0.3-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/baa7233f-cbd9-486e-bcfd-9c4bd6142d31/c77859cee6f8ddba26b8af1ca1694771/aspnetcore-runtime-3.0.3-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c25ded8c-70c9-4287-9d25-f7842bca6b93/d03d7e7206c6d98240fd0696054468d0/aspnetcore-runtime-3.0.3-linux-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/81a88ac6-cc4f-4cad-a87b-043c9523bd61/cc5cada454049e9ce125860f58c4949d/aspnetcore-runtime-3.0.3-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/207c4791-a366-4d35-96ed-0bbe10a683d3/1ca408df70ca668ea8e8ec36d2aedf48/aspnetcore-runtime-3.0.3-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/c6dab355-4d7c-4998-94f2-4157397fa801/f98b118cb0f5428aacbafcbb97bcf980/aspnetcore-runtime-3.0.3-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/289dff4e-eec9-4d2f-9b4b-fe7524e89e79/db4900dcf54b4bb7dcc8beecb5634695/aspnetcore-runtime-3.0.3-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/04980341-57ae-4366-bf68-b2b0d7e169c7/d8a32dae7bb764aafb1fb596a3737277/aspnetcore-runtime-3.0.3-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/18e13f02-1a28-4fe4-b642-6674408c3673/108e75fd84bf9153ea03ed4011252f9b/dotnet-hosting-3.0.3-win.exe
[//]: # ( SDK 3.0.103 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4a44d4d2-19c1-485a-8b58-fa06805cddcf/cc805a1ebd9d72099309dcd46492d36f/dotnet-sdk-3.0.103-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/eb4ffaf1-b0a9-466d-8440-0220dca8f806/48df585d8d978c5418fa514da6a2bd9b/dotnet-sdk-3.0.103-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/66a28bc9-f5c1-454b-b729-986b7c7040be/72285e6d6e74780c63cc061503a2d88a/dotnet-sdk-3.0.103-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/43f3a3bd-3df2-41e6-beca-3ec4952ca6c4/30fe7779249607d1bb3bb4b20d61a479/dotnet-sdk-3.0.103-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/0940cd74-9702-4c11-8ed1-883a4d8b53f3/f699c036a9e6731b4168f22884da2b37/dotnet-sdk-3.0.103-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1c0c10c5-c7f1-463d-b9d3-e11b19f0fd00/984ad2bde8d919c53032d45ae61ff86a/dotnet-sdk-3.0.103-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9951d9b5-286a-434b-89a3-18e87f1c5aa4/14e7bf58086f0dd96d98d78af2feb310/dotnet-sdk-3.0.103-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/914b0608-b8ee-4485-87bb-cca2a3f78e1d/68dd03598a4503ad1de4b3a3099c6357/dotnet-sdk-3.0.103-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/848d3804-9a9c-42a0-8a53-40329bc7bf76/8f39c7ad960594e5ec7235c333b53733/dotnet-sdk-3.0.103-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/874a85a8-de9b-405d-b75e-9c3e9b3ddd0d/eb5f33724a7ba55d47fd12b2f1f8f764/dotnet-sdk-3.0.103-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/715dc65d-5906-4365-ab5b-fa8fc8f80a10/32f8fb72e1d704eebee7d8e8cf79f308/dotnet-sdk-3.0.103-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/b9728e15-2acb-4a02-ba8e-d122bd2c497c/ad2258b4463a4180187b1fed0f340971/dotnet-sdk-3.0.103-win-x86.zip
[//]: # ( Symbols )

View file

@ -5,6 +5,7 @@ The following .NET Core 3.0 releases have been shipped. You must be on the lates
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/03/03 (future) | Out of Support | see [details](https://github.com/dotnet/core/blob/master/microsoft-support.md#net-core-releases) |
| 2020/02/18 | [3.0.3](./3.0.3/3.0.3.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.0) |
| 2020/01/14 | [3.0.2](./3.0.2/3.0.2.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.0) |
| 2019/11/19 | [3.0.1](./3.0.1/3.0.1.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.0) |
| 2019/09/23 | [3.0.0](./3.0.0/3.0.0.md) | [download](./3.0.0/3.0.0-download.md) | - |

View file

@ -1,13 +1,332 @@
{
"channel-version": "3.0",
"latest-release": "3.0.2",
"latest-release-date": "2020-01-14",
"latest-runtime": "3.0.2",
"latest-sdk": "3.0.102",
"latest-release": "3.0.3",
"latest-release-date": "2020-02-18",
"latest-runtime": "3.0.3",
"latest-sdk": "3.0.103",
"support-phase": "maintenance",
"eol-date": "2020-03-03",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-02-18",
"release-version": "3.0.3",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/3.0/3.0.3/3.0.3.md",
"runtime": {
"version": "3.0.3",
"version-display": "3.0.3",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/5bc0f5d9-8651-4d2b-bf73-c668127fd7a6/482ba135bde7abe1b4d9ac7aca1d492e/dotnet-runtime-3.0.3-linux-arm.tar.gz",
"hash": "129b8af023c541986ac74367b63337363949c2307452246aa61ef05dd33969576db8fd5e515373f14da9bd23428037e60aa7d9000743dce6c75186de065e61e7"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/24687337-74b3-4897-89e4-eec2a743fb70/e12c8e9decba2cadc31e6358c2dad9da/dotnet-runtime-3.0.3-linux-arm64.tar.gz",
"hash": "cfdb6132a3759a6fe67e4140f01d59089bf8e72b87ed5792cd9892ee9819234ab21888fb73abbf673354b5258d97cbf47a8801d4a302f6d3952d4b3b36367469"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0c3dbb86-d643-489b-b1a7-d3c386d8fa47/fc9e71cbcca384c03a37e8b5aa9d07be/dotnet-runtime-3.0.3-linux-musl-x64.tar.gz",
"hash": "d62a1c9da4e38c1b2fe3f31180486008eff9b7b74d0ef8b1016c27c573bcf61a7b11a4874b9a1b67af3a16abef10ba0b993e8730e45cf51342b6281056a71fa3"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6ad304ea-28a3-41c6-b30f-f0e1393f41de/83af63265fd59a8bf171417bd5134bb6/dotnet-runtime-3.0.3-linux-x64.tar.gz",
"hash": "3d1f0ba2f293f43e087a8940a0f4736561f43b9f28bc5beda79a61f887e258543aea4dc71e88414a7c6e271dcda984a989afb62fc659a72223707a179cdde9c5"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8368f0ac-6410-4f51-bc94-b4569f9ba2c3/8a0f1c12fe3db05323ec9739a7aa7bca/dotnet-runtime-3.0.3-osx-x64.pkg",
"hash": "bbde63ab43032cd3d8607323682eecceedbd5b2a63bdb87d8019d48e2ece946564df4f97aab8f666b7585fc078369a2b9bac187cc9cb39a4dec00a835e9f2357"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ab85ac56-066d-4324-94c3-f0f5bfd2e8eb/6d3b9974984dd8b9032a0bb9a0299997/dotnet-runtime-3.0.3-osx-x64.tar.gz",
"hash": "035daff05a04c53ee9735a6d9af0caebf58f93057d8a4d44e3fa56f2061042359f3b220f20226d4ba02cb8f38a2890260dcfe176d63af1b027d03857fd4c2034"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6e47383c-e2b9-4d9a-ac3b-887da34495b1/654097120bb0a624a7f88f872f1cafa9/dotnet-runtime-3.0.3-rhel.6-x64.tar.gz",
"hash": "c6dbf98d6e361053432f7a611adb4623a7e6809e8671d05886cb1acd215f579247ee13a886b3ec4ef9ba88e86baf7e375e13e9d5d621f241eaf26186a844fd3f"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/943c49b6-78b1-400c-9e48-b22ca1ff10e5/db14cf3087d92b6eb613b7d61b6c23ba/dotnet-runtime-3.0.3-win-arm.zip",
"hash": "ba7376649f5cabfafd63c13559c4bc14d2f33ecbb78c5673ba5b77670f0ae06e2e628f14b29209690f21a70e9e209f88155be97bb5c1ab1477ef041901fedf60"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fa69f1ae-255d-453c-b4ff-28d832525037/51694be04e411600c2e3361f6c81400d/dotnet-runtime-3.0.3-win-x64.exe",
"hash": "d8b85817dd2691a03a9ce3c488c37694bc723750fe11a7761ce15bf65a6d6cf2672c4f32f6c8b7d3576e3e197e86898e89cb36e69feabf3b7c205c78cb0801ed"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/15e4e37f-a748-467f-b2f1-9abe313118db/c1d747e823daacbffca069368a690bdd/dotnet-runtime-3.0.3-win-x64.zip",
"hash": "00428351d01f90e2951699f035d60068313f59e8ca5f07dfe228f1196644d2e1e4d7d8e80396bbc659001ac47df000c2f3b73433cba5f18ee7a39c0465daf60b"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/43ee0fd4-eba6-4803-ad1f-3508ab8a928a/6ab4fc4ba693870614d72dc52073e339/dotnet-runtime-3.0.3-win-x86.exe",
"hash": "8ec3b01530f112e268cfdbd0213f0d47ebbbb2bd2b14b574e60bdeb22e6a46b42d39f5c212f603375e074459aef1a0e1442c1b016effe201081b0fb745ffa207"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/cd1505e1-3b9c-4dd6-b94b-476117f28f0b/c549924e17fc7c9be079729bf28fff28/dotnet-runtime-3.0.3-win-x86.zip",
"hash": "06f5551c9a31d3f05f9f689ea0c6b0219404e6ac57b8fb632f682bb6d99045c98d843973ce34bf1ecfd53bd2fac2fe397319634e0b60aeaef01e9606805781bf"
}
]
},
"sdk": {
"version": "3.0.103",
"version-display": "3.0.103",
"runtime-version": "3.0.3",
"vs-support": "Visual Studio 2019 (v16.3 or later)",
"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/4a44d4d2-19c1-485a-8b58-fa06805cddcf/cc805a1ebd9d72099309dcd46492d36f/dotnet-sdk-3.0.103-linux-arm.tar.gz",
"hash": "c4836970b33813f5de36ba6b92cbce2b2ecb9bfd23101cb20af194824ef7b2c899d9d550284616036f546804032aeabc93d5edf5471f9bea73060c341a813a2a"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/eb4ffaf1-b0a9-466d-8440-0220dca8f806/48df585d8d978c5418fa514da6a2bd9b/dotnet-sdk-3.0.103-linux-arm64.tar.gz",
"hash": "ceeea4f5590dab0ccc8f016f61db72515bfe1b0d2308a1065696ec654088993f2fbfa7e5b12a486a229c9fbbda657be9f80e03879d9e3038b2d78ea4020f82c4"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/66a28bc9-f5c1-454b-b729-986b7c7040be/72285e6d6e74780c63cc061503a2d88a/dotnet-sdk-3.0.103-linux-musl-x64.tar.gz",
"hash": "79c2c93d5d4f212f4d2c96cf1611d4f93370c075c342186ecacebb10cad301cffe8345e2d97e45a771e165f10e895f6e08d0b2e74b12b04c8e1b4062a2bbd35a"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/43f3a3bd-3df2-41e6-beca-3ec4952ca6c4/30fe7779249607d1bb3bb4b20d61a479/dotnet-sdk-3.0.103-linux-x64.tar.gz",
"hash": "22acd337c1f837c586b9d0e3581feeba828c7d6dc64e4c6c9b24bdc6159c635eb7019c3fb0534edeb4f84971e9c3584c7e3a4d80854cf5664d2792ee8fde189b"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0940cd74-9702-4c11-8ed1-883a4d8b53f3/f699c036a9e6731b4168f22884da2b37/dotnet-sdk-3.0.103-osx-x64.pkg",
"hash": "478310aa9683973db33195baf02849fef810a7853f9f3ff94719481cdfddc59033e19237f58f00b83ffb6c66dce09a04ce748a00713a85d3e156fb8d93f3c8b1"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1c0c10c5-c7f1-463d-b9d3-e11b19f0fd00/984ad2bde8d919c53032d45ae61ff86a/dotnet-sdk-3.0.103-osx-x64.tar.gz",
"hash": "96edceb1024ce83e86de8c173d49b8cccd0e0af2e54f2c9dea340570243d93df400521cb0c1b64e9f1f74e6327308dbba528e12629e0a910c447155c62727dd5"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9951d9b5-286a-434b-89a3-18e87f1c5aa4/14e7bf58086f0dd96d98d78af2feb310/dotnet-sdk-3.0.103-rhel.6-x64.tar.gz",
"hash": "ce9e9ceb51cb969109c1dfa2a90ea8b54540a34e361c8b86e60e8d2dab8a562bb659546c88f067d1464aa3015133050538b93b110e823a2853583a4b3e3231af"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/914b0608-b8ee-4485-87bb-cca2a3f78e1d/68dd03598a4503ad1de4b3a3099c6357/dotnet-sdk-3.0.103-win-arm.zip",
"hash": "5b1b042cc1ee611149d997e8255cae1a56211194583ec6b8721bf219fdf15233e9c18f58fea3ff698ad22707491d8120e5d010b18de0ef33a913425f7cc995b6"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/848d3804-9a9c-42a0-8a53-40329bc7bf76/8f39c7ad960594e5ec7235c333b53733/dotnet-sdk-3.0.103-win-x64.exe",
"hash": "1cbe8d898b53342fd08864f69918375ce24181464a5e54e25e0c5f8ed4d737b595af72ef11d3aed029df8ed6f51fc400a1f264f0996a2dc2edb7502f750a14bf"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/874a85a8-de9b-405d-b75e-9c3e9b3ddd0d/eb5f33724a7ba55d47fd12b2f1f8f764/dotnet-sdk-3.0.103-win-x64.zip",
"hash": "4d873263ba312a14fc10bdc4ce362eefbb65b759c0676c32fb00cb60bb52deed2bc397908c9472fd53991e3b679e5c8285d3df2cca52c6597909fb17a64580af"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/715dc65d-5906-4365-ab5b-fa8fc8f80a10/32f8fb72e1d704eebee7d8e8cf79f308/dotnet-sdk-3.0.103-win-x86.exe",
"hash": "f5791ba9df3ce6acb2a4c11336e2170e9825697ee91aaf55d4879ab1552fe4df63989b1c099bcc7405781009ad27d955e17ba6c0f5335a3f82d3fc3162a1c7b0"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/b9728e15-2acb-4a02-ba8e-d122bd2c497c/ad2258b4463a4180187b1fed0f340971/dotnet-sdk-3.0.103-win-x86.zip",
"hash": "cff9737c9cee6389ecbb7ede732e70da8a2199a0b89e56e4bddbf9f705ccbeffb6b1a8df15038d09295c2c56d07bf2d7ce9754de3621f55703595442eb9c972f"
}
]
},
"sdks": [
{
"version": "3.0.103",
"version-display": "3.0.103",
"runtime-version": "3.0.3",
"vs-support": "Visual Studio 2019 (v16.3 or later)",
"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/4a44d4d2-19c1-485a-8b58-fa06805cddcf/cc805a1ebd9d72099309dcd46492d36f/dotnet-sdk-3.0.103-linux-arm.tar.gz",
"hash": "c4836970b33813f5de36ba6b92cbce2b2ecb9bfd23101cb20af194824ef7b2c899d9d550284616036f546804032aeabc93d5edf5471f9bea73060c341a813a2a"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/eb4ffaf1-b0a9-466d-8440-0220dca8f806/48df585d8d978c5418fa514da6a2bd9b/dotnet-sdk-3.0.103-linux-arm64.tar.gz",
"hash": "ceeea4f5590dab0ccc8f016f61db72515bfe1b0d2308a1065696ec654088993f2fbfa7e5b12a486a229c9fbbda657be9f80e03879d9e3038b2d78ea4020f82c4"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/66a28bc9-f5c1-454b-b729-986b7c7040be/72285e6d6e74780c63cc061503a2d88a/dotnet-sdk-3.0.103-linux-musl-x64.tar.gz",
"hash": "79c2c93d5d4f212f4d2c96cf1611d4f93370c075c342186ecacebb10cad301cffe8345e2d97e45a771e165f10e895f6e08d0b2e74b12b04c8e1b4062a2bbd35a"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/43f3a3bd-3df2-41e6-beca-3ec4952ca6c4/30fe7779249607d1bb3bb4b20d61a479/dotnet-sdk-3.0.103-linux-x64.tar.gz",
"hash": "22acd337c1f837c586b9d0e3581feeba828c7d6dc64e4c6c9b24bdc6159c635eb7019c3fb0534edeb4f84971e9c3584c7e3a4d80854cf5664d2792ee8fde189b"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0940cd74-9702-4c11-8ed1-883a4d8b53f3/f699c036a9e6731b4168f22884da2b37/dotnet-sdk-3.0.103-osx-x64.pkg",
"hash": "478310aa9683973db33195baf02849fef810a7853f9f3ff94719481cdfddc59033e19237f58f00b83ffb6c66dce09a04ce748a00713a85d3e156fb8d93f3c8b1"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1c0c10c5-c7f1-463d-b9d3-e11b19f0fd00/984ad2bde8d919c53032d45ae61ff86a/dotnet-sdk-3.0.103-osx-x64.tar.gz",
"hash": "96edceb1024ce83e86de8c173d49b8cccd0e0af2e54f2c9dea340570243d93df400521cb0c1b64e9f1f74e6327308dbba528e12629e0a910c447155c62727dd5"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9951d9b5-286a-434b-89a3-18e87f1c5aa4/14e7bf58086f0dd96d98d78af2feb310/dotnet-sdk-3.0.103-rhel.6-x64.tar.gz",
"hash": "ce9e9ceb51cb969109c1dfa2a90ea8b54540a34e361c8b86e60e8d2dab8a562bb659546c88f067d1464aa3015133050538b93b110e823a2853583a4b3e3231af"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/914b0608-b8ee-4485-87bb-cca2a3f78e1d/68dd03598a4503ad1de4b3a3099c6357/dotnet-sdk-3.0.103-win-arm.zip",
"hash": "5b1b042cc1ee611149d997e8255cae1a56211194583ec6b8721bf219fdf15233e9c18f58fea3ff698ad22707491d8120e5d010b18de0ef33a913425f7cc995b6"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/848d3804-9a9c-42a0-8a53-40329bc7bf76/8f39c7ad960594e5ec7235c333b53733/dotnet-sdk-3.0.103-win-x64.exe",
"hash": "1cbe8d898b53342fd08864f69918375ce24181464a5e54e25e0c5f8ed4d737b595af72ef11d3aed029df8ed6f51fc400a1f264f0996a2dc2edb7502f750a14bf"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/874a85a8-de9b-405d-b75e-9c3e9b3ddd0d/eb5f33724a7ba55d47fd12b2f1f8f764/dotnet-sdk-3.0.103-win-x64.zip",
"hash": "4d873263ba312a14fc10bdc4ce362eefbb65b759c0676c32fb00cb60bb52deed2bc397908c9472fd53991e3b679e5c8285d3df2cca52c6597909fb17a64580af"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/715dc65d-5906-4365-ab5b-fa8fc8f80a10/32f8fb72e1d704eebee7d8e8cf79f308/dotnet-sdk-3.0.103-win-x86.exe",
"hash": "f5791ba9df3ce6acb2a4c11336e2170e9825697ee91aaf55d4879ab1552fe4df63989b1c099bcc7405781009ad27d955e17ba6c0f5335a3f82d3fc3162a1c7b0"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/b9728e15-2acb-4a02-ba8e-d122bd2c497c/ad2258b4463a4180187b1fed0f340971/dotnet-sdk-3.0.103-win-x86.zip",
"hash": "cff9737c9cee6389ecbb7ede732e70da8a2199a0b89e56e4bddbf9f705ccbeffb6b1a8df15038d09295c2c56d07bf2d7ce9754de3621f55703595442eb9c972f"
}
]
}
],
"aspnetcore-runtime": {
"version": "3.0.3",
"version-display": "3.0.3",
"version-aspnetcoremodule": [
"13.0.20023.3"
],
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/4a6ecb0e-d322-44b1-8137-8e52f9486d1d/c2336dd6d8c7cf7f5d6c1d257f76d369/aspnetcore-runtime-3.0.3-linux-arm.tar.gz",
"hash": "f63f29877a02f9467b4016f6802315d7c9c29fbcededca458b50670af4bcb8cc16ce08568a82371ddf7dc67fb17f9f399888a15d9a5d608bf6102c551531c3fb"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/86acdeec-817b-41a1-921d-7a6d8caa45b1/7ac0ea3144ef9266b204bf17d6e20e3c/aspnetcore-runtime-3.0.3-linux-arm64.tar.gz",
"hash": "6edf8b2afa39228ffc39e92b712791e9a32152fa06faf78a2d15909057bf1c8e21bcd42d49511bd4614f173773a0d97248967a23d999f94d1a2e0b46089337bb"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/baa7233f-cbd9-486e-bcfd-9c4bd6142d31/c77859cee6f8ddba26b8af1ca1694771/aspnetcore-runtime-3.0.3-linux-musl-x64.tar.gz",
"hash": "2126db5d988e28fa9a7f2c64340fadad2ccdda350a6d4429f26d4d95b7e270d89f6b0cc7af0c2e15b9441da38d07c12f46bb4ef30595000f31820bbdfe9c11df"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c25ded8c-70c9-4287-9d25-f7842bca6b93/d03d7e7206c6d98240fd0696054468d0/aspnetcore-runtime-3.0.3-linux-x64.tar.gz",
"hash": "d88366ac20204c5acb4b80bc40396d608d6c067b25baeef54204e77dde48fb515bd463743745a0982ba8c9182fc751306a4e796f91060b2d013ffbea7d9a2dc8"
},
{
"name": "aspnetcore-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/81a88ac6-cc4f-4cad-a87b-043c9523bd61/cc5cada454049e9ce125860f58c4949d/aspnetcore-runtime-3.0.3-win-arm.zip",
"hash": "98df004888cd3b43c5941f415543e3a6acb9d9cf4c73ea826ae3ebd76be3d627a0befcc2e7a11d0ae6d0be831e6efeb5140258a8ce998c3a99650162b3d05955"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/207c4791-a366-4d35-96ed-0bbe10a683d3/1ca408df70ca668ea8e8ec36d2aedf48/aspnetcore-runtime-3.0.3-win-x64.exe",
"hash": "c2b083f99f1408b662053990c5d507d9659b7606d45925a76e836ec8dd7f7af0838383fbf8981b1fd9337c2d8ef95d5c838008f007269be78dc3a2b594f57396"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c6dab355-4d7c-4998-94f2-4157397fa801/f98b118cb0f5428aacbafcbb97bcf980/aspnetcore-runtime-3.0.3-win-x64.zip",
"hash": "68b504408287c49efa09d8861857ef4cade4999a05b78130cdc955ade1327faea6842b954afffb17ad0463d3a9afafbde6721c466f336b5ce4033765ad485825"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/289dff4e-eec9-4d2f-9b4b-fe7524e89e79/db4900dcf54b4bb7dcc8beecb5634695/aspnetcore-runtime-3.0.3-win-x86.exe",
"hash": "b22a9a8ea763a8901e1e18211b372d21da5ea20e1aea7596666a1b71e90a7f69b79a43296e9601700e42cfb22861918fcafb127ccdc997826586742211b8d1a0"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/04980341-57ae-4366-bf68-b2b0d7e169c7/d8a32dae7bb764aafb1fb596a3737277/aspnetcore-runtime-3.0.3-win-x86.zip",
"hash": "563e145a0b60e1e1a5d6e42fb37f33c9b664ba1dca0f3932ad6c94a6456470f5ff1f0d852d8e5778aa672e994f7ee08387c2aae59d53ff772e1e9d68d6dad4b0"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/18e13f02-1a28-4fe4-b642-6674408c3673/108e75fd84bf9153ea03ed4011252f9b/dotnet-hosting-3.0.3-win.exe",
"hash": "36dcfda8182690df255233c4329496aa2fa442b79f898b57cd086be54c98137b64e36a295a9b0bacbe81a9be2ac6eb6f5c56a7fcc26b0941a1491ece72ce469a"
}
]
}
},
{
"release-date": "2020-01-14",
"release-version": "3.0.2",

View file

@ -0,0 +1,97 @@
# .NET Core 3.1.2
.NET Core 3.1.2 comprises:
* .NET Core Runtime 3.1.2
* ASP.NET Core 3.1.2
* .NET Core SDK 3.1.102
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.2/3.1.2.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.2-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.2/3.1.2.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.2-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.2-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/dd119832-dc46-4ccf-bc12-69e7bfa61b18/990843c6e0cbd97f9df68c94f6de6bb6/dotnet-hosting-3.1.2-win.exe

View file

@ -0,0 +1,128 @@
# .NET Core 3.1.2 - February 18, 2020
[.NET Core 3.1.2](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.2 and .NET Core SDK 3.1.102.
* [Blog Roundup][dotnet-blog]
* [Downloads](https://dotnet.microsoft.com/download/dotnet-core/3.1)
* [Changes in this release](#changes-in-312)
* [Known issues](../3.1-known-issues.md)
* [Visual Studio Compatibility](#visual-studio-compatibility)
* [.NET Core Lifecycle News](#net-core-lifecycle-news)
The .NET Core SDK 3.1.102 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.102, the following command will show that you're running version `3.1.102` 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-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] \| [ARM64 Alpine][dotnet-runtime-linux-musl-arm64.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> \| [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 to take full advantage of all its features. .NET Core 3.1 will not work properly in earlier versions of Visual Studio.
## 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.2 is being deployed to Azure App Services and the deployment is expected to complete later in February 2020.
## .NET Core Lifecycle News
[.NET Core 2.2 reached end of life](https://github.com/dotnet/announcements/issues/147/) on December 23, 2019. This means .NET Core 2.2 is no longer supported and updates will no longer be provided. We recommend moving to .NET Core 3.1, our long term support (LTS) release.
.NET Core 3.0 will reach end of life on March 3, 2020 which is 3 months after the release of .NET Core 3.1. You can view the [Microsoft Support for .NET Core](https://github.com/dotnet/core/blob/master/microsoft-support.md) for more information about life-cycle of each product.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 3.1.2
.NET Core 3.1.2 release carries only non-security fixes.
* [CoreCLR](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=milestone%3A3.1.2+label%3Aservicing-approved)
* [CoreFX](https://github.com/dotnet/corefx/issues?utf8=%E2%9C%93&q=milestone%3A3.1.2+label%3Aservicing-approved)
* [ASP.NETCore](https://github.com/search?q=is%3Apr+label%3AServicing-approved+milestone%3A3.1.2+repo%3Adotnet%2Faspnetcore+repo%3Adotnet%2Fextensions+repo%3Adotnet%2Faspnetcore-tooling+repo%3Adotnet%2Fblazor+repo%3Adotnet%2Fefcore+repo%3Adotnet%2Fef6)
[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.2/3.1.2.md
[snap-install]: 3.1.2-install-instructions.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.2-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.2-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-february-2020/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-core-3-1/
[//]: # ( Runtime 3.1.2)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/30ed47bb-c25b-431c-9cfd-7b942b07314f/5c92af345a5475ca58b6878dd974e1dc/dotnet-runtime-3.1.2-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d3ee4d51-5cbf-4591-baf0-f9af7f9a07e7/59fa68462184d031275c2fa09cdf375d/dotnet-runtime-3.1.2-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/47b64547-75e5-43dc-9e2f-66e9d6b9d9ee/869b5417d9d7e4d141f9d2bdeb6b4e36/dotnet-runtime-3.1.2-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/21042b9d-8eca-497e-894b-97dde4a4e5d1/c486b0bec79041bc99619756017ad124/dotnet-runtime-3.1.2-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/38269fba-9fdb-4723-a14c-067cc316827d/53e4161da346d70404375fb8804ee91a/dotnet-runtime-3.1.2-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/722d2a42-95c2-4555-ac7a-ec98313984e1/44979d85ec12073d69b3b64feec68ea6/dotnet-runtime-3.1.2-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f58e9293-6600-4de4-a9a8-53951e05ef4f/48d982fbd1d96d818474229a3da22672/dotnet-runtime-3.1.2-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/420238c8-c86c-4936-91cd-71afe82089a3/af53c9881a098c97c9be7815db0053a8/dotnet-runtime-3.1.2-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/8efe160b-187d-4efe-bef1-bb1aaa0cadf6/5127ae7085f9f0c1dcc8e479ced919a5/dotnet-runtime-3.1.2-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/cfe420d5-084c-4590-b387-f89f3387d4c9/db4c577b995c54dee0530d8230e87145/dotnet-runtime-3.1.2-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/12c4e2f0-eda2-42ca-908e-fcdb68550a5f/ca19066eba7c09b8c781ae7a84a7ba8d/dotnet-runtime-3.1.2-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/dfedf8a5-c3cd-4b69-a5eb-8f9994e810f7/feeead4b3ae3b9e003917797c8356675/dotnet-runtime-3.1.2-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/541f44b0-cda8-4559-9cff-860fca619767/599bc8f47a85a5c2892d3540c7b7dd6f/dotnet-runtime-3.1.2-win-x86.zip
[//]: # ( WindowsDesktop 3.1.2)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/3240250e-6fe0-4258-af69-85abef6c00de/e01ee0af6c65d894f4a02bdf6705ec7b/windowsdesktop-runtime-3.1.2-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/b824906f-bd6e-4067-86a6-95c61620674d/cfcdab84a01cee94fdaa31271c3d4d47/windowsdesktop-runtime-3.1.2-win-x86.exe
[//]: # ( ASP 3.1.2)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8ccacf09-e5eb-481b-a407-2398b08ac6ac/1cef921566cb9d1ca8c742c9c26a521c/aspnetcore-runtime-3.1.2-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ec985ae1-e15c-4858-b586-de5f78956573/f585f8ffc303bbca6a711ecd61417a40/aspnetcore-runtime-3.1.2-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/927b34aa-08c7-411a-b1a1-1a0dbe28cb51/446dbeccd8130a18f6a1885a51d1babe/aspnetcore-runtime-3.1.2-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d9ea89f5-935b-47e0-8734-118f8ea6d812/b84792a3ae72add68cd1dcfb9aebeaae/aspnetcore-runtime-3.1.2-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2d72ee67-ac4d-42c6-97d9-a26a28201fc8/977ad14b99b6ed03dcefd6655789e43a/aspnetcore-runtime-3.1.2-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9593b373-38a1-454e-844f-da3b5d47b1f8/e6f69a1dda1af567079d949c63c5be85/aspnetcore-runtime-3.1.2-osx-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/b46a8ae4-63d2-4d3e-a230-71bd898b1f6d/b4fba45bad2e853c3a3dc687a459667e/aspnetcore-runtime-3.1.2-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/326b33d1-6bbd-4149-ba35-c94784700674/c06386c2b09401fa94f9595617899d5d/aspnetcore-runtime-3.1.2-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/6cc3f6a7-3a0f-441c-82a2-104fa93ef8b6/3c1395461545eb5321eb2816d4b3fecf/aspnetcore-runtime-3.1.2-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/2c8e520e-d705-4b11-8854-518546133e27/13354ed8b42d8c2c52f75d7acffd0be4/aspnetcore-runtime-3.1.2-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/02ee0d2a-92ea-4be2-bbfe-fe98a35bf1b6/bf581b5aebbf1825997b668310672fc5/aspnetcore-runtime-3.1.2-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/dd119832-dc46-4ccf-bc12-69e7bfa61b18/990843c6e0cbd97f9df68c94f6de6bb6/dotnet-hosting-3.1.2-win.exe
[//]: # ( SDK 3.1.102 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/349f13f0-400e-476c-ba10-fe284b35b932/44a5863469051c5cf103129f1423ddb8/dotnet-sdk-3.1.102-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2ea7ea69-6110-4c39-a07c-bd4df663e49b/5d60f17a167a5696e63904f7a586d072/dotnet-sdk-3.1.102-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f686a328-a7e2-403c-9107-2e8d8b54aaa9/a1ed4732a9388c5817f79564e3fbbc3a/dotnet-sdk-3.1.102-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/57e63f03-ebdf-4c22-96ff-2b85dc70cf7f/988576869e82a80f4a97ca5a733a5295/dotnet-sdk-3.1.102-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/3533d626-4784-4944-9d3a-e62b9b46d11a/770e2b9c1a40546a19e063c39996fe7d/dotnet-sdk-3.1.102-osx-x64.pkg
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1e1815af-cabc-4b19-bc5c-6abe68ee06c8/58e4de9cc06cb46174f150eb71f9de48/dotnet-sdk-3.1.102-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/36b067d5-6a4c-467c-8677-f2d00749a574/4f45950e15cd6b7b5bd010fcb64f140d/dotnet-sdk-3.1.102-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/5aad9c2c-7bb6-45b1-97e7-98f12cb5b63b/6f6d7944c81b043bdb9a7241529a5504/dotnet-sdk-3.1.102-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/33b3cfa9-905d-4386-8854-ef05010efb25/d54f0d42b92d2e4079013ae5faac7745/dotnet-sdk-3.1.102-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/0f19219f-3f53-4235-ba67-0bb74f3b1a23/0047614c923d2641344d8a3531efc5f5/dotnet-sdk-3.1.102-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/961d2276-c171-4e2b-b74c-e5fbc71f308c/2590499670296b16c02fb38441053d79/dotnet-sdk-3.1.102-win-x86.zip
[//]: # ( Symbols )

View file

@ -4,6 +4,7 @@ The following .NET Core 3.1 releases have been shipped. You must be on the lates
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/02/18 | [3.1.2](./3.1.2/3.1.2.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2020/01/14 | [3.1.1](./3.1.1/3.1.1.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2019/12/03 | [3.1.0](./3.1.0/3.1.0.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2019/11/14 | [3.1.0 Preview 3](./preview/3.1.0-preview3.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |

View file

@ -1,13 +1,341 @@
{
"channel-version": "3.1",
"latest-release": "3.1.1",
"latest-release-date": "2020-01-14",
"latest-runtime": "3.1.1",
"latest-sdk": "3.1.101",
"latest-release": "3.1.2",
"latest-release-date": "2020-02-18",
"latest-runtime": "3.1.2",
"latest-sdk": "3.1.102",
"support-phase": "lts",
"eol-date": "2022-12-03",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-02-18",
"release-version": "3.1.2",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.2/3.1.2.md",
"runtime": {
"version": "3.1.2",
"version-display": "3.1.2",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/30ed47bb-c25b-431c-9cfd-7b942b07314f/5c92af345a5475ca58b6878dd974e1dc/dotnet-runtime-3.1.2-linux-arm.tar.gz",
"hash": "2bf9273a959033d070e2f36c1966e8ab4f106b00fbf68628717ae47fb62a5e28c340d8c9361bdbe05fc8213e9a08966b90a3437fec764c08726422f57d5e906f"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d3ee4d51-5cbf-4591-baf0-f9af7f9a07e7/59fa68462184d031275c2fa09cdf375d/dotnet-runtime-3.1.2-linux-arm64.tar.gz",
"hash": "dd2b2ff4442c12becf50e27c336c619933926e10b9439d5c4b28e48bf15ee31878e3ad7825b90f030d77f7784faf945c1836e35e7f8409c53be76853a505e3e0"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/47b64547-75e5-43dc-9e2f-66e9d6b9d9ee/869b5417d9d7e4d141f9d2bdeb6b4e36/dotnet-runtime-3.1.2-linux-musl-arm64.tar.gz",
"hash": "341a279c42fd1265a94eba7ee30ddcd8a938b2741b378ed15a6d6841a3621390801f1d43ea81524ded743ad7c39af1489a0bc2f73995fd06ce4eb89855fad0b3"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/21042b9d-8eca-497e-894b-97dde4a4e5d1/c486b0bec79041bc99619756017ad124/dotnet-runtime-3.1.2-linux-musl-x64.tar.gz",
"hash": "d0cf4ec3f7068fbd300c99715ca40cd6bde5566c5c0104437084a97a35e3a2c200d2c413ad1bb7e3b8f8433ac079b81793e750f7fbdc548c5841bca99742f8b2"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/38269fba-9fdb-4723-a14c-067cc316827d/53e4161da346d70404375fb8804ee91a/dotnet-runtime-3.1.2-linux-x64.tar.gz",
"hash": "24a8154248ed2a95b1a6c8d72e4a92d1e898393d7950da2fa103e96684784cdfe74483f2a583f6c033d61c4f9dd090b0b6bcab2062bbac4fcd142dcb5685c7ff"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/722d2a42-95c2-4555-ac7a-ec98313984e1/44979d85ec12073d69b3b64feec68ea6/dotnet-runtime-3.1.2-osx-x64.pkg",
"hash": "5875c8aba534babf2ea8b6f3557b2366210d6eaa2e39d9c47b0c6f02cc1824d03641d46aa6809cb1bc0ea917bba32d451f48db980c059416843440436778d990"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f58e9293-6600-4de4-a9a8-53951e05ef4f/48d982fbd1d96d818474229a3da22672/dotnet-runtime-3.1.2-osx-x64.tar.gz",
"hash": "a889d0936db19c41ce58cb81024c8ebddcc5e31b0a3a24f9dcf9aabc5cd10c393cea5323032731deb61ac5cebc46a65958bf31796ca896f59cc6ee2f3764eaca"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/420238c8-c86c-4936-91cd-71afe82089a3/af53c9881a098c97c9be7815db0053a8/dotnet-runtime-3.1.2-rhel.6-x64.tar.gz",
"hash": "59024cdb7eec0b1abb9188dac72f24a58de84e4ae1ba52c3a8d3a793e93648fa986cefc8e662d3be9dc53ca844d7f85072b32188d24dda9a61ad1e43484b0c6a"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8efe160b-187d-4efe-bef1-bb1aaa0cadf6/5127ae7085f9f0c1dcc8e479ced919a5/dotnet-runtime-3.1.2-win-arm.zip",
"hash": "29a3300d4afbbb1b7e7df597fd39c414195ce59442b9cb74f242df7196c13808cfc88b2ded7a30e150b1bb3451619493f9e8b38ad24b9a1f5f8680743570be2e"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cfe420d5-084c-4590-b387-f89f3387d4c9/db4c577b995c54dee0530d8230e87145/dotnet-runtime-3.1.2-win-x64.exe",
"hash": "3577f065b835487f682d27acb4cfaa55b2cdb05bbab5474c5e6663e5e0d2df2a333a62ea5d906cf94070b2ba70339c729452e1afd4c9179466aa269b4bd4e0e4"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/12c4e2f0-eda2-42ca-908e-fcdb68550a5f/ca19066eba7c09b8c781ae7a84a7ba8d/dotnet-runtime-3.1.2-win-x64.zip",
"hash": "2986d9f04640115cfa1ec478ac20d8e5c0f3b57f1d4e379300dfbafe8d20ec775ea1987045d611a1b2d786de7e1981c57ef52824a9d8dda64e1570379187b23f"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/dfedf8a5-c3cd-4b69-a5eb-8f9994e810f7/feeead4b3ae3b9e003917797c8356675/dotnet-runtime-3.1.2-win-x86.exe",
"hash": "aa6c08467202a4f0bcc4bdd969d64943bbb0bcf8d44647cfb8e7bb3d20d043d88d13a77472288bde66846160d5bc125a9ce8693b94374abe649a47cb2737750b"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/541f44b0-cda8-4559-9cff-860fca619767/599bc8f47a85a5c2892d3540c7b7dd6f/dotnet-runtime-3.1.2-win-x86.zip",
"hash": "7953ecd94bb63daef62da544930f7e16ce4fc3da1bcaf62ed98b146315579fcf05f8a1d3e323217489cb1ca0f6b1721353575ff01be9afa4651e42565445d3f8"
}
]
},
"sdk": {
"version": "3.1.102",
"version-display": "3.1.102",
"runtime-version": "3.1.2",
"vs-version": "",
"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/349f13f0-400e-476c-ba10-fe284b35b932/44a5863469051c5cf103129f1423ddb8/dotnet-sdk-3.1.102-linux-arm.tar.gz",
"hash": "b279185fd245c3a254f4bbdd4f743d4309fcf8e2d3a1eb42df2f464e40df9954257209a666287ad3d924f863ca09d0cd8638d394da9f990477a2fc6d71198550"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2ea7ea69-6110-4c39-a07c-bd4df663e49b/5d60f17a167a5696e63904f7a586d072/dotnet-sdk-3.1.102-linux-arm64.tar.gz",
"hash": "7ad682935158599aeff1f04228df65ce99aa7d34fbe096422a55d6b0c6b38a7de4b9d0af1b667f63728b051d355f0c69526ffa90bb4c4d8ded53fb4ba63233c9"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f686a328-a7e2-403c-9107-2e8d8b54aaa9/a1ed4732a9388c5817f79564e3fbbc3a/dotnet-sdk-3.1.102-linux-musl-x64.tar.gz",
"hash": "21f7fab1eb4244f9ed89d1dccee4c67813fd1499d693a575e55d077049df14468905803ada814c5fc99ddfec748df453ae3d9d4b1206f9b1089044191e99a57d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/57e63f03-ebdf-4c22-96ff-2b85dc70cf7f/988576869e82a80f4a97ca5a733a5295/dotnet-sdk-3.1.102-linux-x64.tar.gz",
"hash": "9cacdc9700468a915e6fa51a3e5539b3519dd35b13e7f9d6c4dd0077e298baac0e50ad1880181df6781ef1dc64a232e9f78ad8e4494022987d12812c4ca15f29"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3533d626-4784-4944-9d3a-e62b9b46d11a/770e2b9c1a40546a19e063c39996fe7d/dotnet-sdk-3.1.102-osx-x64.pkg",
"hash": "c6d8f75e52acf4228c4790c619f2d09899dc56eb9922181e7cc4aa7587fca4f29b3804c591b717f7efd8dbd76f47acb45848ec8cccaa8b7517ee0869d9c2649a"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1e1815af-cabc-4b19-bc5c-6abe68ee06c8/58e4de9cc06cb46174f150eb71f9de48/dotnet-sdk-3.1.102-rhel.6-x64.tar.gz",
"hash": "09aaac40ef588a27d35925c17eb1030338bfad152dc87802a8b1b5af1760d1d21b3ec1116f65563a6d20dc0d17607f53d426dffa0c0e8d83a76b40d3d4f86069"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/36b067d5-6a4c-467c-8677-f2d00749a574/4f45950e15cd6b7b5bd010fcb64f140d/dotnet-sdk-3.1.102-win-arm.zip",
"hash": "f130313997e432917569157eca3b7bf26513473f02ea0f9edee70b0f43adaf4b2c4c232668ee4062c0798bbb29ff3fd4d8259bee8facfedd2b136524c9e25d72"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5aad9c2c-7bb6-45b1-97e7-98f12cb5b63b/6f6d7944c81b043bdb9a7241529a5504/dotnet-sdk-3.1.102-win-x64.exe",
"hash": "361c805703812e1463e7660de99e569f476ea9164fd4267f314ce10b865321ba44d5afc3eaaed7c8617f7787845d08bcfbc2d3914441a16d47c87c88a1404390"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/33b3cfa9-905d-4386-8854-ef05010efb25/d54f0d42b92d2e4079013ae5faac7745/dotnet-sdk-3.1.102-win-x64.zip",
"hash": "4fc6efdf696d51c3c0651ab30c662eead668d0936ed2290c72a5d6a155a105c0e954f267924b69e61cffec53076630293dd810221bfac488d5961c243657ceca"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/0f19219f-3f53-4235-ba67-0bb74f3b1a23/0047614c923d2641344d8a3531efc5f5/dotnet-sdk-3.1.102-win-x86.exe",
"hash": "763ff189d55497accbdfb4b8745a9b76c92b17e99ec4a2e99c07e2f49ba8b3ad69b43135098cdce2a350cbe7b8bb91173af58f938074a1962afa558b399a3861"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/961d2276-c171-4e2b-b74c-e5fbc71f308c/2590499670296b16c02fb38441053d79/dotnet-sdk-3.1.102-win-x86.zip",
"hash": "78c6365641641f21c0879c3d9aff6882e758f99d3eef7b9a125e1adb403fddbc8d483b5e5e3d25d8279b1881b82b6bdb1deb39791b8eb4a4bc25a86ec5dc5e23"
}
]
},
"sdks": [
{
"version": "3.1.102",
"version-display": "3.1.102",
"runtime-version": "3.1.2",
"vs-version": "",
"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/349f13f0-400e-476c-ba10-fe284b35b932/44a5863469051c5cf103129f1423ddb8/dotnet-sdk-3.1.102-linux-arm.tar.gz",
"hash": "b279185fd245c3a254f4bbdd4f743d4309fcf8e2d3a1eb42df2f464e40df9954257209a666287ad3d924f863ca09d0cd8638d394da9f990477a2fc6d71198550"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2ea7ea69-6110-4c39-a07c-bd4df663e49b/5d60f17a167a5696e63904f7a586d072/dotnet-sdk-3.1.102-linux-arm64.tar.gz",
"hash": "7ad682935158599aeff1f04228df65ce99aa7d34fbe096422a55d6b0c6b38a7de4b9d0af1b667f63728b051d355f0c69526ffa90bb4c4d8ded53fb4ba63233c9"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f686a328-a7e2-403c-9107-2e8d8b54aaa9/a1ed4732a9388c5817f79564e3fbbc3a/dotnet-sdk-3.1.102-linux-musl-x64.tar.gz",
"hash": "21f7fab1eb4244f9ed89d1dccee4c67813fd1499d693a575e55d077049df14468905803ada814c5fc99ddfec748df453ae3d9d4b1206f9b1089044191e99a57d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/57e63f03-ebdf-4c22-96ff-2b85dc70cf7f/988576869e82a80f4a97ca5a733a5295/dotnet-sdk-3.1.102-linux-x64.tar.gz",
"hash": "9cacdc9700468a915e6fa51a3e5539b3519dd35b13e7f9d6c4dd0077e298baac0e50ad1880181df6781ef1dc64a232e9f78ad8e4494022987d12812c4ca15f29"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3533d626-4784-4944-9d3a-e62b9b46d11a/770e2b9c1a40546a19e063c39996fe7d/dotnet-sdk-3.1.102-osx-x64.pkg",
"hash": "c6d8f75e52acf4228c4790c619f2d09899dc56eb9922181e7cc4aa7587fca4f29b3804c591b717f7efd8dbd76f47acb45848ec8cccaa8b7517ee0869d9c2649a"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1e1815af-cabc-4b19-bc5c-6abe68ee06c8/58e4de9cc06cb46174f150eb71f9de48/dotnet-sdk-3.1.102-rhel.6-x64.tar.gz",
"hash": "09aaac40ef588a27d35925c17eb1030338bfad152dc87802a8b1b5af1760d1d21b3ec1116f65563a6d20dc0d17607f53d426dffa0c0e8d83a76b40d3d4f86069"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/36b067d5-6a4c-467c-8677-f2d00749a574/4f45950e15cd6b7b5bd010fcb64f140d/dotnet-sdk-3.1.102-win-arm.zip",
"hash": "f130313997e432917569157eca3b7bf26513473f02ea0f9edee70b0f43adaf4b2c4c232668ee4062c0798bbb29ff3fd4d8259bee8facfedd2b136524c9e25d72"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5aad9c2c-7bb6-45b1-97e7-98f12cb5b63b/6f6d7944c81b043bdb9a7241529a5504/dotnet-sdk-3.1.102-win-x64.exe",
"hash": "361c805703812e1463e7660de99e569f476ea9164fd4267f314ce10b865321ba44d5afc3eaaed7c8617f7787845d08bcfbc2d3914441a16d47c87c88a1404390"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/33b3cfa9-905d-4386-8854-ef05010efb25/d54f0d42b92d2e4079013ae5faac7745/dotnet-sdk-3.1.102-win-x64.zip",
"hash": "4fc6efdf696d51c3c0651ab30c662eead668d0936ed2290c72a5d6a155a105c0e954f267924b69e61cffec53076630293dd810221bfac488d5961c243657ceca"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/0f19219f-3f53-4235-ba67-0bb74f3b1a23/0047614c923d2641344d8a3531efc5f5/dotnet-sdk-3.1.102-win-x86.exe",
"hash": "763ff189d55497accbdfb4b8745a9b76c92b17e99ec4a2e99c07e2f49ba8b3ad69b43135098cdce2a350cbe7b8bb91173af58f938074a1962afa558b399a3861"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/961d2276-c171-4e2b-b74c-e5fbc71f308c/2590499670296b16c02fb38441053d79/dotnet-sdk-3.1.102-win-x86.zip",
"hash": "78c6365641641f21c0879c3d9aff6882e758f99d3eef7b9a125e1adb403fddbc8d483b5e5e3d25d8279b1881b82b6bdb1deb39791b8eb4a4bc25a86ec5dc5e23"
}
]
}
],
"aspnetcore-runtime": {
"version": "3.1.2",
"version-display": "3.1.2",
"version-aspnetcoremodule": [
"13.1.20018.2"
],
"vs-version": "",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8ccacf09-e5eb-481b-a407-2398b08ac6ac/1cef921566cb9d1ca8c742c9c26a521c/aspnetcore-runtime-3.1.2-linux-arm.tar.gz",
"hash": "e2a9d4c53e7dcdf6ab1f3b782c57d162297401cff20b7784bd019eeed360ed2d3635eea869bb42e2fc5965cf0c8d4d1517d0988e475a5689685af77b63ff64c0"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ec985ae1-e15c-4858-b586-de5f78956573/f585f8ffc303bbca6a711ecd61417a40/aspnetcore-runtime-3.1.2-linux-arm64.tar.gz",
"hash": "83f642f11f24f82e0bafa5298a86d8f6cdc39918bd79a721e5543295018198ed72408c518a8be107c77a5ab5a2d52590d80c4548b6de501fd456b839c3f952b5"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/927b34aa-08c7-411a-b1a1-1a0dbe28cb51/446dbeccd8130a18f6a1885a51d1babe/aspnetcore-runtime-3.1.2-linux-musl-arm64.tar.gz",
"hash": "cfe565cd1bf112425decf9a4a9be0bf0a71c7a4180b9134a4103360ddcd0cf4ef166cab4327d57f72f5113edace6a2a9a6dba25b914d439ddb6018d96985a2cb"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d9ea89f5-935b-47e0-8734-118f8ea6d812/b84792a3ae72add68cd1dcfb9aebeaae/aspnetcore-runtime-3.1.2-linux-musl-x64.tar.gz",
"hash": "7a171932a99c10e003deb39cd2377fe8ef4486d75da372ca0aecefbd3c065816320573c9384fd3ceac1793acf06079a802999e479f3dff816651c043ed05a245"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2d72ee67-ac4d-42c6-97d9-a26a28201fc8/977ad14b99b6ed03dcefd6655789e43a/aspnetcore-runtime-3.1.2-linux-x64.tar.gz",
"hash": "35e39d78f134f34f0430fbad995c987a44999e90c588fa9532e3376f8c09e9aeb3bd9b7b04f3af29b2fd1bd14ba4a124f0a32c10fd1bb96964f4232d7321708e"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9593b373-38a1-454e-844f-da3b5d47b1f8/e6f69a1dda1af567079d949c63c5be85/aspnetcore-runtime-3.1.2-osx-x64.tar.gz",
"hash": "d09d56e20654c36c3557e866ac168be5be66b7789b0e0736fa101b22a86b20f461cc70332afe989dbd36d74da1a6adc8fa8c32897ec1cfdec6d2c1fb12461dc2"
},
{
"name": "aspnetcore-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/b46a8ae4-63d2-4d3e-a230-71bd898b1f6d/b4fba45bad2e853c3a3dc687a459667e/aspnetcore-runtime-3.1.2-win-arm.zip",
"hash": "5bb8a4697d7a81399a1db8bf94a8eb950c98d34e7345dff457584b9b2cade7b4279a0e015f3d0347d2e4979efe07d87eec18cdac228ada2f90b04fdbbb9946d9"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/326b33d1-6bbd-4149-ba35-c94784700674/c06386c2b09401fa94f9595617899d5d/aspnetcore-runtime-3.1.2-win-x64.exe",
"hash": "192552b6f85b2a3535d6adb1d7bfaa96263dc329a5bec1054874b92246cbb42487b43806b12f068f6c173d20aeffabbd6b7d10f5486f83cd0400e4b15a677a21"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6cc3f6a7-3a0f-441c-82a2-104fa93ef8b6/3c1395461545eb5321eb2816d4b3fecf/aspnetcore-runtime-3.1.2-win-x64.zip",
"hash": "2052f158ed37071ff5845ef7ea3f63853c513debd038563a78094425ee8126fa54080a3f042395d6aa862ae09b6139795c65bba3156c41c911294103cb05e9d4"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/2c8e520e-d705-4b11-8854-518546133e27/13354ed8b42d8c2c52f75d7acffd0be4/aspnetcore-runtime-3.1.2-win-x86.exe",
"hash": "5ce0c6bbc985f9f4a05493c3e7d9e1374d59eabfd8a21efddb760bc7b30fad55a4eb92c62b573fcd5aa7742d1bc6f6af1c6d1b100c6a32995c87fdb8ba2afba6"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/02ee0d2a-92ea-4be2-bbfe-fe98a35bf1b6/bf581b5aebbf1825997b668310672fc5/aspnetcore-runtime-3.1.2-win-x86.zip",
"hash": "d500ad28c36a2708ee4d2cff2667a626077009be53d51163a88783b55572b803cc69606e1619555187531417e125bc49ec44ee4822cb1425dc25151a9a945670"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/dd119832-dc46-4ccf-bc12-69e7bfa61b18/990843c6e0cbd97f9df68c94f6de6bb6/dotnet-hosting-3.1.2-win.exe",
"hash": "913470ccc4a9c0ac4ef05c47d717e757a7fe594fcb2cc71cc852e478fb66b51840bdae23433ac149601cfea6ec8f4468e2bda1eb92ca0e3849f33c301cd561d7"
}
]
}
},
{
"release-date": "2020-01-14",
"release-version": "3.1.1",

View file

@ -6,9 +6,9 @@ The latest supported release is [.NET Core 3.1](3.1).
You can download the latest updates for .NET Core.
* [.NET Core 3.1.1](3.1/3.1.1/3.1.1.md)
* [.NET Core 3.0.2](3.0/3.0.2/3.0.2.md)
* [.NET Core 2.1.15](2.1/2.1.15/2.1.15.md)
* [.NET Core 3.1.2](3.1/3.1.2/3.1.2.md)
* [.NET Core 3.0.3](3.0/3.0.3/3.0.3.md)
* [.NET Core 2.1.16](2.1/2.1.16/2.1.16.md)
## Release Information

View file

@ -2,11 +2,11 @@
"releases-index": [
{
"channel-version": "3.1",
"latest-release": "3.1.1",
"latest-release-date": "2020-01-14",
"security": true,
"latest-runtime": "3.1.1",
"latest-sdk": "3.1.101",
"latest-release": "3.1.2",
"latest-release-date": "2020-02-18",
"security": false,
"latest-runtime": "3.1.2",
"latest-sdk": "3.1.102",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2022-12-03",
@ -14,16 +14,28 @@
},
{
"channel-version": "3.0",
"latest-release": "3.0.2",
"latest-release-date": "2020-01-14",
"security": true,
"latest-runtime": "3.0.2",
"latest-sdk": "3.0.102",
"latest-release": "3.0.3",
"latest-release-date": "2020-02-18",
"security": false,
"latest-runtime": "3.0.3",
"latest-sdk": "3.0.103",
"product": ".NET Core",
"support-phase": "maintenance",
"eol-date": "2020-03-03",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/3.0/releases.json"
},
{
"channel-version": "2.1",
"latest-release": "2.1.16",
"latest-release-date": "2020-02-18",
"security": false,
"latest-runtime": "2.1.16",
"latest-sdk": "2.1.804",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2021-08-21",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/2.1/releases.json"
},
{
"channel-version": "2.2",
"latest-release": "2.2.8",
@ -36,18 +48,6 @@
"eol-date": "2019-12-23",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/2.2/releases.json"
},
{
"channel-version": "2.1",
"latest-release": "2.1.15",
"latest-release-date": "2020-01-14",
"security": true,
"latest-runtime": "2.1.15",
"latest-sdk": "2.1.803",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2021-08-21",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/2.1/releases.json"
},
{
"channel-version": "2.0",
"latest-release": "2.0.9",