Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRahul Bhandari <rbhanda@microsoft.com>2021-04-13 21:08:45 +0300
committerGitHub <noreply@github.com>2021-04-13 21:08:45 +0300
commiteee68008af483cc3f273ce53fa9919c53d32d410 (patch)
tree78279f0a7c83cad9929ddaf6d6fac60576aa6e6b
parent6649aaa183a0dd38d1b69c98ae28805d880633ec (diff)
parente05f501de2efe76db4152e6d12aa02d080bccfd1 (diff)
Merge pull request #6160 from dotnet/aprv3.1.14
Release artifacts for April
-rw-r--r--release-notes/2.1/2.1.27/2.1.27-install-instructions.md96
-rw-r--r--release-notes/2.1/2.1.27/2.1.27.md200
-rw-r--r--release-notes/2.1/2.1.27/2.1.815-download.md156
-rw-r--r--release-notes/2.1/README.md1
-rwxr-xr-xrelease-notes/2.1/releases.json377
-rw-r--r--release-notes/3.1/3.1.14/3.1.14-install-instructions.md96
-rw-r--r--release-notes/3.1/3.1.14/3.1.14.md390
-rw-r--r--release-notes/3.1/3.1.14/3.1.408-download.md170
-rw-r--r--release-notes/3.1/README.md1
-rw-r--r--release-notes/3.1/releases.json441
-rw-r--r--release-notes/README.md8
-rw-r--r--release-notes/releases-index.json20
-rw-r--r--releases.md8
13 files changed, 1936 insertions, 28 deletions
diff --git a/release-notes/2.1/2.1.27/2.1.27-install-instructions.md b/release-notes/2.1/2.1.27/2.1.27-install-instructions.md
new file mode 100644
index 00000000..abaaf637
--- /dev/null
+++ b/release-notes/2.1/2.1.27/2.1.27-install-instructions.md
@@ -0,0 +1,96 @@
+# .NET Core 2.1.27
+
+.NET Core 2.1.27 comprises:
+
+* .NET Core Runtime 2.1.27
+* ASP.NET Core 2.1.27
+* .NET Core SDK 2.1.523
+
+See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.27/2.1.27.md) for details about what is included in this update.
+
+## Docker
+
+The [.NET Core Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md) show various ways to use .NET and Docker together.
+
+## 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/main/Documentation/linux-setup.md) for a possible resolution.
+
+### Install using a Package Manager
+
+Before installing .NET, you will need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
+
+The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
+
+| Distro | Package Manager |
+| --- | :----: |
+| CentOS, Oracle | yum |
+| Debian, Ubuntu | apt-get |
+| Fedora | dnf |
+| OpenSUSE, SLES | zypper |
+
+## Develop applications
+
+To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included.
+
+```bash
+sudo [package manager] update or refresh
+sudo [package manager] install dotnet-sdk-2.1
+```
+
+## Run applications
+
+If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included.
+
+```bash
+sudo [package manager] update or refresh
+sudo [package manager] install aspnetcore-runtime-2.1
+```
+
+### Installation from a binary archive
+
+Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
+
+```bash
+mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
+export PATH=$PATH:$HOME/dotnet
+```
+
+## .NET Core Runtime-only installation
+
+If only the .NET Core Runtime is needed, install `dotnet-runtime-2.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-2.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
+
+## Windows Server Hosting
+
+If you're looking to host standalone apps on servers, the following installer can be used on Windows systems.
+
+### Windows
+
+You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
+
+* [dotnet-hosting-2.1.27-win.exe][dotnet-hosting-win.exe]
+
+This will install the ASP.NET Core Module for IIS.
+
+
+[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.27/2.1.27.md
+
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.27-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.27-sha.txt
+
+[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
+
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/4155e077-4635-4a74-8c96-3feb3f341073/771eb3d31794d7fd6030d367e0236ec8/dotnet-hosting-2.1.27-win.exe
diff --git a/release-notes/2.1/2.1.27/2.1.27.md b/release-notes/2.1/2.1.27/2.1.27.md
new file mode 100644
index 00000000..f08e5a71
--- /dev/null
+++ b/release-notes/2.1/2.1.27/2.1.27.md
@@ -0,0 +1,200 @@
+# .NET Core 2.1.27 Update - April 13, 2021
+
+The .NET 2.1.27 and .NET SDK 2.1.523 releases are available for download. The latest 2.1 release is always listed at [.NET 2.1 Releases](../README.md).
+
+## Downloads
+
+| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
+| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
+| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| <br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> |
+| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup>
+| Linux | [See installation steps][linux-install] | [x64][dotnet-sdk-linux-x64.tar.gz] \| [ARM][dotnet-sdk-linux-arm.tar.gz] \| [ARM64][dotnet-sdk-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup> |
+| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - |
+
+</br>
+1. Includes the .NET Core and ASP.NET Core Runtimes.
+</br>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.
+
+</br>
+
+The .NET SDK includes a matching updated .NET Runtime. Downloading the Runtime or ASP.NET Core packages is not needed when installing the SDK.
+
+You can check your .NET SDK version by running the following command. The example version shown is for this release.
+
+```console
+$ dotnet --version
+2.1.523
+```
+
+Visit [.NET Documentation](https://docs.microsoft.com/dotnet/core/) to learn about .NET, for building many different types of applications.
+
+## Docker Images
+
+The [.NET Core Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md) show various ways to use .NET and Docker together.
+
+The following repos have been updated:
+
+* [dotnet/sdk](https://hub.docker.com/_/microsoft-dotnet-sdk/): .NET Core SDK
+* [dotnet/aspnet](https://hub.docker.com/_/microsoft-dotnet-aspnet/): ASP.NET Core Runtime
+* [dotnet/runtime](https://hub.docker.com/_/microsoft-dotnet-runtime/): .NET Core Runtime
+* [dotnet/runtime-deps](https://hub.docker.com/_/microsoft-dotnet-runtime-deps/): .NET Core Runtime Dependencies
+
+
+## Visual Studio Compatibility
+
+This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual Studio 2019, Visual Studio 2017 or Visual Studio for Mac user, there are MSBuild version requirements that are satisfied by specific, matching .NET Core SDK versions. See the following table to select the correct download.
+
+| OS | Development Environment | .NET Core SDK |
+| :-- | :-- | :--: |
+| Windows | Visual Studio 2017 | [2.1.523](#downloads) |
+| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
+
+Note: This is not a security release hence this update won't be immediately available through Visual Studio. However, this is expected to show up in Visual Studio's January servicing release.
+
+This update of .NET Core 2.1 is the last update for .NET Core 2.1.6xx SDK since [Visual Studio 16.0 is out of support](https://docs.microsoft.com/en-us/visualstudio/releases/2019/servicing) as of January 2021. We will continue to update versions 2.1.5xx and 2.1.8xx until [.NET Core 2.1 reaches end of life](https://github.com/dotnet/core/blob/main/releases.md).
+
+
+## Notable Changes
+
+.NET Core 2.1.27 release carries only non-security fixes.
+
+
+* [Blog Roundup][dotnet-blog]
+* [Known issues](../2.1-known-issues.md)
+
+### Additional fixes in this release
+
+* [ASP.NET](https://github.com/dotnet/aspnetcore/issues?q=milestone%3A2.1.27+is%3Aclosed+label%3Aservicing-approved)
+
+## Feedback
+
+Your feedback is important and appreciated. We've created an issue at [dotnet/core #6129](https://github.com/dotnet/core/issues/6129) for your questions and comments.
+
+## Packages updated in this release:
+
+Package name | Version
+:----------- | :------------------
+microsoft.aspnetcore.all | 2.1.27.nupkg
+microsoft.aspnetcore.app | 2.1.27.nupkg
+microsoft.dotnet.web.client.itemtemplates | 2.1.27.nupkg
+microsoft.dotnet.web.itemtemplates | 2.1.27.nupkg
+microsoft.dotnet.web.projecttemplates.2.1 | 2.1.27.nupkg
+microsoft.dotnet.web.spa.projecttemplates.2.1 | 2.1.27.nupkg
+microsoft.netcore.platforms | 2.1.13.nupkg
+system.text.encodings.web | 4.5.1.nupkg
+microsoft.netcore.app | 2.1.27.nupkg
+microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+microsoft.netcore.dotnethost | 2.1.27.nupkg
+microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.linux-arm.microsoft.netcore.app | 2.1.27.nupkg
+runtime.linux-arm.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.linux-arm.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.linux-arm.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.linux-arm.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.linux-arm64.microsoft.netcore.app | 2.1.27.nupkg
+runtime.linux-arm64.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.linux-arm64.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.linux-arm64.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.linux-arm64.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.linux-musl-x64.microsoft.netcore.app | 2.1.27.nupkg
+runtime.linux-musl-x64.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.linux-musl-x64.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.linux-musl-x64.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.linux-musl-x64.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.linux-x64.microsoft.netcore.app | 2.1.27.nupkg
+runtime.linux-x64.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.linux-x64.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.linux-x64.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.linux-x64.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.osx-x64.microsoft.netcore.app | 2.1.27.nupkg
+runtime.osx-x64.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.osx-x64.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.osx-x64.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.osx-x64.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.rhel.6-x64.microsoft.netcore.app | 2.1.27.nupkg
+runtime.rhel.6-x64.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.rhel.6-x64.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.rhel.6-x64.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.rhel.6-x64.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.win-arm.microsoft.netcore.app | 2.1.27.nupkg
+runtime.win-arm.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.win-arm.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.win-arm.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.win-arm.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.win-arm64.microsoft.netcore.app | 2.1.27.nupkg
+runtime.win-arm64.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.win-arm64.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.win-arm64.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.win-arm64.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.win-x64.microsoft.netcore.app | 2.1.27.nupkg
+runtime.win-x64.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.win-x64.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.win-x64.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.win-x64.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+runtime.win-x86.microsoft.netcore.app | 2.1.27.nupkg
+runtime.win-x86.microsoft.netcore.dotnetapphost | 2.1.27.nupkg
+runtime.win-x86.microsoft.netcore.dotnethost | 2.1.27.nupkg
+runtime.win-x86.microsoft.netcore.dotnethostpolicy | 2.1.27.nupkg
+runtime.win-x86.microsoft.netcore.dotnethostresolver | 2.1.27.nupkg
+vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.27-servicing-29913-01.nupkg
+vs.redist.common.netcore.hostfxr.x64.2.1 | 2.1.27-servicing-29916-01.nupkg
+vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.27-servicing-29913-01.nupkg
+vs.redist.common.netcore.hostfxr.x86.2.1 | 2.1.27-servicing-29916-01.nupkg
+vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.27-servicing-29913-01.nupkg
+vs.redist.common.netcore.sharedframework.x64.2.1 | 2.1.27-servicing-29916-01.nupkg
+vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.27-servicing-29913-01.nupkg
+vs.redist.common.netcore.sharedframework.x86.2.1 | 2.1.27-servicing-29916-01.nupkg
+vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.27-servicing-29913-01.nupkg
+vs.redist.common.netcore.sharedhost.x64.2.1 | 2.1.27-servicing-29916-01.nupkg
+vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.27-servicing-29913-01.nupkg
+vs.redist.common.netcore.sharedhost.x86.2.1 | 2.1.27-servicing-29916-01.nupkg
+
+
+[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
+[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
+[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.27/2.1.27.md
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.27-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.27-sha.txt
+
+[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
+[linux-setup]: https://docs.microsoft.com/dotnet/core/install/
+[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-april-2021/
+
+
+[//]: # ( Runtime 2.1.27)
+[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9551a562-4edb-4c50-9c95-17a86f384cd2/ac4903d8b2de052277402f936edd5c97/dotnet-runtime-2.1.27-linux-arm.tar.gz
+[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/886a04a8-9995-43bc-b6ee-133541836c78/7e1f06c72ffd86731c3b37ae545499ed/dotnet-runtime-2.1.27-linux-arm64.tar.gz
+[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/62a3d54d-826a-4f02-bdb6-bf39e150bdef/dc80fe29313d0f01841283cca5e3fc49/dotnet-runtime-2.1.27-linux-musl-x64.tar.gz
+[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f7eb39c4-484d-4e01-bd41-b4fe6794cd82/ff5c2799f30ea6dd19964c5c90780dba/dotnet-runtime-2.1.27-linux-x64.tar.gz
+[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/e88dabe7-3985-4170-a673-474b72b17027/71d6a02976970b4c3276e7ca5fe2e636/dotnet-runtime-2.1.27-osx-x64.pkg
+[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a599fc53-bc74-4640-b95d-1a041e161f6c/86bbfe6131d2f3b9d1a52c8ccbcd2a47/dotnet-runtime-2.1.27-osx-x64.tar.gz
+[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/d8f11be6-be68-4997-a604-81f964b14d16/1c83ed7b1197f984a994c56f3ecdea77/dotnet-runtime-2.1.27-win-arm.zip
+[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7c60245b-b3f0-4db4-ba42-ed1e78e0d02d/dd7047834f6fd9239fd060b824ca8fdc/dotnet-runtime-2.1.27-win-x64.exe
+[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/359b51a0-118d-4f59-866d-0d52a55ee8b9/40c5bd8934bf576e54a3b82b4fbc394a/dotnet-runtime-2.1.27-win-x64.zip
+[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/2644fd69-fb6b-40c2-96ca-5bd65b62934e/dc5f3662f1f1863e5e9e98819be03be3/dotnet-runtime-2.1.27-win-x86.exe
+[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9f2e3f11-aca9-45af-87e6-584453082cb7/5c3a6ca7c2f274eab48608c545bc47a5/dotnet-runtime-2.1.27-win-x86.zip
+
+[//]: # ( ASP 2.1.27)
+[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/370a2aca-439b-4f0f-831f-3224a9cf4d13/bd3ec147dc91fa66c7464b5c7a8a668b/aspnetcore-runtime-2.1.27-linux-arm.tar.gz
+[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/006d9e1a-f9c4-4a6f-9e39-8b869322ae4a/6e3ed4443981bc2c75ce89bda340c267/aspnetcore-runtime-2.1.27-linux-musl-x64.tar.gz
+[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c66dd1cb-a5fc-4427-bef4-d55a1da5a5c7/17f733c7b6afe91ef9c91e9f6e170cad/aspnetcore-runtime-2.1.27-linux-x64.tar.gz
+[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a8067484-5bba-4bf4-97bc-77093e8fcb78/25a2302003e3efee5795bb160c23ca89/aspnetcore-runtime-2.1.27-osx-x64.tar.gz
+[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/44f46782-9066-4f62-8aae-2657d5a6112a/e9de8e0fdeeb6eb05d77950da50351cc/aspnetcore-runtime-2.1.27-win-x64.exe
+[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/291e04db-0aa4-4a52-b733-8afaed634bae/d72e1a99e070354b22e8e2fca1990f13/aspnetcore-runtime-2.1.27-win-x64.zip
+[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/978a4289-8043-473d-a0f2-0a44bd1b50d8/2f1a77556585d03fb5f1f2ab52d57cc0/aspnetcore-runtime-2.1.27-win-x86.exe
+[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c446dcfe-e41b-400d-ae48-ba28b49539a4/c250b3fcbc7e3db17d48692ea15644a6/aspnetcore-runtime-2.1.27-win-x86.zip
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/4155e077-4635-4a74-8c96-3feb3f341073/771eb3d31794d7fd6030d367e0236ec8/dotnet-hosting-2.1.27-win.exe
+
+[//]: # ( SDK 2.1.523 )
+[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1ff58389-afd6-44b6-be22-f381bb688500/2cb8d54ba5207beb8de093193c410d06/dotnet-sdk-2.1.523-linux-arm.tar.gz
+[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8db0700a-607f-4068-baad-ae484f5623d0/f6e23e2bb9774fab858c58ddf4e4c427/dotnet-sdk-2.1.523-linux-arm64.tar.gz
+[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a7cf90e2-fdb1-4546-978a-45b83c7fce56/f80983803f3ade6f9c14705313add981/dotnet-sdk-2.1.523-linux-musl-x64.tar.gz
+[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/da36cbfe-dbf0-4e2b-899d-69e4cf59266a/bcbb09869964a6ff33ce18cb0e1cafe8/dotnet-sdk-2.1.523-linux-x64.tar.gz
+[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/86a6d223-85fb-4d80-98bb-e45cab9926db/66bbeeb674f783e70b2b5b672d2a4972/dotnet-sdk-2.1.523-osx-x64.pkg
+[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fd676a92-b47c-4f68-90f3-1e1da1030b9b/093d92ba8d56195cd674182f8c0fac9a/dotnet-sdk-2.1.523-osx-x64.tar.gz
+[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/59ca29e1-a1e9-4074-8c1d-60d8df831051/aa178a7db1198e274e40b4d449b01089/dotnet-sdk-2.1.523-win-x64.exe
+[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/107d1215-b3a0-4b59-b595-88f39cdca9ec/8b7ed70b3bc6aae2f6da91af7a6f0f6b/dotnet-sdk-2.1.523-win-x64.zip
+[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/c0c4fd8f-e924-4f59-a16b-04ec350481c5/df5b73d5a951af6f473ee6ce9787ad80/dotnet-sdk-2.1.523-win-x86.exe
+[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c5429f4c-de7f-4ac2-9a75-9ff44d636e49/d5a7b78887f1977721c6d3c46cf8c99d/dotnet-sdk-2.1.523-win-x86.zip
diff --git a/release-notes/2.1/2.1.27/2.1.815-download.md b/release-notes/2.1/2.1.27/2.1.815-download.md
new file mode 100644
index 00000000..aaaf5eba
--- /dev/null
+++ b/release-notes/2.1/2.1.27/2.1.815-download.md
@@ -0,0 +1,156 @@
+# .NET Core 2.1.815
+
+This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
+
+* .NET Core SDK 2.1.815
+* .NET Core Runtime 2.1.27
+* ASP.NET Core 2.1.27
+
+See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.27/2.1.27.md) for details about what is included in this update.
+
+## Downloads
+
+| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
+| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
+| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| <br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> |
+| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup>
+| Linux | [See installation steps][linux-setup] | [x64][dotnet-sdk-linux-x64.tar.gz] \| [ARM][dotnet-sdk-linux-arm.tar.gz] \| [ARM64][dotnet-sdk-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup>
+| 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 2017 | [2.1.523](2.1.27.md) |
+| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
+
+
+## Docker
+
+The [.NET Core Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md) show various ways to use .NET and Docker together.
+
+## Installing .NET Core on Linux
+
+### Install using Snap
+
+Snap is a system which installs applications in an isolated environment and provides for automatic updates. Many distributions which are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
+
+After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
+
+`sudo snap install dotnet-sdk --channel 2.1/stable –-classic`
+
+When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it won't conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
+
+`sudo snap alias dotnet-sdk.dotnet dotnet`
+
+**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
+
+### Install using a Package Manager
+
+Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
+
+The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
+
+| Distro | Package Manager |
+| --- | :----: |
+| CentOS, Oracle | yum |
+| Debian, Ubuntu | apt-get |
+| Fedora | dnf |
+| OpenSUSE, SLES | zypper |
+
+## Develop applications
+
+To develop applications using the .NET Core SDK, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
+
+```bash
+sudo [package manager] update or refresh
+sudo [package manager] install dotnet-sdk-2.1
+```
+
+## Run applications
+
+If you only need to run existing applications, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
+
+```bash
+sudo [package manager] update or refresh
+sudo [package manager] install aspnetcore-runtime-2.1
+```
+
+### Installation from a binary archive
+
+Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
+
+```bash
+mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
+export PATH=$PATH:$HOME/dotnet
+```
+
+## .NET Core Runtime-only installation
+
+If only the .NET Core Runtime is needed, install `dotnet-runtime-2.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-2.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
+
+## Windows Server Hosting
+
+If you're looking to host standalone apps on servers, the following installer can be used on Windows systems.
+
+### Windows
+
+You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
+
+* [dotnet-hosting-2.1.27-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/main/release-notes/2.1/2.1.27/2.1.27.md
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.27-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.27-sha.txt
+
+[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
+[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
+
+
+[//]: # ( Runtime 2.1.27)
+[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9551a562-4edb-4c50-9c95-17a86f384cd2/ac4903d8b2de052277402f936edd5c97/dotnet-runtime-2.1.27-linux-arm.tar.gz
+[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/886a04a8-9995-43bc-b6ee-133541836c78/7e1f06c72ffd86731c3b37ae545499ed/dotnet-runtime-2.1.27-linux-arm64.tar.gz
+[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/62a3d54d-826a-4f02-bdb6-bf39e150bdef/dc80fe29313d0f01841283cca5e3fc49/dotnet-runtime-2.1.27-linux-musl-x64.tar.gz
+[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f7eb39c4-484d-4e01-bd41-b4fe6794cd82/ff5c2799f30ea6dd19964c5c90780dba/dotnet-runtime-2.1.27-linux-x64.tar.gz
+[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/e88dabe7-3985-4170-a673-474b72b17027/71d6a02976970b4c3276e7ca5fe2e636/dotnet-runtime-2.1.27-osx-x64.pkg
+[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a599fc53-bc74-4640-b95d-1a041e161f6c/86bbfe6131d2f3b9d1a52c8ccbcd2a47/dotnet-runtime-2.1.27-osx-x64.tar.gz
+[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/d8f11be6-be68-4997-a604-81f964b14d16/1c83ed7b1197f984a994c56f3ecdea77/dotnet-runtime-2.1.27-win-arm.zip
+[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/7c60245b-b3f0-4db4-ba42-ed1e78e0d02d/dd7047834f6fd9239fd060b824ca8fdc/dotnet-runtime-2.1.27-win-x64.exe
+[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/359b51a0-118d-4f59-866d-0d52a55ee8b9/40c5bd8934bf576e54a3b82b4fbc394a/dotnet-runtime-2.1.27-win-x64.zip
+[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/2644fd69-fb6b-40c2-96ca-5bd65b62934e/dc5f3662f1f1863e5e9e98819be03be3/dotnet-runtime-2.1.27-win-x86.exe
+[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9f2e3f11-aca9-45af-87e6-584453082cb7/5c3a6ca7c2f274eab48608c545bc47a5/dotnet-runtime-2.1.27-win-x86.zip
+
+[//]: # ( ASP 2.1.27)
+[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/370a2aca-439b-4f0f-831f-3224a9cf4d13/bd3ec147dc91fa66c7464b5c7a8a668b/aspnetcore-runtime-2.1.27-linux-arm.tar.gz
+[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/006d9e1a-f9c4-4a6f-9e39-8b869322ae4a/6e3ed4443981bc2c75ce89bda340c267/aspnetcore-runtime-2.1.27-linux-musl-x64.tar.gz
+[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c66dd1cb-a5fc-4427-bef4-d55a1da5a5c7/17f733c7b6afe91ef9c91e9f6e170cad/aspnetcore-runtime-2.1.27-linux-x64.tar.gz
+[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a8067484-5bba-4bf4-97bc-77093e8fcb78/25a2302003e3efee5795bb160c23ca89/aspnetcore-runtime-2.1.27-osx-x64.tar.gz
+[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/44f46782-9066-4f62-8aae-2657d5a6112a/e9de8e0fdeeb6eb05d77950da50351cc/aspnetcore-runtime-2.1.27-win-x64.exe
+[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/291e04db-0aa4-4a52-b733-8afaed634bae/d72e1a99e070354b22e8e2fca1990f13/aspnetcore-runtime-2.1.27-win-x64.zip
+[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/978a4289-8043-473d-a0f2-0a44bd1b50d8/2f1a77556585d03fb5f1f2ab52d57cc0/aspnetcore-runtime-2.1.27-win-x86.exe
+[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c446dcfe-e41b-400d-ae48-ba28b49539a4/c250b3fcbc7e3db17d48692ea15644a6/aspnetcore-runtime-2.1.27-win-x86.zip
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/4155e077-4635-4a74-8c96-3feb3f341073/771eb3d31794d7fd6030d367e0236ec8/dotnet-hosting-2.1.27-win.exe
+
+[//]: # ( SDK 2.1.815 )
+[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/35da4c51-417b-4a6e-a7d2-4b4e246a3bad/976ee96a01003c44f787943f3ce13b13/dotnet-sdk-2.1.815-linux-arm.tar.gz
+[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6f0cfe82-8f75-40cb-aedd-255e3fe18b7c/e9714474d9cf59c7bdb7461bcb875064/dotnet-sdk-2.1.815-linux-arm64.tar.gz
+[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d23516c5-208a-4eed-a756-706996e1a559/642a5cb2533450a857fb35217aa8ace4/dotnet-sdk-2.1.815-linux-musl-x64.tar.gz
+[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7fba29f6-aac9-4b53-a5f9-9b421bec6288/70ac39be0282331d18b535f64ea5f40a/dotnet-sdk-2.1.815-linux-x64.tar.gz
+[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/48fa767a-4e0d-4d53-bd81-b931061b58e5/446f7ebcd5d20906d34cd6d1bc53f2d4/dotnet-sdk-2.1.815-osx-x64.pkg
+[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/be39ce14-fd2a-4f0a-ae0f-d149ada59344/314258f3c74c855ebf70eea4753f27ee/dotnet-sdk-2.1.815-osx-x64.tar.gz
+[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/aa95baea-c610-4802-a7f2-a06da7b7adf1/942c9466aa99bc1180a4d3e569613de9/dotnet-sdk-2.1.815-win-x64.exe
+[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/7fd87a05-13e0-40da-aed3-f67e04b700cd/6e04d3b98972ff066845b3e694ff8e7b/dotnet-sdk-2.1.815-win-x64.zip
+[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/8a5fe887-ae33-4f55-a45a-c9d539b4b7f6/7f357aa5eb6cfced485a91df56ccb80c/dotnet-sdk-2.1.815-win-x86.exe
+[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/533ffcc7-f393-4ba2-9fc0-060cb6fa7dc0/2c43a263b519c32078ae51d6f4c256d8/dotnet-sdk-2.1.815-win-x86.zip
+
diff --git a/release-notes/2.1/README.md b/release-notes/2.1/README.md
index e1c3220b..f8ec7b41 100644
--- a/release-notes/2.1/README.md
+++ b/release-notes/2.1/README.md
@@ -15,6 +15,7 @@
| Date | Release |
| :-- | :-- |
+| 2021/04/13 | [2.1.27](2.1.27/2.1.27.md) |
| 2021/03/09 | [2.1.26](2.1.26/2.1.26.md) |
| 2021/02/09 | [2.1.25](2.1.25/2.1.25.md) |
| 2021/01/12 | [2.1.24](2.1.24/2.1.24.md) |
diff --git a/release-notes/2.1/releases.json b/release-notes/2.1/releases.json
index 4f3d4c4c..71021a9b 100755
--- a/release-notes/2.1/releases.json
+++ b/release-notes/2.1/releases.json
@@ -1,14 +1,383 @@
{
"channel-version": "2.1",
- "latest-release": "2.1.26",
- "latest-release-date": "2021-03-09",
- "latest-runtime": "2.1.26",
- "latest-sdk": "2.1.814",
+ "latest-release": "2.1.27",
+ "latest-release-date": "2021-04-13",
+ "latest-runtime": "2.1.27",
+ "latest-sdk": "2.1.815",
"support-phase": "lts",
"eol-date": "2021-08-21",
"lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/",
"releases": [
{
+ "release-date": "2021-04-13",
+ "release-version": "2.1.27",
+ "security": false,
+ "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.27/2.1.27.md",
+ "runtime": {
+ "version": "2.1.27",
+ "version-display": "2.1.27",
+ "vs-version": "15.9.35, 16.4.21, 16.7.14, 16.9.4",
+ "vs-mac-version": "8.9.6",
+ "files": [
+ {
+ "name": "dotnet-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/9551a562-4edb-4c50-9c95-17a86f384cd2/ac4903d8b2de052277402f936edd5c97/dotnet-runtime-2.1.27-linux-arm.tar.gz",
+ "hash": "aca2c5b03be6761bad2ea737170dc7db0a6afc2c69180c6aacb57f525461d2bf6781a046d73e8a92cfef38bdab265975934b2c14ed6c2a31df2e55803052d617"
+ },
+ {
+ "name": "dotnet-runtime-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/886a04a8-9995-43bc-b6ee-133541836c78/7e1f06c72ffd86731c3b37ae545499ed/dotnet-runtime-2.1.27-linux-arm64.tar.gz",
+ "hash": "102d86a9259f767c1f27f37906ecb35a67296036cca028e142a6cf981338704624d9826528fbfeb7905971e83ea03b200bb77245f46b6f34acd0a4b107726d16"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/62a3d54d-826a-4f02-bdb6-bf39e150bdef/dc80fe29313d0f01841283cca5e3fc49/dotnet-runtime-2.1.27-linux-musl-x64.tar.gz",
+ "hash": "198f20962b54b7cc5589485f33a512dd025570562a0a01c6ee48d21bdf9e1a305b4d252c84d2a8326a32482288a78636c8a30fc9b526307827b0f9550b33e591"
+ },
+ {
+ "name": "dotnet-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f7eb39c4-484d-4e01-bd41-b4fe6794cd82/ff5c2799f30ea6dd19964c5c90780dba/dotnet-runtime-2.1.27-linux-x64.tar.gz",
+ "hash": "8f72f297bcd57ee446af2f8af60ea19724fa641611643345f6eb4c81b02277d1259d6065b2424719cf1bb53a34228c2c0595980e7211223936ac416a4563c79a"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/e88dabe7-3985-4170-a673-474b72b17027/71d6a02976970b4c3276e7ca5fe2e636/dotnet-runtime-2.1.27-osx-x64.pkg",
+ "hash": "d140e2f71383747bc3d6d209fb1a2c9afb5843a0049a51389dd613619dc13d1f883ac54ec90948bef29c361c0823b82337f30f02dcabfbb52aedec65c913203b"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a599fc53-bc74-4640-b95d-1a041e161f6c/86bbfe6131d2f3b9d1a52c8ccbcd2a47/dotnet-runtime-2.1.27-osx-x64.tar.gz",
+ "hash": "7509a0bf5569e222b9774fe03d1849b920e446ef72c66ffef950f6bc285614a4c75d1e12708538894ca9823a0dd58fe7491bb93f9b13632076d331f2a8e438fd"
+ },
+ {
+ "name": "dotnet-runtime-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d8f11be6-be68-4997-a604-81f964b14d16/1c83ed7b1197f984a994c56f3ecdea77/dotnet-runtime-2.1.27-win-arm.zip",
+ "hash": "9b7be2a1426d93161d8362636d54a6a40c9a318c335f975d02940377955513bf239e8f4d1dd96263e6b7caec73777cdf8b1d05ca8c86e8b546f14ec72a89dd84"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7c60245b-b3f0-4db4-ba42-ed1e78e0d02d/dd7047834f6fd9239fd060b824ca8fdc/dotnet-runtime-2.1.27-win-x64.exe",
+ "hash": "6f6be376b37248498a46c242208dcaf510b26cf9ef1080c84cc06031a06da16e71ba9cc570d6d5ad1d7cb02d43a626ff1ae279f638f760ea23c62120e302bd12"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/359b51a0-118d-4f59-866d-0d52a55ee8b9/40c5bd8934bf576e54a3b82b4fbc394a/dotnet-runtime-2.1.27-win-x64.zip",
+ "hash": "4cb91f35ee8d6480c54719084a110a9572ac8879355526978b2463a7a445395de7b08c5c3aa58b23ac64ba10c4bd4200b97ac017a9e6ed259f4abb66cc70be5a"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/2644fd69-fb6b-40c2-96ca-5bd65b62934e/dc5f3662f1f1863e5e9e98819be03be3/dotnet-runtime-2.1.27-win-x86.exe",
+ "hash": "1a7830cafe73405a34aaefc25ae384642453d57226265013f292702c0b292bb8959a9029956322764f3c778d7f29bd5f235e01fae33dde10c11aa925b6899ea5"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/9f2e3f11-aca9-45af-87e6-584453082cb7/5c3a6ca7c2f274eab48608c545bc47a5/dotnet-runtime-2.1.27-win-x86.zip",
+ "hash": "2cac97be983462a2494297c628c1f5445309d20886489639a11257b472ccfefcb95195a6059e718052c54b926416b3c16f2771c5fe1aa36365bb4d8f20164efe"
+ }
+ ]
+ },
+ "sdk": {
+ "version": "2.1.815",
+ "version-display": "2.1.815",
+ "runtime-version": "2.1.27",
+ "vs-version": "",
+ "vs-mac-version": "",
+ "vs-support": "Visual Studio 2019 (v16.2)",
+ "vs-mac-support": "",
+ "csharp-version": "7.3",
+ "fsharp-version": "4.5",
+ "vb-version": "15.5",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/35da4c51-417b-4a6e-a7d2-4b4e246a3bad/976ee96a01003c44f787943f3ce13b13/dotnet-sdk-2.1.815-linux-arm.tar.gz",
+ "hash": "190f79284c599c5a8bac0fc58954222d12fc91a4c473de915da381f9ee930d515d8d5fc4a6862e70bc37ec806a68ae55f84771b5041621f035b2ff9bd00e7ee7"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/6f0cfe82-8f75-40cb-aedd-255e3fe18b7c/e9714474d9cf59c7bdb7461bcb875064/dotnet-sdk-2.1.815-linux-arm64.tar.gz",
+ "hash": "8fa9f5c5f94f9d039228c150c6497c8bf4482befaa39b8a0acc193968bfbcc3be19e48aeb0cea4cbac713ba768bba8a72bfca2aab9b805a10023b98e6dcbc939"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d23516c5-208a-4eed-a756-706996e1a559/642a5cb2533450a857fb35217aa8ace4/dotnet-sdk-2.1.815-linux-musl-x64.tar.gz",
+ "hash": "bd117ac8993c678d1481b084596278ab91f0b71f0d826b37cf6be146adf681892da380013762b6f5879c17fbf098094173e5d193ada1c34529b410f6237136b4"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7fba29f6-aac9-4b53-a5f9-9b421bec6288/70ac39be0282331d18b535f64ea5f40a/dotnet-sdk-2.1.815-linux-x64.tar.gz",
+ "hash": "e998ccb8b4e47a727141e85823637f2030df556d3056aadbdfbce4eca823fe4759ca0e0b2edaa6f83dd5b4cbb8a3b0046ff2c9eae96832e71dc6c13855998148"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/48fa767a-4e0d-4d53-bd81-b931061b58e5/446f7ebcd5d20906d34cd6d1bc53f2d4/dotnet-sdk-2.1.815-osx-x64.pkg",
+ "hash": "f4c7c336b6ed807f9168d767fcb9e6c402304f951a51305ddc197c1b5be4aae5c6a049e9c640983d4a476f4d8bbdf4316c41694a9a136d5dd55c4c7811a2092e"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/be39ce14-fd2a-4f0a-ae0f-d149ada59344/314258f3c74c855ebf70eea4753f27ee/dotnet-sdk-2.1.815-osx-x64.tar.gz",
+ "hash": "43b34bd59a01007fad3e1ab682764afdfb5d4429693ecb6572b23b1f54ae56022b7ee679d8c5085dd8badc95942530218385fd0af66451071112771160950f9d"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/aa95baea-c610-4802-a7f2-a06da7b7adf1/942c9466aa99bc1180a4d3e569613de9/dotnet-sdk-2.1.815-win-x64.exe",
+ "hash": "94c32062f75b3285b7992e37a94ace9236a0cc01f2e444fc7274ee57e33e1678b74b79296e0b8b1cb094d62f69af6017f2a86fe00f0fd1dd54989a2bdddd0e7b"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7fd87a05-13e0-40da-aed3-f67e04b700cd/6e04d3b98972ff066845b3e694ff8e7b/dotnet-sdk-2.1.815-win-x64.zip",
+ "hash": "661a4a552a43f8ba0008fef9df01728601fcb9936e98aef7afccd0330d60f5fa56b31b7c8e395d7ab5a697c80157c11e4f0957a54985263e2ceff5f5e6c672c5"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/8a5fe887-ae33-4f55-a45a-c9d539b4b7f6/7f357aa5eb6cfced485a91df56ccb80c/dotnet-sdk-2.1.815-win-x86.exe",
+ "hash": "0abd911e12cfc13162a5be624f59de01b1882fa8ae42a5811dff213240d4690a5d759fa2bddb6454fee8bb86011faa59ea358c8761f6bdb4d704a5dad95de9e6"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/533ffcc7-f393-4ba2-9fc0-060cb6fa7dc0/2c43a263b519c32078ae51d6f4c256d8/dotnet-sdk-2.1.815-win-x86.zip",
+ "hash": "93a338c525d0aabe36f97a34ada1d03dd5908e7b8e67e112085dccdd6f49f8cbdbefd1eb1ac584c02bb4aee2ac68dfb6c4de00999aac3d1927cf3aedb35ba06a"
+ }
+ ]
+ },
+ "sdks": [
+ {
+ "version": "2.1.815",
+ "version-display": "2.1.815",
+ "runtime-version": "2.1.27",
+ "vs-version": "",
+ "vs-mac-version": "",
+ "vs-support": "Visual Studio 2019 (v16.2)",
+ "vs-mac-support": "",
+ "csharp-version": "7.3",
+ "fsharp-version": "4.5",
+ "vb-version": "15.5",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/35da4c51-417b-4a6e-a7d2-4b4e246a3bad/976ee96a01003c44f787943f3ce13b13/dotnet-sdk-2.1.815-linux-arm.tar.gz",
+ "hash": "190f79284c599c5a8bac0fc58954222d12fc91a4c473de915da381f9ee930d515d8d5fc4a6862e70bc37ec806a68ae55f84771b5041621f035b2ff9bd00e7ee7"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/6f0cfe82-8f75-40cb-aedd-255e3fe18b7c/e9714474d9cf59c7bdb7461bcb875064/dotnet-sdk-2.1.815-linux-arm64.tar.gz",
+ "hash": "8fa9f5c5f94f9d039228c150c6497c8bf4482befaa39b8a0acc193968bfbcc3be19e48aeb0cea4cbac713ba768bba8a72bfca2aab9b805a10023b98e6dcbc939"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d23516c5-208a-4eed-a756-706996e1a559/642a5cb2533450a857fb35217aa8ace4/dotnet-sdk-2.1.815-linux-musl-x64.tar.gz",
+ "hash": "bd117ac8993c678d1481b084596278ab91f0b71f0d826b37cf6be146adf681892da380013762b6f5879c17fbf098094173e5d193ada1c34529b410f6237136b4"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7fba29f6-aac9-4b53-a5f9-9b421bec6288/70ac39be0282331d18b535f64ea5f40a/dotnet-sdk-2.1.815-linux-x64.tar.gz",
+ "hash": "e998ccb8b4e47a727141e85823637f2030df556d3056aadbdfbce4eca823fe4759ca0e0b2edaa6f83dd5b4cbb8a3b0046ff2c9eae96832e71dc6c13855998148"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/48fa767a-4e0d-4d53-bd81-b931061b58e5/446f7ebcd5d20906d34cd6d1bc53f2d4/dotnet-sdk-2.1.815-osx-x64.pkg",
+ "hash": "f4c7c336b6ed807f9168d767fcb9e6c402304f951a51305ddc197c1b5be4aae5c6a049e9c640983d4a476f4d8bbdf4316c41694a9a136d5dd55c4c7811a2092e"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/be39ce14-fd2a-4f0a-ae0f-d149ada59344/314258f3c74c855ebf70eea4753f27ee/dotnet-sdk-2.1.815-osx-x64.tar.gz",
+ "hash": "43b34bd59a01007fad3e1ab682764afdfb5d4429693ecb6572b23b1f54ae56022b7ee679d8c5085dd8badc95942530218385fd0af66451071112771160950f9d"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/aa95baea-c610-4802-a7f2-a06da7b7adf1/942c9466aa99bc1180a4d3e569613de9/dotnet-sdk-2.1.815-win-x64.exe",
+ "hash": "94c32062f75b3285b7992e37a94ace9236a0cc01f2e444fc7274ee57e33e1678b74b79296e0b8b1cb094d62f69af6017f2a86fe00f0fd1dd54989a2bdddd0e7b"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7fd87a05-13e0-40da-aed3-f67e04b700cd/6e04d3b98972ff066845b3e694ff8e7b/dotnet-sdk-2.1.815-win-x64.zip",
+ "hash": "661a4a552a43f8ba0008fef9df01728601fcb9936e98aef7afccd0330d60f5fa56b31b7c8e395d7ab5a697c80157c11e4f0957a54985263e2ceff5f5e6c672c5"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/8a5fe887-ae33-4f55-a45a-c9d539b4b7f6/7f357aa5eb6cfced485a91df56ccb80c/dotnet-sdk-2.1.815-win-x86.exe",
+ "hash": "0abd911e12cfc13162a5be624f59de01b1882fa8ae42a5811dff213240d4690a5d759fa2bddb6454fee8bb86011faa59ea358c8761f6bdb4d704a5dad95de9e6"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/533ffcc7-f393-4ba2-9fc0-060cb6fa7dc0/2c43a263b519c32078ae51d6f4c256d8/dotnet-sdk-2.1.815-win-x86.zip",
+ "hash": "93a338c525d0aabe36f97a34ada1d03dd5908e7b8e67e112085dccdd6f49f8cbdbefd1eb1ac584c02bb4aee2ac68dfb6c4de00999aac3d1927cf3aedb35ba06a"
+ }
+ ]
+ },
+ {
+ "version": "2.1.523",
+ "version-display": "2.1.523",
+ "runtime-version": "2.1.27",
+ "vs-version": "15.9.35",
+ "vs-mac-version": "",
+ "vs-support": "Visual Studio 2019 (v15.9)",
+ "vs-mac-support": "",
+ "csharp-version": "7.3",
+ "fsharp-version": "4.5",
+ "vb-version": "15.5",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/1ff58389-afd6-44b6-be22-f381bb688500/2cb8d54ba5207beb8de093193c410d06/dotnet-sdk-2.1.523-linux-arm.tar.gz",
+ "hash": "f41f73fd56504cbecc1008a32d1dcca64b26376600f6a9a9dbdf2a2101a2b6f75e5f7446b0adca3d1e55c431a0f9b90018d2f302f24921995e1553269d0063c0"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/8db0700a-607f-4068-baad-ae484f5623d0/f6e23e2bb9774fab858c58ddf4e4c427/dotnet-sdk-2.1.523-linux-arm64.tar.gz",
+ "hash": "13dea59d7cbb6aab1145681d47a38e8bd79e78347854590c45930d5df0618386fc26c5906a86a6f0bc8ddd39cf0cc202bd80b857a45088baf43cdf1bee6db541"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a7cf90e2-fdb1-4546-978a-45b83c7fce56/f80983803f3ade6f9c14705313add981/dotnet-sdk-2.1.523-linux-musl-x64.tar.gz",
+ "hash": "8ab7e8eebc596ef8f501366741faf56fae72299f218f611c8aae8d0609eb3d634c073693d649a6c34a031e8676f346846e2545acfc4555d500e38a886aaaf6b8"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/da36cbfe-dbf0-4e2b-899d-69e4cf59266a/bcbb09869964a6ff33ce18cb0e1cafe8/dotnet-sdk-2.1.523-linux-x64.tar.gz",
+ "hash": "140d978fef0a56de347fd69f27010caf2e69d5616e6411d300d8fff33d006e9debaab7d343aa069c6ca7ad24d80ef02e6840f705547f00bf5b9c7977935e01b4"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/86a6d223-85fb-4d80-98bb-e45cab9926db/66bbeeb674f783e70b2b5b672d2a4972/dotnet-sdk-2.1.523-osx-x64.pkg",
+ "hash": "f0454c60d29661c60591715dd522333a4f01026d6f34e33b5470acbc8d0adf33922a3dd25815a8162e9253382bf584ac5e059400b7e9f4a7c671b9f226ecbc96"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/fd676a92-b47c-4f68-90f3-1e1da1030b9b/093d92ba8d56195cd674182f8c0fac9a/dotnet-sdk-2.1.523-osx-x64.tar.gz",
+ "hash": "de330b387aeb68528f25ad58281a3ea77e44403f816c83b2f7e3df29a5b7cff335fb9b0d36c9fcb2e51bfd19ad31fbf83aee7a74726249457c20cfc0edd57bfa"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/59ca29e1-a1e9-4074-8c1d-60d8df831051/aa178a7db1198e274e40b4d449b01089/dotnet-sdk-2.1.523-win-x64.exe",
+ "hash": "c9e0de37c3c88dd01a94ae3b52503820c3fe1663c7af8862f191ada33464353b0bbc80e0db80cde50a7f8350047169a49609fc5e982f0e58cf2406ea123685f6"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/107d1215-b3a0-4b59-b595-88f39cdca9ec/8b7ed70b3bc6aae2f6da91af7a6f0f6b/dotnet-sdk-2.1.523-win-x64.zip",
+ "hash": "109e6c29669884b586937c655f43c10d886952dac85793a37318e5ccb0e6102d8c7635e8f9b7523e1b09176b7e28445cc21b2e96fb31729ece23a09378de5851"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c0c4fd8f-e924-4f59-a16b-04ec350481c5/df5b73d5a951af6f473ee6ce9787ad80/dotnet-sdk-2.1.523-win-x86.exe",
+ "hash": "a898510781fd79825c1b4a32518856c3257cb0223d0e7b5190d69ae6b009e068bdae396c3b77d1411ed277596db61a98049d5d5f4b21e2e323f1500504165141"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c5429f4c-de7f-4ac2-9a75-9ff44d636e49/d5a7b78887f1977721c6d3c46cf8c99d/dotnet-sdk-2.1.523-win-x86.zip",
+ "hash": "e7a37fbab138efe8db2e3da9cf2f84f11d3c2bd7d216d147849f42614e12c45ea57b42357f1674f5603ab05d8f608817235e9b087ab72495acb31e75a60cc823"
+ }
+ ]
+ }
+ ],
+ "aspnetcore-runtime": {
+ "version": "2.1.27",
+ "version-display": "2.1.27",
+ "version-aspnetcoremodule": [
+ "12.1.21076.27"
+ ],
+ "vs-version": "15.9.35, 16.4.21, 16.7.14",
+ "files": [
+ {
+ "name": "aspnetcore-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/370a2aca-439b-4f0f-831f-3224a9cf4d13/bd3ec147dc91fa66c7464b5c7a8a668b/aspnetcore-runtime-2.1.27-linux-arm.tar.gz",
+ "hash": "6e83a2f0b332701c4e932b0ea3e9f8783454e960c0c051b3c31180a80083ec1b191e1c5526db45d3b44e1d10f3831569e1ab6efad0ef8c5377c38e9b81226c52"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/006d9e1a-f9c4-4a6f-9e39-8b869322ae4a/6e3ed4443981bc2c75ce89bda340c267/aspnetcore-runtime-2.1.27-linux-musl-x64.tar.gz",
+ "hash": "45a0e5d56676b6d8f4ae66dcda40090816f92414b493013db8e23b560a50ba2d8379ad0a1e978177fee97d6c6e6d24fcf0b62bca65442ce54bf5078171011046"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c66dd1cb-a5fc-4427-bef4-d55a1da5a5c7/17f733c7b6afe91ef9c91e9f6e170cad/aspnetcore-runtime-2.1.27-linux-x64.tar.gz",
+ "hash": "ea2b36097c2dca3660265d3dffbbd82d38d2c3f11a3759f6afe70f296b515c0610f8a6680385b4a54f5b21ba0a299090adb67fc7b352c22b6a941b750ee51084"
+ },
+ {
+ "name": "aspnetcore-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a8067484-5bba-4bf4-97bc-77093e8fcb78/25a2302003e3efee5795bb160c23ca89/aspnetcore-runtime-2.1.27-osx-x64.tar.gz",
+ "hash": "e92a363eb3805f8a7ae69b5706f284696588325488594a8cd9795c300523436fa12a4ff61f7200817704487f6d7b6839c59400472af03a181c133f8b7ed235f3"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/44f46782-9066-4f62-8aae-2657d5a6112a/e9de8e0fdeeb6eb05d77950da50351cc/aspnetcore-runtime-2.1.27-win-x64.exe",
+ "hash": "6c484f405c4f7286b0662b03fcbdb425eb8b58674f337c84afb93dfceb7ad0338eeb4b3342e1834baf5211f2544afc825d23e424b2f481fb6e9909acb122c952"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/291e04db-0aa4-4a52-b733-8afaed634bae/d72e1a99e070354b22e8e2fca1990f13/aspnetcore-runtime-2.1.27-win-x64.zip",
+ "hash": "8dd828d345759a8b18d942d3f284dc75bc333040691182e5d340b60e11420883f16cb5c7c5ef9d5fc5d3a4751bb17671ad1638abfa6402cc6c0282d2cb41ae58"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/978a4289-8043-473d-a0f2-0a44bd1b50d8/2f1a77556585d03fb5f1f2ab52d57cc0/aspnetcore-runtime-2.1.27-win-x86.exe",
+ "hash": "c9d119443e5bfc668adab8ca2b0ebda497c99e2718f48b1fb7c7450f3bb638b7b8503ef71e3f4e45ede042c25c1c28b6a098f16826832d3116bf03554b8aafc8"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c446dcfe-e41b-400d-ae48-ba28b49539a4/c250b3fcbc7e3db17d48692ea15644a6/aspnetcore-runtime-2.1.27-win-x86.zip",
+ "hash": "6fbc671e7fff1cbe917aca17ff01597290e910e55648664b70494bdd8e9a57ca9fdf70fcd07a1976a2a7d6c632b7dc9bd1a4214fe47ef82e35713469c46346e3"
+ },
+ {
+ "name": "dotnet-hosting-win.exe",
+ "rid": "",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/4155e077-4635-4a74-8c96-3feb3f341073/771eb3d31794d7fd6030d367e0236ec8/dotnet-hosting-2.1.27-win.exe",
+ "hash": "275cd5d06e790904ddd3dc2014ce0b3d0dda30e8a15873a2983fc961fff3fdd2852e1abf3e14f448d11fd648828c4ebcbe707bb4d516246ab36c5be8c4f3ba4b",
+ "akams": "https://aka.ms/dotnetcore-2-1-windowshosting"
+ }
+ ]
+ }
+ },
+ {
"release-date": "2021-03-09",
"release-version": "2.1.26",
"security": true,
diff --git a/release-notes/3.1/3.1.14/3.1.14-install-instructions.md b/release-notes/3.1/3.1.14/3.1.14-install-instructions.md
new file mode 100644
index 00000000..8949ba71
--- /dev/null
+++ b/release-notes/3.1/3.1.14/3.1.14-install-instructions.md
@@ -0,0 +1,96 @@
+# .NET Core 3.1.14
+
+.NET Core 3.1.14 comprises:
+
+* .NET Core Runtime 3.1.14
+* ASP.NET Core 3.1.14
+* .NET Core SDK 3.1.114
+
+See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/3.1/3.1.14/3.1.14.md) for details about what is included in this update.
+
+## Docker
+
+The [.NET Core Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md) show various ways to use .NET and Docker together.
+
+## Installing .NET Core on Linux
+
+### Install using Snap
+
+Snap is a system that installs applications in an isolated environment and provides for automatic updates. Many distributions that are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
+
+After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
+
+`sudo snap install dotnet-sdk --channel 3.1/stable --classic`
+
+When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
+
+`sudo snap alias dotnet-sdk.dotnet dotnet`
+
+**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
+
+### Install using a Package Manager
+
+Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
+
+The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
+
+| Distro | Package Manager |
+| --- | :----: |
+| CentOS, Oracle | yum |
+| Debian, Ubuntu | apt-get |
+| Fedora | dnf |
+| OpenSUSE, SLES | zypper |
+
+Note: .NET Core 3.1 is available in the default Fedora 33+ packages feeds. Before using the default Fedora package feed, please make sure to remove any packages.microsoft.com registration first.
+
+## Develop applications
+To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included.
+
+```bash
+sudo [package manager] update or refresh
+sudo [package manager] install dotnet-sdk-3.1
+```
+
+## Run applications
+If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included.
+
+```bash
+sudo [package manager] update or refresh
+sudo [package manager] install aspnetcore-runtime-3.1
+```
+
+### Installation from a binary archive
+
+Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
+
+```bash
+mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
+export PATH=$PATH:$HOME/dotnet
+```
+
+## .NET Core Runtime-only installation
+
+If only the .NET Core Runtime is needed, install `dotnet-runtime-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
+
+## Windows Server Hosting
+
+If you're looking to host standalone apps on servers, the following installer can be used on Windows systems.
+
+### Windows
+
+You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
+
+* [dotnet-hosting-3.1.14-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/main/release-notes/3.1/3.1.13/3.1.13.md
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.13-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.13-sha.txt
+
+[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
+
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/bdc70151-74f7-427c-a368-716d5f1840c5/6186889f6c784bae224eb15fb94c45fe/dotnet-hosting-3.1.14-win.exe
diff --git a/release-notes/3.1/3.1.14/3.1.14.md b/release-notes/3.1/3.1.14/3.1.14.md
new file mode 100644
index 00000000..69057a76
--- /dev/null
+++ b/release-notes/3.1/3.1.14/3.1.14.md
@@ -0,0 +1,390 @@
+# .NET Core 3.1.14 - April 13, 2021
+
+The .NET 3.1.14 and .NET SDK 3.1.114 releases are available for download. The latest 3.1 release is always listed at [.NET 3.1 Releases](../README.md).
+
+## Downloads
+
+| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime | Windows Desktop Runtime |
+| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |:-----------------: |
+| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm][dotnet-sdk-win-arm.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [Arm][aspnetcore-runtime-win-arm.zip] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] |
+| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup> | - |
+| Linux | [Snap Install][snap-install] | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [Arm][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] \| [Arm64 Alpine][aspnetcore-runtime-linux-musl-arm64.tar.gz] | - |
+| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] |
+
+</br>
+1. Includes the .NET Core and ASP.NET Core Runtimes.
+</br>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.
+
+</br>
+
+The .NET SDK includes a matching updated .NET Runtime. Downloading the Runtime or ASP.NET Core packages is not needed when installing the SDK.
+
+You can check your .NET SDK version by running the following command. The example version shown is for this release.
+
+```console
+$ dotnet --version
+3.1.114
+```
+Visit [.NET Documentation](https://docs.microsoft.com/dotnet/core/) to learn about .NET, for building many different types of applications.
+
+## Docker Images
+
+The [.NET Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md) show various ways to use .NET and Docker together.
+
+The following repos have been updated.
+
+* [dotnet/sdk](https://hub.docker.com/_/microsoft-dotnet-sdk/): .NET Core SDK
+* [dotnet/aspnet](https://hub.docker.com/_/microsoft-dotnet-aspnet/): ASP.NET Core Runtime
+* [dotnet/runtime](https://hub.docker.com/_/microsoft-dotnet-runtime/): .NET Core Runtime
+* [dotnet/runtime-deps](https://hub.docker.com/_/microsoft-dotnet-runtime-deps/): .NET Core Runtime Dependencies
+
+### Azure App Services
+
+* .NET Core 3.1.14 is being deployed to Azure App Services and the deployment is expected to complete later in April 2021.
+
+## Visual Studio Compatibility
+
+**Visual Studio compatibility:** .NET Core 3.1 requires Visual Studio 2019 16.4 or above to take full advantage of all its features. .NET Core 3.1 won't work properly in earlier versions of Visual Studio. See the following table to select the correct download.
+
+| OS | Development Environment | .NET Core SDK |
+| :-- | :-- | :--: |
+| Windows | Visual Studio 2019 version 16.7 | [3.1.408](3.1.408-download.md) |
+| Windows | Visual Studio 2019 version 16.4 | [3.1.114](#downloads) |
+| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
+
+
+
+## Notable Changes
+
+.NET Core 3.1.14 release carries only non-security fixes.
+
+* [Blog Roundup][dotnet-blog]
+* [Known issues](../3.1-known-issues.md)
+
+### Additional fixes in this release
+
+* [CoreCLR](https://github.com/dotnet/coreclr/pulls?q=milestone%3A3.1.14+is%3Aclosed+label%3Aservicing-approved)
+* [Setup](https://github.com/dotnet/core-setup/pulls?q=milestone%3A3.1.14+is%3Aclosed+label%3Aservicing-approved)
+
+## macOS Notarization Change
+ Running "dotnet build" will generate a dll instead of a dylib on macOS. This is a planned change to not use the AppHost by default on macOS because of [notarization requirements](https://docs.microsoft.com/dotnet/core/install/macos-notarization-issues). If you want to opt into using the AppHost, add the following to your project file:
+```
+<PropertyGroup>
+ <UseAppHost>true</UseAppHost>
+</PropertyGroup>
+```
+
+## Feedback
+
+Your feedback is important and appreciated. We've created an issue at [dotnet/core #6129](https://github.com/dotnet/core/issues/6129) for your questions and comments.
+
+## Packages updated in this release:
+
+Package name | Version
+:----------- | :------------------
+runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.rhel.6-x64 | 3.1.14.nupkg
+Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.linux-x64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+Microsoft.WindowsDesktop.App.Runtime.win-x86 | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.linux-arm64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.osx-x64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.win-x64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.win-x86 | 3.1.14.nupkg
+Microsoft.WindowsDesktop.App.Runtime.win-x64 | 3.1.14.nupkg
+runtime.win-arm.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.linux-arm.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.linux-x64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.osx-x64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.linux-arm | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.win-x64 | 3.1.14.nupkg
+Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.win-arm.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.win-x64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.win-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.win-x64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.win-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.win-x86.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.osx-x64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.rhel.6-x64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.linux-arm | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.linux-musl-x64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.win-arm | 3.1.14.nupkg
+runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.rhel.6-x64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.linux-arm.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.linux-musl-x64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.win-arm64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.linux-x64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.win-x86 | 3.1.14.nupkg
+Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.win-arm64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.osx-x64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.win-arm64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.linux-musl-arm64 | 3.1.14.nupkg
+runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.linux-arm64.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.14.nupkg
+runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.linux-musl-arm64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.linux-x64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Host.win-arm | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.linux-arm64 | 3.1.14.nupkg
+Microsoft.NETCore.App.Runtime.rhel.6-x64 | 3.1.14.nupkg
+runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.win-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.14.nupkg
+runtime.win-x86.Microsoft.NETCore.DotNetHost | 3.1.14.nupkg
+runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy | 3.1.14.nupkg
+Microsoft.NETCore.Platforms | 3.1.6.nupkg
+Microsoft.AspNetCore.SpaServices.Extensions | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.linux-arm64 | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.osx-x64 | 3.1.14.nupkg
+Microsoft.AspNetCore.Http.Features | 3.1.14.nupkg
+Microsoft.AspNetCore.Cryptography.Internal | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.Facebook | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.linux-arm | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.linux-x64 | 3.1.14.nupkg
+dotnet-sql-cache | 3.1.14.nupkg
+Microsoft.AspNetCore.Http.Connections.Common | 3.1.14.nupkg
+Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore | 3.1.14.nupkg
+Microsoft.AspNetCore.Identity.UI | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson | 3.1.14.nupkg
+Microsoft.AspNetCore.DataProtection.AzureKeyVault | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.JwtBearer | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.win-x64 | 3.1.14.nupkg
+Microsoft.Extensions.ApiDescription.Client | 3.1.14.nupkg
+Microsoft.AspNetCore.TestHost | 3.1.14.nupkg
+Microsoft.AspNetCore.Hosting.WindowsServices | 3.1.14.nupkg
+Microsoft.AspNetCore.DataProtection.StackExchangeRedis | 3.1.14.nupkg
+Microsoft.AspNetCore.MiddlewareAnalysis | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.win-x86 | 3.1.14.nupkg
+Microsoft.Extensions.Identity.Stores | 3.1.14.nupkg
+Microsoft.DotNet.Web.ProjectTemplates.3.1 | 3.1.14.nupkg
+Microsoft.DotNet.Web.Client.ItemTemplates | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.Specification.Tests | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.win-arm | 3.1.14.nupkg
+Microsoft.AspNetCore.Http.Connections.Client | 3.1.14.nupkg
+Microsoft.AspNetCore.DataProtection.Extensions | 3.1.14.nupkg
+Microsoft.AspNetCore.DataProtection.AzureStorage | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.Common | 3.1.14.nupkg
+Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv | 3.1.14.nupkg
+Microsoft.AspNetCore.NodeServices | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.Twitter | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.MicrosoftAccount | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.Certificate | 3.1.14.nupkg
+Microsoft.Extensions.ApiDescription.Server | 3.1.14.nupkg
+Microsoft.dotnet-openapi | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.StackExchangeRedis | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 | 3.1.14.nupkg
+Microsoft.AspNetCore.Identity.Specification.Tests | 3.1.14.nupkg
+Microsoft.AspNetCore.HeaderPropagation | 3.1.14.nupkg
+Microsoft.AspNetCore.Metadata | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.Client.Core | 3.1.14.nupkg
+Microsoft.AspNetCore.Owin | 3.1.14.nupkg
+Microsoft.AspNetCore.Mvc.Testing | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.Negotiate | 3.1.14.nupkg
+Microsoft.AspNetCore.AzureAppServices.SiteExtension | 3.1.14.nupkg
+Microsoft.AspNetCore.AzureAppServices.HostingStartup | 3.1.14.nupkg
+Microsoft.AspNetCore.Components.Analyzers | 3.1.14.nupkg
+Microsoft.Extensions.Identity.Core | 3.1.14.nupkg
+Microsoft.DotNet.Web.ItemTemplates | 3.1.14.nupkg
+Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore | 3.1.14.nupkg
+AspNetCoreRuntime.3.1.x86 | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.linux-musl-x64 | 3.1.14.nupkg
+Microsoft.AspNetCore.DataProtection.Abstractions | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.Protocols.Json | 3.1.14.nupkg
+Microsoft.AspNetCore.Mvc.NewtonsoftJson | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.WsFederation | 3.1.14.nupkg
+Microsoft.AspNetCore.ApiAuthorization.IdentityServer | 3.1.14.nupkg
+Microsoft.AspNetCore.Authorization | 3.1.14.nupkg
+Microsoft.AspNetCore.Components.Forms | 3.1.14.nupkg
+Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1 | 3.1.14.nupkg
+Microsoft.AspNetCore.SpaServices | 3.1.14.nupkg
+Microsoft.AspNetCore.App.Runtime.win-arm64 | 3.1.14.nupkg
+AspNetCoreRuntime.3.1.x64 | 3.1.14.nupkg
+Microsoft.AspNetCore.Identity.EntityFrameworkCore | 3.1.14.nupkg
+Microsoft.AspNetCore.DataProtection.EntityFrameworkCore | 3.1.14.nupkg
+Microsoft.AspNetCore.JsonPatch | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.Protocols.MessagePack | 3.1.14.nupkg
+Microsoft.AspNetCore.SignalR.Client | 3.1.14.nupkg
+Microsoft.AspNetCore.DataProtection | 3.1.14.nupkg
+Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation | 3.1.14.nupkg
+Microsoft.AspNetCore.Cryptography.KeyDerivation | 3.1.14.nupkg
+Microsoft.AspNetCore.Connections.Abstractions | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.Google | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.AzureAD.UI | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.AzureADB2C.UI | 3.1.14.nupkg
+Microsoft.AspNetCore.AzureAppServicesIntegration | 3.1.14.nupkg
+Microsoft.AspNetCore.ConcurrencyLimiter | 3.1.14.nupkg
+Microsoft.AspNetCore.Components.Authorization | 3.1.14.nupkg
+Microsoft.AspNetCore.Authentication.OpenIdConnect | 3.1.14.nupkg
+Microsoft.AspNetCore.Components | 3.1.14.nupkg
+Microsoft.AspNetCore.Components.Web | 3.1.14.nupkg
+Microsoft.DotNet.Common.ItemTemplates | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.2.2 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.2.0 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.3.1 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.2.1 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.1.x | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.3.0 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ItemTemplates | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.1.x | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.2.1 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.3.0 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.2.0 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.2.2 | 3.1.14.nupkg
+Microsoft.DotNet.Common.ProjectTemplates.3.1 | 3.1.14.nupkg
+Microsoft.AspNetCore.Razor.Language | 3.1.14.nupkg
+Microsoft.NET.Sdk.Razor | 3.1.14.nupkg
+Microsoft.AspNetCore.Mvc.Razor.Extensions | 3.1.14.nupkg
+Microsoft.CodeAnalysis.Razor | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Tools | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Relational | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Abstractions | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Analyzers | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Specification.Tests | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Sqlite.Core | 3.1.14.nupkg
+dotnet-ef | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.InMemory | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Design | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite | 3.1.14.nupkg
+Microsoft.Data.Sqlite.Core | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Cosmos | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Sqlite | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.SqlServer | 3.1.14.nupkg
+Microsoft.Data.Sqlite | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Relational.Specification.Tests | 3.1.14.nupkg
+Microsoft.EntityFrameworkCore.Proxies | 3.1.14.nupkg
+Microsoft.JSInterop | 3.1.14.nupkg
+Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.DependencyInjection.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.NewtonsoftJson | 3.1.14.nupkg
+Microsoft.Extensions.Caching.SqlServer | 3.1.14.nupkg
+Microsoft.Extensions.FileProviders.Embedded | 3.1.14.nupkg
+Microsoft.Extensions.Primitives | 3.1.14.nupkg
+Microsoft.Extensions.Logging.AzureAppServices | 3.1.14.nupkg
+Microsoft.Extensions.DependencyInjection | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.Ini | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.EnvironmentVariables | 3.1.14.nupkg
+Microsoft.Extensions.Caching.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.Options | 3.1.14.nupkg
+Microsoft.Extensions.Http | 3.1.14.nupkg
+Microsoft.Extensions.FileProviders.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.DiagnosticAdapter | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.Xml | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.KeyPerFile | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.CommandLine | 3.1.14.nupkg
+Microsoft.Extensions.Caching.StackExchangeRedis | 3.1.14.nupkg
+Microsoft.Extensions.Caching.Memory | 3.1.14.nupkg
+Microsoft.Extensions.FileSystemGlobbing | 3.1.14.nupkg
+Microsoft.Extensions.Options.ConfigurationExtensions | 3.1.14.nupkg
+Microsoft.Extensions.Logging.Configuration | 3.1.14.nupkg
+Microsoft.Extensions.Hosting.Systemd | 3.1.14.nupkg
+Microsoft.Extensions.Http.Polly | 3.1.14.nupkg
+Microsoft.Extensions.Configuration | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.AzureKeyVault | 3.1.14.nupkg
+Microsoft.Extensions.Logging.EventLog | 3.1.14.nupkg
+Microsoft.Extensions.Hosting.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.Logging | 3.1.14.nupkg
+Microsoft.Extensions.DependencyInjection.Specification.Tests | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.UserSecrets | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.FileExtensions | 3.1.14.nupkg
+Microsoft.Extensions.FileProviders.Composite | 3.1.14.nupkg
+Microsoft.Extensions.ObjectPool | 3.1.14.nupkg
+Microsoft.Extensions.Logging.TraceSource | 3.1.14.nupkg
+Microsoft.Extensions.Logging.Console | 3.1.14.nupkg
+Microsoft.Extensions.Localization | 3.1.14.nupkg
+Microsoft.Extensions.Localization.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.Json | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.Binder | 3.1.14.nupkg
+Microsoft.Extensions.WebEncoders | 3.1.14.nupkg
+Microsoft.Extensions.Options.DataAnnotations | 3.1.14.nupkg
+Microsoft.Extensions.Logging.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.Diagnostics.HealthChecks | 3.1.14.nupkg
+Microsoft.Extensions.Configuration.Abstractions | 3.1.14.nupkg
+Microsoft.Extensions.Logging.EventSource | 3.1.14.nupkg
+Microsoft.Extensions.FileProviders.Physical | 3.1.14.nupkg
+Microsoft.Extensions.Logging.Debug | 3.1.14.nupkg
+Microsoft.Extensions.Hosting | 3.1.14.nupkg
+Microsoft.Extensions.Hosting.WindowsServices | 3.1.14.nupkg
+
+
+[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
+[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
+[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/3.1/3.1.14/3.1.14.md
+[snap-install]: 3.1.14-install-instructions.md
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.14-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.14-sha.txt
+
+[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
+
+[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-april-2021/
+
+
+
+[//]: # ( Runtime 3.1.14)
+[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b094bab3-c504-404b-9524-b191f7deaad3/42eb57c4ed80bf99336cb8ea99105c7b/dotnet-runtime-3.1.14-linux-arm.tar.gz
+[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c6c4000d-5156-4526-b39e-e8fc67594e1b/dc652a3170cab422a1860b63ee83a25b/dotnet-runtime-3.1.14-linux-arm64.tar.gz
+[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7ea5a67d-c13f-4da6-8615-81033db8c143/6ce1efafbe3859a9e9863795a30fe7a2/dotnet-runtime-3.1.14-linux-musl-arm64.tar.gz
+[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e7f88aae-a10e-4b49-8ccd-31f2df82cf3f/35fb27716a3b7543ef2889f0e4c19949/dotnet-runtime-3.1.14-linux-musl-x64.tar.gz
+[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e5f17fa-fa56-40bc-bf3d-fd6abc91d0ad/08bd80f3751c0ac602dd41dc2534265e/dotnet-runtime-3.1.14-linux-x64.tar.gz
+[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/61df6a9d-3026-41f9-88e3-8bc9eded713d/6a46352bc4a98d208350d65e0a02bd3a/dotnet-runtime-3.1.14-osx-x64.pkg
+[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3423c7df-2daa-4188-8a13-646ae39f9d3f/86ed48857b28ce85cdc9a8699489aa71/dotnet-runtime-3.1.14-osx-x64.tar.gz
+[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/b05ae762-0720-4d51-80d5-76d6e1c3d212/c00f5949dcb80ba6b923d3b318960d3a/dotnet-runtime-3.1.14-win-arm.zip
+[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/56c3a951-9e5c-437d-a8da-80d263a62cc0/9681c2ff2f0e98f93976289e5ee7f53f/dotnet-runtime-3.1.14-win-x64.exe
+[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d88fda36-5e76-447e-8ed4-c3bd4151663c/c2d1485326cdeaab2168ee1d0ced1e0a/dotnet-runtime-3.1.14-win-x64.zip
+[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/56faca83-d1b3-4e1e-b203-3799c9166e84/707d7503ef4e4254f83f4030c60e8501/dotnet-runtime-3.1.14-win-x86.exe
+[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/7859793b-fc78-474a-8e50-cf037ead0fec/d5cf5dbe06bb0f078f9329d4ee63ad91/dotnet-runtime-3.1.14-win-x86.zip
+
+[//]: # ( WindowsDesktop 3.1.14)
+[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/88437980-f813-4a01-865c-f992ad4909bb/9a936984781f6ce3526ffc946267e0ea/windowsdesktop-runtime-3.1.14-win-x64.exe
+[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/f449f435-25d3-4d5c-ad14-0c84f5131dea/a597530464689595a430407e440787c4/windowsdesktop-runtime-3.1.14-win-x86.exe
+
+[//]: # ( ASP 3.1.14)
+[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a2439002-1f01-40d3-bc03-93612f2a25b5/2bd289060d44b428baa027ba0e8be762/aspnetcore-runtime-3.1.14-linux-arm.tar.gz
+[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/af1dcdff-acfe-4cbe-8a5b-aae0d6e63381/d3bd67c6fd14cd1187c268834189d5cc/aspnetcore-runtime-3.1.14-linux-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/afd4ecd1-5473-495e-9441-28790eecedd0/687a17a0534e548c5a9ab6f953eff1a1/aspnetcore-runtime-3.1.14-linux-musl-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/16f982a4-68a1-4655-bb82-79862198d441/2fcb7b40ff0f3c2f786390817ef469f1/aspnetcore-runtime-3.1.14-linux-musl-x64.tar.gz
+[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/516b337a-83f9-4946-b2a6-b2f686e09a76/d0e82549e890c5d852c461319ffd5b31/aspnetcore-runtime-3.1.14-linux-x64.tar.gz
+[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e37dd8f-af29-4b27-b495-e7a2fdd1ccb1/50219323ab8d29de6a7fef040646d8b9/aspnetcore-runtime-3.1.14-osx-x64.tar.gz
+[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/b5f5103a-6605-4757-81d7-dcc83d6d025a/d50274294e23cf9d1226680029191972/aspnetcore-runtime-3.1.14-win-arm.zip
+[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c060cd8b-e7b8-4e20-8195-b102053f515b/fc88cd9ee072881bde14fa29badb8884/aspnetcore-runtime-3.1.14-win-x64.exe
+[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/e4c43b9d-847a-4f92-aff3-ccae21822e43/cea2ed10f2fa8247a0cec513f6cc5e47/aspnetcore-runtime-3.1.14-win-x64.zip
+[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/871c3c8b-0fa3-4d95-bfb2-87e81000d975/e46edc7df65a9c88f354110b6c8a0ce8/aspnetcore-runtime-3.1.14-win-x86.exe
+[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/496f9fa7-1761-47f3-811b-18e546a0934c/05cc06e6d506ad92e61a1f638dd97774/aspnetcore-runtime-3.1.14-win-x86.zip
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/bdc70151-74f7-427c-a368-716d5f1840c5/6186889f6c784bae224eb15fb94c45fe/dotnet-hosting-3.1.14-win.exe
+
+[//]: # ( SDK 3.1.114 )
+[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/09c1545d-dd80-4629-ad2d-90a69723cb0b/06fd6210be9220099d4a506c0323c7c1/dotnet-sdk-3.1.114-linux-arm.tar.gz
+[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/99d10374-6d9f-4f7d-b79c-c7de5530a082/17105b38223a2bdb340775162dc96e65/dotnet-sdk-3.1.114-linux-arm64.tar.gz
+[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/126ebec4-f57b-4f50-b359-471e74b4f948/92d88be97072597785268ed552858738/dotnet-sdk-3.1.114-linux-musl-x64.tar.gz
+[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/79c30043-e62b-49e5-ba42-0aea2af1499a/f853a4f12fb4376532826272cdbbdd66/dotnet-sdk-3.1.114-linux-x64.tar.gz
+[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/181bacde-297f-4d45-97a4-4d8929779e4e/6a20a4e8a2911322399b56f1695bbdc6/dotnet-sdk-3.1.114-osx-x64.pkg
+[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6ccca972-2444-4a2d-b978-3ba5a6a92ca0/8d6f121bebded1c2cf67e73f3552092a/dotnet-sdk-3.1.114-osx-x64.tar.gz
+[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/9ebeb16a-027b-441f-adfb-bce11ce5e66d/81ea90c02a162bec28cb09bb677de78e/dotnet-sdk-3.1.114-win-arm.zip
+[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/262179ed-c1a9-4336-9012-5a0624a939f5/696cf25414663da0aa5d2bb1f7960ae9/dotnet-sdk-3.1.114-win-x64.exe
+[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/de16b12a-5595-4d29-bc05-0781a10c75ed/d6115eb55cedf6f34c6d374cdbdfd860/dotnet-sdk-3.1.114-win-x64.zip
+[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/ecb4ff96-9283-4df5-9bf0-39b93d0b9377/7d207e4e57d258f4dff4aac4410c7d6c/dotnet-sdk-3.1.114-win-x86.exe
+[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/87fed692-05b3-4b00-bd10-17a97678ba87/ff89f6e7a353f96ad37d30e81b3cd46a/dotnet-sdk-3.1.114-win-x86.zip
diff --git a/release-notes/3.1/3.1.14/3.1.408-download.md b/release-notes/3.1/3.1.14/3.1.408-download.md
new file mode 100644
index 00000000..50666de6
--- /dev/null
+++ b/release-notes/3.1/3.1.14/3.1.408-download.md
@@ -0,0 +1,170 @@
+# .NET Core 3.1.408 - April 13, 2021
+
+This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
+
+* .NET Core SDK 3.1.408
+* .NET Core Runtime 3.1.14
+* ASP.NET Core 3.1.14
+
+See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/3.1/3.1.14/3.1.14.md) for details about what is included in this update.
+
+
+## Downloads
+
+| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime | Windows Desktop Runtime |
+| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |:-----------------: |
+| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [ARM][dotnet-sdk-win-arm.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [ARM][aspnetcore-runtime-win-arm.zip] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] |
+| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup> | - |
+| Linux | [Snap Install][snap-install] | [x64][dotnet-sdk-linux-x64.tar.gz] \| [ARM][dotnet-sdk-linux-arm.tar.gz] \| [ARM64][dotnet-sdk-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] \| [ARM64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [ARM64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] \| [ARM64 Alpine][aspnetcore-runtime-linux-musl-arm64.tar.gz] | - |
+| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] |
+
+</br>
+1. Includes the .NET Core and ASP.NET Core Runtimes
+</br>2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Core runtime.
+
+## Visual Studio Compatibility
+
+**Visual Studio compatibility:** .NET Core 3.1 requires Visual Studio 2019 16.4 or above to take full advantage of all its features. .NET Core 3.1 won't work properly in earlier versions of Visual Studio. See the following table to select the correct download.
+
+| OS | Development Environment | .NET Core SDK |
+| :-- | :-- | :--: |
+| Windows | Visual Studio 2019 version 16.6 | [3.1.408](#downloads) |
+| Windows | Visual Studio 2019 version 16.4 | [3.1.114](3.1.14.md) |
+| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
+
+
+## Docker
+
+The [.NET Core Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md) show various ways to use .NET and Docker together.
+
+## 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/main/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 |
+
+Note: .NET 3.1 is available in the default Fedora 33+ packages feeds. Before using the default Fedora package feed, please make sure to remove any packages.microsoft.com registration first.
+
+## 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/main/Documentation/linux-prereqs.md) document.
+
+```bash
+mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
+export PATH=$PATH:$HOME/dotnet
+```
+
+## .NET Core Runtime-only installation
+
+If only the .NET Core Runtime is needed, install `dotnet-runtime-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
+
+## Windows Server Hosting
+
+If you are looking to host stand-alone apps on Servers, the following installer can be used on Windows systems.
+
+### Windows
+
+You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
+
+* [dotnet-hosting-3.1.14-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/main/release-notes/3.1/3.1.14/3.1.408-download.md
+[snap-install]: 3.1.14-install-instructions.md
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.14-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.14-sha.txt
+
+[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
+
+
+[//]: # ( Runtime 3.1.14)
+[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b094bab3-c504-404b-9524-b191f7deaad3/42eb57c4ed80bf99336cb8ea99105c7b/dotnet-runtime-3.1.14-linux-arm.tar.gz
+[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c6c4000d-5156-4526-b39e-e8fc67594e1b/dc652a3170cab422a1860b63ee83a25b/dotnet-runtime-3.1.14-linux-arm64.tar.gz
+[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7ea5a67d-c13f-4da6-8615-81033db8c143/6ce1efafbe3859a9e9863795a30fe7a2/dotnet-runtime-3.1.14-linux-musl-arm64.tar.gz
+[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e7f88aae-a10e-4b49-8ccd-31f2df82cf3f/35fb27716a3b7543ef2889f0e4c19949/dotnet-runtime-3.1.14-linux-musl-x64.tar.gz
+[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e5f17fa-fa56-40bc-bf3d-fd6abc91d0ad/08bd80f3751c0ac602dd41dc2534265e/dotnet-runtime-3.1.14-linux-x64.tar.gz
+[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/61df6a9d-3026-41f9-88e3-8bc9eded713d/6a46352bc4a98d208350d65e0a02bd3a/dotnet-runtime-3.1.14-osx-x64.pkg
+[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3423c7df-2daa-4188-8a13-646ae39f9d3f/86ed48857b28ce85cdc9a8699489aa71/dotnet-runtime-3.1.14-osx-x64.tar.gz
+[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/b05ae762-0720-4d51-80d5-76d6e1c3d212/c00f5949dcb80ba6b923d3b318960d3a/dotnet-runtime-3.1.14-win-arm.zip
+[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/56c3a951-9e5c-437d-a8da-80d263a62cc0/9681c2ff2f0e98f93976289e5ee7f53f/dotnet-runtime-3.1.14-win-x64.exe
+[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d88fda36-5e76-447e-8ed4-c3bd4151663c/c2d1485326cdeaab2168ee1d0ced1e0a/dotnet-runtime-3.1.14-win-x64.zip
+[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/56faca83-d1b3-4e1e-b203-3799c9166e84/707d7503ef4e4254f83f4030c60e8501/dotnet-runtime-3.1.14-win-x86.exe
+[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/7859793b-fc78-474a-8e50-cf037ead0fec/d5cf5dbe06bb0f078f9329d4ee63ad91/dotnet-runtime-3.1.14-win-x86.zip
+
+[//]: # ( WindowsDesktop 3.1.14)
+[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/88437980-f813-4a01-865c-f992ad4909bb/9a936984781f6ce3526ffc946267e0ea/windowsdesktop-runtime-3.1.14-win-x64.exe
+[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/f449f435-25d3-4d5c-ad14-0c84f5131dea/a597530464689595a430407e440787c4/windowsdesktop-runtime-3.1.14-win-x86.exe
+
+[//]: # ( ASP 3.1.14)
+[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a2439002-1f01-40d3-bc03-93612f2a25b5/2bd289060d44b428baa027ba0e8be762/aspnetcore-runtime-3.1.14-linux-arm.tar.gz
+[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/af1dcdff-acfe-4cbe-8a5b-aae0d6e63381/d3bd67c6fd14cd1187c268834189d5cc/aspnetcore-runtime-3.1.14-linux-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/afd4ecd1-5473-495e-9441-28790eecedd0/687a17a0534e548c5a9ab6f953eff1a1/aspnetcore-runtime-3.1.14-linux-musl-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/16f982a4-68a1-4655-bb82-79862198d441/2fcb7b40ff0f3c2f786390817ef469f1/aspnetcore-runtime-3.1.14-linux-musl-x64.tar.gz
+[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/516b337a-83f9-4946-b2a6-b2f686e09a76/d0e82549e890c5d852c461319ffd5b31/aspnetcore-runtime-3.1.14-linux-x64.tar.gz
+[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e37dd8f-af29-4b27-b495-e7a2fdd1ccb1/50219323ab8d29de6a7fef040646d8b9/aspnetcore-runtime-3.1.14-osx-x64.tar.gz
+[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/b5f5103a-6605-4757-81d7-dcc83d6d025a/d50274294e23cf9d1226680029191972/aspnetcore-runtime-3.1.14-win-arm.zip
+[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c060cd8b-e7b8-4e20-8195-b102053f515b/fc88cd9ee072881bde14fa29badb8884/aspnetcore-runtime-3.1.14-win-x64.exe
+[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/e4c43b9d-847a-4f92-aff3-ccae21822e43/cea2ed10f2fa8247a0cec513f6cc5e47/aspnetcore-runtime-3.1.14-win-x64.zip
+[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/871c3c8b-0fa3-4d95-bfb2-87e81000d975/e46edc7df65a9c88f354110b6c8a0ce8/aspnetcore-runtime-3.1.14-win-x86.exe
+[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/496f9fa7-1761-47f3-811b-18e546a0934c/05cc06e6d506ad92e61a1f638dd97774/aspnetcore-runtime-3.1.14-win-x86.zip
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/bdc70151-74f7-427c-a368-716d5f1840c5/6186889f6c784bae224eb15fb94c45fe/dotnet-hosting-3.1.14-win.exe
+
+[//]: # ( SDK 3.1.408 )
+[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/614983bc-78eb-4673-b1ff-fe876660ae21/03523848937d401293a7abdb56a6a0e2/dotnet-sdk-3.1.408-linux-arm.tar.gz
+[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8aca4221-54b6-421d-9be0-f25e4b799463/b70cca6f2acddc5361f97dc7f77a8ddf/dotnet-sdk-3.1.408-linux-arm64.tar.gz
+[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a3c3b86a-94c9-4f8a-b7a4-20f04768ba2d/9df1a0b06222a534a658ed4bd55e5cf8/dotnet-sdk-3.1.408-linux-musl-x64.tar.gz
+[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2054b462-43da-4c61-9e2d-d02167c71c40/a8be03062d9d770c8025c7de47ca366d/dotnet-sdk-3.1.408-linux-x64.tar.gz
+[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/99ff3282-3027-4bb8-8b96-8715d674f417/a483e65d765e3f475d009f233ddfec35/dotnet-sdk-3.1.408-osx-x64.pkg
+[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/04f8da37-7933-40ec-90b1-0403ec794705/e301346e0387597f87394e2f017abfbf/dotnet-sdk-3.1.408-osx-x64.tar.gz
+[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/25528562-077c-4c09-b361-5eaee2450483/61089123504487277e6d82b374d71751/dotnet-sdk-3.1.408-win-arm.zip
+[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/fa20039c-5871-4597-8a7b-f0553a12edcc/4fb1cce6214049fe639dd230a9265133/dotnet-sdk-3.1.408-win-x64.exe
+[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/2436ee79-1fbc-4f6a-94b4-e6fe6aafde13/abbd1ab0ca754adce35a6fd83f85dd2f/dotnet-sdk-3.1.408-win-x64.zip
+[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/d5821095-b8e2-47fd-b6a0-815beeefb0d4/f9b8a167f7e389b5e0207ada20caa1e9/dotnet-sdk-3.1.408-win-x86.exe
+[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/563a6709-e7e4-4c05-9184-4baadfa506fd/c4d75a119e83bc52c53611f258d3e729/dotnet-sdk-3.1.408-win-x86.zip
+
+
diff --git a/release-notes/3.1/README.md b/release-notes/3.1/README.md
index a8d91ec5..75bac0b0 100644
--- a/release-notes/3.1/README.md
+++ b/release-notes/3.1/README.md
@@ -13,6 +13,7 @@
| Date | Release |
| :-- | :-- |
+| 2021/04/13 | [3.1.14](./3.1.14/3.1.14.md) |
| 2021/03/09 | [3.1.13](./3.1.13/3.1.13.md) |
| 2021/02/09 | [3.1.12](./3.1.12/3.1.12.md) |
| 2021/01/12 | [3.1.11](./3.1.11/3.1.11.md) |
diff --git a/release-notes/3.1/releases.json b/release-notes/3.1/releases.json
index 010722b1..cded377b 100644
--- a/release-notes/3.1/releases.json
+++ b/release-notes/3.1/releases.json
@@ -1,14 +1,443 @@
{
"channel-version": "3.1",
- "latest-release": "3.1.13",
- "latest-release-date": "2021-03-09",
- "latest-runtime": "3.1.13",
- "latest-sdk": "3.1.407",
+ "latest-release": "3.1.14",
+ "latest-release-date": "2021-04-13",
+ "latest-runtime": "3.1.14",
+ "latest-sdk": "3.1.408",
"support-phase": "lts",
"eol-date": "2022-12-03",
"lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/",
"releases": [
{
+ "release-date": "2021-04-13",
+ "release-version": "3.1.14",
+ "security": false,
+ "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/3.1/3.1.14/3.1.14.md",
+ "runtime": {
+ "version": "3.1.14",
+ "version-display": "3.1.14",
+ "vs-version": "16.4.21, 16.7.14, 16.9.4",
+ "vs-mac-version": "8.9.6",
+ "files": [
+ {
+ "name": "dotnet-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/b094bab3-c504-404b-9524-b191f7deaad3/42eb57c4ed80bf99336cb8ea99105c7b/dotnet-runtime-3.1.14-linux-arm.tar.gz",
+ "hash": "800d7b84f9b76c842dda788e533bea31dd9274f16a28de3c12cf50487255c4ead73c815e3deb176a686433abec32ea82b010698bc92f8fed5bcd6009042da2ca"
+ },
+ {
+ "name": "dotnet-runtime-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c6c4000d-5156-4526-b39e-e8fc67594e1b/dc652a3170cab422a1860b63ee83a25b/dotnet-runtime-3.1.14-linux-arm64.tar.gz",
+ "hash": "46a263e018138913b753e96592929933e7a938438e15026b0618e0640f731047f94c367a6f50f4309f19e43a3a403e1557c71bc6f0d4cfb9dda75b45531f7cc2"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7ea5a67d-c13f-4da6-8615-81033db8c143/6ce1efafbe3859a9e9863795a30fe7a2/dotnet-runtime-3.1.14-linux-musl-arm64.tar.gz",
+ "hash": "25bd3f86a5326409649518d68028eac163e23a5d6c89be7e22d3acf513caf6ed129569e1243466005961e5d6c046a3415fbbc3f6f878852c7f3d94b440942e70"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/e7f88aae-a10e-4b49-8ccd-31f2df82cf3f/35fb27716a3b7543ef2889f0e4c19949/dotnet-runtime-3.1.14-linux-musl-x64.tar.gz",
+ "hash": "77856f6183ef7ee561fe8510e89148566972ae21e3915242ae4ac7ef987b1aa78cda09bb06fdae96cd03758975dc5eb0e8652dea79b96db327ac5de2a4d41961"
+ },
+ {
+ "name": "dotnet-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/4e5f17fa-fa56-40bc-bf3d-fd6abc91d0ad/08bd80f3751c0ac602dd41dc2534265e/dotnet-runtime-3.1.14-linux-x64.tar.gz",
+ "hash": "558144688ce1cb187d86e13d08713c86411bb6892d79005f402f560a19fa202946d60c11c8fc4d520d8bc21048df564e8b526d745d323fb8ab7c02f362654b8a"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/61df6a9d-3026-41f9-88e3-8bc9eded713d/6a46352bc4a98d208350d65e0a02bd3a/dotnet-runtime-3.1.14-osx-x64.pkg",
+ "hash": "dfc2fea5036c02d85344257d223b7ee8f38b07b55cd7ef48c409f01d569524a2ea745775e9f106dfbab586e9e1c7677dded68ca92373cd0826dea1ae689186fa"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/3423c7df-2daa-4188-8a13-646ae39f9d3f/86ed48857b28ce85cdc9a8699489aa71/dotnet-runtime-3.1.14-osx-x64.tar.gz",
+ "hash": "7cbeb9e844276aea2d0677d3d93cd5ef2c5d1fddab33891fcfe9dc97e1e3f098cfe3d987f03cbd26c1eaa037e236cb63c09cde6db4e510a1b412ae090c46cb7f"
+ },
+ {
+ "name": "dotnet-runtime-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/b05ae762-0720-4d51-80d5-76d6e1c3d212/c00f5949dcb80ba6b923d3b318960d3a/dotnet-runtime-3.1.14-win-arm.zip",
+ "hash": "09a2eaa6b1da5e1360b7a8b2b3af278489f4cd31ad5d379e32ce2db2250c520a928ce4f321731981ae37fea724d6fbd361b1d58b385fe831531c50950894f169"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/56c3a951-9e5c-437d-a8da-80d263a62cc0/9681c2ff2f0e98f93976289e5ee7f53f/dotnet-runtime-3.1.14-win-x64.exe",
+ "hash": "8cc07f37eab2465dd8d39f3eadd6a225d169f157981f801ac5e49c5639436799c429e1b64e06643b094ce164005d9137680ecb23f09db53811f556edaa0cd7e0"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d88fda36-5e76-447e-8ed4-c3bd4151663c/c2d1485326cdeaab2168ee1d0ced1e0a/dotnet-runtime-3.1.14-win-x64.zip",
+ "hash": "da9c2f22a0fe808027947ccc4f00238caf1cbbe9b636eb03b583b9ff986ae72338ea7326b75ae8c70d103aed4947f5dd9deccfd62fef0ce9836317867bd8def7"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/56faca83-d1b3-4e1e-b203-3799c9166e84/707d7503ef4e4254f83f4030c60e8501/dotnet-runtime-3.1.14-win-x86.exe",
+ "hash": "2fb7b20e9139aac7e146568ef8be5cc11fee0fa4c60fadbc09e2a6482cfca773cfeecfd203d1b0c5873b3bfb134d6b1cdf9f0e53f57b8d9f063a1ff92692dd2b"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7859793b-fc78-474a-8e50-cf037ead0fec/d5cf5dbe06bb0f078f9329d4ee63ad91/dotnet-runtime-3.1.14-win-x86.zip",
+ "hash": "df045eb5eb375cb08dca5b9424bb4e8ae649577e514a8591d832b4ae82b20388c24a7cf17e2ffc8e7747e186e0149c84ea54fb404ee92f17afbf70293fce46fc"
+ }
+ ]
+ },
+ "sdk": {
+ "version": "3.1.408",
+ "version-display": "3.1.408",
+ "runtime-version": "3.1.14",
+ "vs-version": "16.7.14",
+ "vs-mac-version": "8.9.6",
+ "vs-support": "Visual Studio 2019 (v16.7)",
+ "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)",
+ "csharp-version": "8.0",
+ "fsharp-version": "4.7",
+ "vb-version": "15.9",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/614983bc-78eb-4673-b1ff-fe876660ae21/03523848937d401293a7abdb56a6a0e2/dotnet-sdk-3.1.408-linux-arm.tar.gz",
+ "hash": "05335636d61067c647e15ced618ca3ba2460b5aaa76e1713281fda2995740ee49fe9d63ae71fa8ac51786653b2ea7da83f540cec742628f78201206e142de609"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/8aca4221-54b6-421d-9be0-f25e4b799463/b70cca6f2acddc5361f97dc7f77a8ddf/dotnet-sdk-3.1.408-linux-arm64.tar.gz",
+ "hash": "5d69cb6d5f088452a6cc3a3635d5f6102e0217f3d5fa680287be9e67c211b0720fe493f05280ab4d2c1a905afe78e8ba9cb28151453172e7fcf10b0d9553e2d2"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a3c3b86a-94c9-4f8a-b7a4-20f04768ba2d/9df1a0b06222a534a658ed4bd55e5cf8/dotnet-sdk-3.1.408-linux-musl-x64.tar.gz",
+ "hash": "959ee892de78a61e2b8a49d8af5f6c8fc8840be5f048949842a3e21e4be8cece9ed84d880f8d6d10325802098d5b010a362f6c52f30806155d3cd498244e1e8e"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/2054b462-43da-4c61-9e2d-d02167c71c40/a8be03062d9d770c8025c7de47ca366d/dotnet-sdk-3.1.408-linux-x64.tar.gz",
+ "hash": "5e2c378addf337c1b7e44583718672e0791235150630f0b613353c8597342dcaae3b7c412b17d5e6d93d87b5708a6ca2dc16ff6e6c5a2101b224d24e6a5c4e7a"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/99ff3282-3027-4bb8-8b96-8715d674f417/a483e65d765e3f475d009f233ddfec35/dotnet-sdk-3.1.408-osx-x64.pkg",
+ "hash": "e20a468e0ecf4d79009fa263641673ef1a3f48c1d63aee81e7f8cdc500886225919d9a919ffb1573642d66a146e19d7e050e3725df04212953d4b0d1668a3d91"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/04f8da37-7933-40ec-90b1-0403ec794705/e301346e0387597f87394e2f017abfbf/dotnet-sdk-3.1.408-osx-x64.tar.gz",
+ "hash": "57b29bdae41b93d00e237738e52245d44990c9ae4a284dc396a5c051b9dabb301dc528a90f9e70168512a0936b6fe48d34fd6d1d6c055023596de7ebba6f95c7"
+ },
+ {
+ "name": "dotnet-sdk-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/25528562-077c-4c09-b361-5eaee2450483/61089123504487277e6d82b374d71751/dotnet-sdk-3.1.408-win-arm.zip",
+ "hash": "218ab768dab0d755663b9a45fb1c67515db62326c2e73675349cc1534ccf2b0527b565083e9f5ac3d7fc941ab7bf5d51c02dfc35ecd8096197f0398ae6284a7c"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/fa20039c-5871-4597-8a7b-f0553a12edcc/4fb1cce6214049fe639dd230a9265133/dotnet-sdk-3.1.408-win-x64.exe",
+ "hash": "c8d3000f07735ee7cdf3bab402323bf96413d7afd7dadc5f1e92f02c184b67ca00f188e083f1d6bd8ae21b88a24f87d443088ecee28c33cd186f8ca9606fc816"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/2436ee79-1fbc-4f6a-94b4-e6fe6aafde13/abbd1ab0ca754adce35a6fd83f85dd2f/dotnet-sdk-3.1.408-win-x64.zip",
+ "hash": "0593f811a912973bb1dfe72ea75f13cf531257823533fe1a4e562baff7a94fc72d05ba655bd2d9ec6c88c0bf9bb0e14931d26ddcbb7786aa4b448ef1dbccedae"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d5821095-b8e2-47fd-b6a0-815beeefb0d4/f9b8a167f7e389b5e0207ada20caa1e9/dotnet-sdk-3.1.408-win-x86.exe",
+ "hash": "526edc3e2025459af340a6992f48625e41c4a6d4bdf75d7929c9de635bccfdd571d9deba0ddaec2235365131d0d1d1507178d53c82385f15cc360dfa51a94809"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/563a6709-e7e4-4c05-9184-4baadfa506fd/c4d75a119e83bc52c53611f258d3e729/dotnet-sdk-3.1.408-win-x86.zip",
+ "hash": "c77c28886cd660f305c13a8eebb45b16e4733d126055c565a0b5a8375ddad1a48748beb2cb758fc6981d4257ce913935511423d332f009116906c9ac5232ff16"
+ }
+ ]
+ },
+ "sdks": [
+ {
+ "version": "3.1.408",
+ "version-display": "3.1.408",
+ "runtime-version": "3.1.14",
+ "vs-version": "16.7.14",
+ "vs-mac-version": "8.9.6",
+ "vs-support": "Visual Studio 2019 (v16.7)",
+ "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)",
+ "csharp-version": "8.0",
+ "fsharp-version": "4.7",
+ "vb-version": "15.9",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/614983bc-78eb-4673-b1ff-fe876660ae21/03523848937d401293a7abdb56a6a0e2/dotnet-sdk-3.1.408-linux-arm.tar.gz",
+ "hash": "05335636d61067c647e15ced618ca3ba2460b5aaa76e1713281fda2995740ee49fe9d63ae71fa8ac51786653b2ea7da83f540cec742628f78201206e142de609"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/8aca4221-54b6-421d-9be0-f25e4b799463/b70cca6f2acddc5361f97dc7f77a8ddf/dotnet-sdk-3.1.408-linux-arm64.tar.gz",
+ "hash": "5d69cb6d5f088452a6cc3a3635d5f6102e0217f3d5fa680287be9e67c211b0720fe493f05280ab4d2c1a905afe78e8ba9cb28151453172e7fcf10b0d9553e2d2"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a3c3b86a-94c9-4f8a-b7a4-20f04768ba2d/9df1a0b06222a534a658ed4bd55e5cf8/dotnet-sdk-3.1.408-linux-musl-x64.tar.gz",
+ "hash": "959ee892de78a61e2b8a49d8af5f6c8fc8840be5f048949842a3e21e4be8cece9ed84d880f8d6d10325802098d5b010a362f6c52f30806155d3cd498244e1e8e"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/2054b462-43da-4c61-9e2d-d02167c71c40/a8be03062d9d770c8025c7de47ca366d/dotnet-sdk-3.1.408-linux-x64.tar.gz",
+ "hash": "5e2c378addf337c1b7e44583718672e0791235150630f0b613353c8597342dcaae3b7c412b17d5e6d93d87b5708a6ca2dc16ff6e6c5a2101b224d24e6a5c4e7a"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/99ff3282-3027-4bb8-8b96-8715d674f417/a483e65d765e3f475d009f233ddfec35/dotnet-sdk-3.1.408-osx-x64.pkg",
+ "hash": "e20a468e0ecf4d79009fa263641673ef1a3f48c1d63aee81e7f8cdc500886225919d9a919ffb1573642d66a146e19d7e050e3725df04212953d4b0d1668a3d91"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/04f8da37-7933-40ec-90b1-0403ec794705/e301346e0387597f87394e2f017abfbf/dotnet-sdk-3.1.408-osx-x64.tar.gz",
+ "hash": "57b29bdae41b93d00e237738e52245d44990c9ae4a284dc396a5c051b9dabb301dc528a90f9e70168512a0936b6fe48d34fd6d1d6c055023596de7ebba6f95c7"
+ },
+ {
+ "name": "dotnet-sdk-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/25528562-077c-4c09-b361-5eaee2450483/61089123504487277e6d82b374d71751/dotnet-sdk-3.1.408-win-arm.zip",
+ "hash": "218ab768dab0d755663b9a45fb1c67515db62326c2e73675349cc1534ccf2b0527b565083e9f5ac3d7fc941ab7bf5d51c02dfc35ecd8096197f0398ae6284a7c"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/fa20039c-5871-4597-8a7b-f0553a12edcc/4fb1cce6214049fe639dd230a9265133/dotnet-sdk-3.1.408-win-x64.exe",
+ "hash": "c8d3000f07735ee7cdf3bab402323bf96413d7afd7dadc5f1e92f02c184b67ca00f188e083f1d6bd8ae21b88a24f87d443088ecee28c33cd186f8ca9606fc816"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/2436ee79-1fbc-4f6a-94b4-e6fe6aafde13/abbd1ab0ca754adce35a6fd83f85dd2f/dotnet-sdk-3.1.408-win-x64.zip",
+ "hash": "0593f811a912973bb1dfe72ea75f13cf531257823533fe1a4e562baff7a94fc72d05ba655bd2d9ec6c88c0bf9bb0e14931d26ddcbb7786aa4b448ef1dbccedae"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d5821095-b8e2-47fd-b6a0-815beeefb0d4/f9b8a167f7e389b5e0207ada20caa1e9/dotnet-sdk-3.1.408-win-x86.exe",
+ "hash": "526edc3e2025459af340a6992f48625e41c4a6d4bdf75d7929c9de635bccfdd571d9deba0ddaec2235365131d0d1d1507178d53c82385f15cc360dfa51a94809"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/563a6709-e7e4-4c05-9184-4baadfa506fd/c4d75a119e83bc52c53611f258d3e729/dotnet-sdk-3.1.408-win-x86.zip",
+ "hash": "c77c28886cd660f305c13a8eebb45b16e4733d126055c565a0b5a8375ddad1a48748beb2cb758fc6981d4257ce913935511423d332f009116906c9ac5232ff16"
+ }
+ ]
+ },
+ {
+ "version": "3.1.114",
+ "version-display": "3.1.114",
+ "runtime-version": "3.1.14",
+ "vs-version": "16.4.21",
+ "vs-mac-version": "8.9.6",
+ "vs-support": "Visual Studio 2019 (v16.7)",
+ "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)",
+ "csharp-version": "8.0",
+ "fsharp-version": "4.7",
+ "vb-version": "15.9",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/09c1545d-dd80-4629-ad2d-90a69723cb0b/06fd6210be9220099d4a506c0323c7c1/dotnet-sdk-3.1.114-linux-arm.tar.gz",
+ "hash": "3357a7a3192583b8478364d684e3c93e8dea894628b6fa9cffaba6fc9daabf9c8aada4f5cc423a56041d01e95fc9e703109f3ba6b320dc52ea3055f555e932fa"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/99d10374-6d9f-4f7d-b79c-c7de5530a082/17105b38223a2bdb340775162dc96e65/dotnet-sdk-3.1.114-linux-arm64.tar.gz",
+ "hash": "822ce83c1fe1d5dd4cfbe7cde8cd68dc29db54ef673582e3c9e6423d252592317bb1a579d0f3598b4b967cd30ff015023400382f447a48ec1292649ba47cfadc"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/126ebec4-f57b-4f50-b359-471e74b4f948/92d88be97072597785268ed552858738/dotnet-sdk-3.1.114-linux-musl-x64.tar.gz",
+ "hash": "63b26f7b6a29a81e4d9a24a6a3c9f841f087213995191226191174bd00d7a5fe88c7384d3399f4d0017306106613456bcdab706b5458ddbbacdce993c23af70c"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/79c30043-e62b-49e5-ba42-0aea2af1499a/f853a4f12fb4376532826272cdbbdd66/dotnet-sdk-3.1.114-linux-x64.tar.gz",
+ "hash": "f730edf9ffe08302c276d62674d02db96bf9e59c3e55e2e729e15c76a7db9775be65caa9e6404a55c2392ff186638418c0a8f9b7204b5847867e6244c315f452"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/181bacde-297f-4d45-97a4-4d8929779e4e/6a20a4e8a2911322399b56f1695bbdc6/dotnet-sdk-3.1.114-osx-x64.pkg",
+ "hash": "7a4b5881988a2c6186051601b38571b55b28bdf07cfd9870795731de5d735d6ac505eae343c0f5c40f54838dc69a350631466083f69b3a3a31cce493f787ac77"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/6ccca972-2444-4a2d-b978-3ba5a6a92ca0/8d6f121bebded1c2cf67e73f3552092a/dotnet-sdk-3.1.114-osx-x64.tar.gz",
+ "hash": "0ff516d473e13188fa7c3706888236c5010b4a83ec7c4cfd3634d3aa0f4663e09334d1c3d25d3b5e92beceedf32581c9240ed6aa9c80ce0ce0a5f5336dc2407d"
+ },
+ {
+ "name": "dotnet-sdk-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/9ebeb16a-027b-441f-adfb-bce11ce5e66d/81ea90c02a162bec28cb09bb677de78e/dotnet-sdk-3.1.114-win-arm.zip",
+ "hash": "9ee0f7a56868ce453bfe1608af5be93d00fe8d953128ca94fe73b5ba34bf2b9f63b931ccc70aba3dcda8c83131873fe6bf7583c820c619987152442b784f3251"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/262179ed-c1a9-4336-9012-5a0624a939f5/696cf25414663da0aa5d2bb1f7960ae9/dotnet-sdk-3.1.114-win-x64.exe",
+ "hash": "11983b246df07ce64c26e3309c8f3f065ba3c97cc8b1d79bed01994f9b68eeeaf470c0f7fdb0301d7ab94ab9717a6f9d432219bd725d3ea43f8e82f251231dd0"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/de16b12a-5595-4d29-bc05-0781a10c75ed/d6115eb55cedf6f34c6d374cdbdfd860/dotnet-sdk-3.1.114-win-x64.zip",
+ "hash": "690d83691df6968c2ef7ca20dea5a599ece42713672ee6bba7e283faa86aafb9602aaa31584b416644c859316749e483e326a62f84b2f53060042479de93b2e6"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/ecb4ff96-9283-4df5-9bf0-39b93d0b9377/7d207e4e57d258f4dff4aac4410c7d6c/dotnet-sdk-3.1.114-win-x86.exe",
+ "hash": "7a704454b4ea0ddf0e1dac078a7b2fa93df48dba161743932befd625b71347e5add85f811f50ddd8b2b2acb6b9b83c97f141a371bcc3e1d8fe5ea3bfaf6ecc8e"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/87fed692-05b3-4b00-bd10-17a97678ba87/ff89f6e7a353f96ad37d30e81b3cd46a/dotnet-sdk-3.1.114-win-x86.zip",
+ "hash": "c5ae8a7186afbcd9e347092baee0bfdd527130fed2ad0752834eb168320a35a8bc451422983d540038c9395b24a629b3fbf8cac6086d7883740c23fe47821571"
+ }
+ ]
+ }
+ ],
+ "aspnetcore-runtime": {
+ "version": "3.1.14",
+ "version-display": "3.1.14",
+ "version-aspnetcoremodule": [
+ "13.1.21075.14"
+ ],
+ "vs-version": "16.2.21, 16.7.14",
+ "files": [
+ {
+ "name": "aspnetcore-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a2439002-1f01-40d3-bc03-93612f2a25b5/2bd289060d44b428baa027ba0e8be762/aspnetcore-runtime-3.1.14-linux-arm.tar.gz",
+ "hash": "86507136494d16e83833c2fb0bed6afdf4b901c37c5057c94b3c35cf803cbf5a00d00ff54bbd2dea9b6bb81ec0860081cd911f61dd10f918de89bf697a1e7baa"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/af1dcdff-acfe-4cbe-8a5b-aae0d6e63381/d3bd67c6fd14cd1187c268834189d5cc/aspnetcore-runtime-3.1.14-linux-arm64.tar.gz",
+ "hash": "23ac00b88da24072d39c1d3ebfcea60fba9f0891961c9f9ac1f49f686f1089b9b7e0227440eee071bba98d887492b9dd6dc2c5e9ebdccd536d705425dc26efae"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/afd4ecd1-5473-495e-9441-28790eecedd0/687a17a0534e548c5a9ab6f953eff1a1/aspnetcore-runtime-3.1.14-linux-musl-arm64.tar.gz",
+ "hash": "f929112813acfafe7fed08dd801f770176ae3101ab45515e670fb9f779a9eec7f5dbfef98d8511c6a1fa23fbe5636fc053566ba9d213de0735197366c22916ed"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/16f982a4-68a1-4655-bb82-79862198d441/2fcb7b40ff0f3c2f786390817ef469f1/aspnetcore-runtime-3.1.14-linux-musl-x64.tar.gz",
+ "hash": "bcdd66e48af4703764588e0b76ec1997f1a391d6e840a675af0155669f16c874d9b66b4906c25b717c6955ae2032d064b32e283205519f61d1b4b673db2b3421"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/516b337a-83f9-4946-b2a6-b2f686e09a76/d0e82549e890c5d852c461319ffd5b31/aspnetcore-runtime-3.1.14-linux-x64.tar.gz",
+ "hash": "c4b7ded8ee6dcc7983dfdb44af4eb9af3e4f225bf5bd57344213d049828438854d10e6605b97fef8a2ee49aadaf8f62267908022122daee1a3182ae2c4a2bffc"
+ },
+ {
+ "name": "aspnetcore-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/4e37dd8f-af29-4b27-b495-e7a2fdd1ccb1/50219323ab8d29de6a7fef040646d8b9/aspnetcore-runtime-3.1.14-osx-x64.tar.gz",
+ "hash": "90b8e1266bbc4020c71ff293364d76d5d04f0508b2ee88bcaad2998d5fe4b119928691d742ecdfd00d0237864a380b2c9f36764b0b8cca2c8e11fe51bf5f71fa"
+ },
+ {
+ "name": "aspnetcore-runtime-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/b5f5103a-6605-4757-81d7-dcc83d6d025a/d50274294e23cf9d1226680029191972/aspnetcore-runtime-3.1.14-win-arm.zip",
+ "hash": "f2b91b2ee4c4eb7b8599b84a72fe3d6aa3dc3cf7b5f58dc809f2a8fa003f0ba341bbea8f79a16bdc5ed8f356a019ce92c68f6c26f2744bb619ba45503417bfc5"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c060cd8b-e7b8-4e20-8195-b102053f515b/fc88cd9ee072881bde14fa29badb8884/aspnetcore-runtime-3.1.14-win-x64.exe",
+ "hash": "dd070c9ee2f1acae1c9946ac86765c6677059c8c9baa52962e2f658db9d20ae860ea5376ec79439890056e0d329d488bf41ef06bbb4f7e4fddb2eea888def26c"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/e4c43b9d-847a-4f92-aff3-ccae21822e43/cea2ed10f2fa8247a0cec513f6cc5e47/aspnetcore-runtime-3.1.14-win-x64.zip",
+ "hash": "1ed1130a7a933552b18d3c45c95e3525af623312be2ce4cfc4ee7cc935f92e56acd7b86453a01f82574c5f8874047b1c54df62cd3826782cf8acdca8cdabaa33"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/871c3c8b-0fa3-4d95-bfb2-87e81000d975/e46edc7df65a9c88f354110b6c8a0ce8/aspnetcore-runtime-3.1.14-win-x86.exe",
+ "hash": "e9f44ee8c7debcb5c011d78920f9c42d40225dc3e394371762e63d74181a2f56b5218433aba74c38e10ea1f5acc9f961ad6716e97020a72d96f5ebae59bb06f5"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/496f9fa7-1761-47f3-811b-18e546a0934c/05cc06e6d506ad92e61a1f638dd97774/aspnetcore-runtime-3.1.14-win-x86.zip",
+ "hash": "b630d7a7ced963f10fe959068078f65eb20f0b09cc025ee6291f0ed9d6a218edc3a84ccc5bb53149b22f8909387355e5a21af74d09bff671f6d69deb44e93584"
+ },
+ {
+ "name": "dotnet-hosting-win.exe",
+ "rid": "",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/bdc70151-74f7-427c-a368-716d5f1840c5/6186889f6c784bae224eb15fb94c45fe/dotnet-hosting-3.1.14-win.exe",
+ "hash": "488e6157f17fb9e4fca8210fa23eab305e765626dbf29882d2da8f15fc7599f8c26c8ce365f41d05053e0fecc53c3a5fac758024eb4b2ded42208c4bac4fef15",
+ "akams": "https://aka.ms/dotnetcore-3-1-windowshosting"
+ }
+ ]
+ },
+ "windowsdesktop": {
+ "version": "3.1.14",
+ "version-display": "3.1.14",
+ "files": [
+ {
+ "name": "windowsdesktop-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/88437980-f813-4a01-865c-f992ad4909bb/9a936984781f6ce3526ffc946267e0ea/windowsdesktop-runtime-3.1.14-win-x64.exe",
+ "hash": "1bfdf8bebaee7e682fbdcdad1288a8fca6ac43de3c734e0c487e65d035cbfeae58d0174e9dc931a06712d3b7dac9596b9559915fd09477feb7416c2a04a316aa"
+ },
+ {
+ "name": "windowsdesktop-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f449f435-25d3-4d5c-ad14-0c84f5131dea/a597530464689595a430407e440787c4/windowsdesktop-runtime-3.1.14-win-x86.exe",
+ "hash": "6cab47daa5ab28e1d6cf5da87c52173ccd97aceae45d7201ab8792ba0d5006d734b00ecf36b9fc623a24de1db370e9f2e4b4a62e1d37fa410ab784b8cfa2b1b9"
+ }
+ ]
+ }
+ },
+ {
"release-date": "2021-03-09",
"release-version": "3.1.13",
"security": true,
@@ -106,7 +535,7 @@
"vs-version": "16.7.13",
"vs-mac-version": "8.9.1",
"vs-support": "Visual Studio 2019 (v16.7)",
- "vs-mac-support": "Visual Studio 2019 for Mac (v8.9.1)",
+ "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
@@ -187,7 +616,7 @@
"vs-version": "16.7.13",
"vs-mac-version": "8.9.1",
"vs-support": "Visual Studio 2019 (v16.7)",
- "vs-mac-support": "Visual Studio 2019 for Mac (v8.9.1)",
+ "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
diff --git a/release-notes/README.md b/release-notes/README.md
index bd060f18..fa427029 100644
--- a/release-notes/README.md
+++ b/release-notes/README.md
@@ -6,15 +6,15 @@ The following [.NET releases](../releases.md) are currently supported:
| :-- | :-- | :-- | :-- | :-- |
| [.NET 6](6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-3/) | [Preview][policies] | [6.0 Preview 3][6.0 Preview 3] | November, 2024 |
| [.NET 5](5.0/README.md) | [November 10, 2020](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | [Current][policies] | [5.0.5][5.0.5] | February, 2022 |
-| [.NET Core 3.1](3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.13][3.1.13] | December 3, 2022 |
-| [.NET Core 2.1](2.1/README.md) | [May 30, 2018](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-1/) | [LTS][policies] | [2.1.26][2.1.26] | August 21, 2021 |
+| [.NET Core 3.1](3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.14][3.1.14] | December 3, 2022 |
+| [.NET Core 2.1](2.1/README.md) | [May 30, 2018](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-1/) | [LTS][policies] | [2.1.27][2.1.27] | August 21, 2021 |
You can find release notes for all releases, including out-of-support releases, in the [release-notes](.) directory.
[6.0 Preview 3]: 6.0/preview/6.0.0-preview.3.md
[5.0.5]: 5.0/5.0.5/5.0.5.md
-[3.1.13]: 3.1/3.1.13/3.1.13.md
-[2.1.26]: 2.1/2.1.26/2.1.26.md
+[3.1.14]: 3.1/3.1.14/3.1.14.md
+[2.1.27]: 2.1/2.1.27/2.1.27.md
## Release Information
diff --git a/release-notes/releases-index.json b/release-notes/releases-index.json
index e92b68a2..be218ca3 100644
--- a/release-notes/releases-index.json
+++ b/release-notes/releases-index.json
@@ -25,11 +25,11 @@
},
{
"channel-version": "3.1",
- "latest-release": "3.1.13",
- "latest-release-date": "2021-03-09",
- "security": true,
- "latest-runtime": "3.1.13",
- "latest-sdk": "3.1.407",
+ "latest-release": "3.1.14",
+ "latest-release-date": "2021-04-13",
+ "security": false,
+ "latest-runtime": "3.1.14",
+ "latest-sdk": "3.1.408",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2022-12-03",
@@ -49,11 +49,11 @@
},
{
"channel-version": "2.1",
- "latest-release": "2.1.26",
- "latest-release-date": "2021-03-09",
- "security": true,
- "latest-runtime": "2.1.26",
- "latest-sdk": "2.1.814",
+ "latest-release": "2.1.27",
+ "latest-release-date": "2021-04-13",
+ "security": false,
+ "latest-runtime": "2.1.27",
+ "latest-sdk": "2.1.815",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2021-08-21",
diff --git a/releases.md b/releases.md
index 6d1e2c58..eb51bc37 100644
--- a/releases.md
+++ b/releases.md
@@ -13,13 +13,13 @@ The following table lists in-support .NET releases.
| :-- | :-- | :-- | :-- | :-- |
| [.NET 6](release-notes/6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-3/) | [Preview][policies] | [6.0 Preview 3][6.0 Preview 3] | November, 2024 |
| [.NET 5](release-notes/5.0/README.md) | [November 10, 2020](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | [Current][policies] | [5.0.5][5.0.5] | February, 2022 |
-| [.NET Core 3.1](release-notes/3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.13][3.1.13] | December 3, 2022 |
-| [.NET Core 2.1](release-notes/2.1/README.md) | [May 30, 2018](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-1/) | [LTS][policies] | [2.1.26][2.1.26] | [August 21, 2021](https://devblogs.microsoft.com/dotnet/net-core-2-1-will-reach-end-of-support-on-august-21-2021/) |
+| [.NET Core 3.1](release-notes/3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.14][3.1.14] | December 3, 2022 |
+| [.NET Core 2.1](release-notes/2.1/README.md) | [May 30, 2018](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-1/) | [LTS][policies] | [2.1.27][2.1.27] | [August 21, 2021](https://devblogs.microsoft.com/dotnet/net-core-2-1-will-reach-end-of-support-on-august-21-2021/) |
[6.0 Preview 3]: release-notes/6.0/preview/6.0.0-preview.3.md
[5.0.5]: release-notes/5.0/5.0.5/5.0.5.md
-[3.1.13]: release-notes/3.1/3.1.13/3.1.13.md
-[2.1.26]: release-notes/2.1/2.1.26/2.1.26.md
+[3.1.14]: release-notes/3.1/3.1.14/3.1.14.md
+[2.1.27]: release-notes/2.1/2.1.27/2.1.27.md
## End-of-life .NET versions