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>2020-04-23 19:47:37 +0300
committerGitHub <noreply@github.com>2020-04-23 19:47:37 +0300
commite880592aaf24629e7e941b435bf5476bc9b926ed (patch)
tree2099b0c0fc3fd4bd20e65d4ddc918e5ba20c543f
parent9755e25ee2938613cbbbf85244e166d764eb16cb (diff)
parent1680889fe963199cb8cf29eb7929629dc2a515d0 (diff)
Merge pull request #4606 from dotnet/netaprilv5.0.0-preview.3
Release artifacts for .NET 5 Preview 3
-rw-r--r--release-notes/5.0/README.md1
-rw-r--r--release-notes/5.0/preview/5.0.0-preview.3-install-instructions.md80
-rw-r--r--release-notes/5.0/preview/5.0.0-preview.3.md123
-rw-r--r--release-notes/5.0/releases.json361
-rw-r--r--release-notes/README.md2
-rw-r--r--release-notes/releases-index.json8
6 files changed, 566 insertions, 9 deletions
diff --git a/release-notes/5.0/README.md b/release-notes/5.0/README.md
index d94a18e3..ec1f7d0b 100644
--- a/release-notes/5.0/README.md
+++ b/release-notes/5.0/README.md
@@ -4,5 +4,6 @@ The following .NET 5 releases have been shipped. You must be on the latest patch
| Release Date | Description | Download |
| :-- | :-- | :--: |
+| 2020/04/23 | [5.0.0 Preview 3](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.3.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/5.0) |
| 2020/04/02 | [5.0.0 Preview 2](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.2.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/5.0) |
| 2020/03/16 | [5.0.0 Preview 1](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.1.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/5.0) |
diff --git a/release-notes/5.0/preview/5.0.0-preview.3-install-instructions.md b/release-notes/5.0/preview/5.0.0-preview.3-install-instructions.md
new file mode 100644
index 00000000..db5385c6
--- /dev/null
+++ b/release-notes/5.0/preview/5.0.0-preview.3-install-instructions.md
@@ -0,0 +1,80 @@
+# .NET 5.0.0 Preview 3
+
+.NET 5.0.0 Preview 3 comprises:
+
+* .NET Runtime 5.0.0-preview.3.20214.6
+* ASP.NET Core 5.0.0-preview.3.20215.14
+* .NET SDK 5.0.100-preview.3.20216.1
+
+See the [Release Notes][release-notes] for details about what is included in this update.
+
+## Docker
+
+The [.NET Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
+
+## Install .NET on Linux
+
+### Install using Snap
+
+Because of the isolated environment, using Snap is the preferred way to install and try .NET Previews on [Linux distributions that support Snap](https://docs.snapcraft.io/installing-snapd/6735).
+
+After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
+
+`sudo snap install dotnet-sdk --channel=5.0/beta --classic`
+
+When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
+
+`sudo snap alias dotnet-sdk.dotnet dotnet`
+
+**Note:** Some distributions require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
+
+### Install using deb/rpm packages
+
+Preview release installers are not available from the Microsoft package repositories. The steps below provide an easy way to install .NET 5 Preview 3 using your Distro package manager.
+
+**Note:** `curl` must be available on the system before running the following steps. Once you have confirmed that `curl` is available, complete the steps to download and install the .NET 5 Preview 3 SDK and Runtime.
+
+1. Create a directory to use for the download location and change into that directory. For example `mkdir $HOME/dotnet_install && cd $HOME/dotnet_install`
+2. Run `curl -H 'Cache-Control: no-cache' -L https://aka.ms/install-dotnet-preview -o install-dotnet-preview.sh`
+3. Run the script with `sudo bash install-dotnet-preview.sh`
+
+Here's what the script does.
+
+* Detects the distribution and version. If it's in the [5.0 Supported OS](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0-supported-os.md) list, the script will continue.
+* Determines if additional system dependencies or utilities are needed to successfully complete and install them. For example `tar` is used to unpack that installer packages.
+* Downloads the tar.gz containing the .NET preview installer packages for the detected distribution.
+* Downloads the system dependency installer, if needed.
+* Expands the tar.gz into ./dotnet_packages
+* Attempts to install the contents of ./dotnet_packages using `rpm` or `dpkg`, as appropriate, for the detected distribution.
+
+### Installation from a binary archive
+
+Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
+
+```bash
+mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
+export PATH=$PATH:$HOME/dotnet
+```
+
+## .NET Core Runtime-only installation
+
+If only the .NET Core Runtime is needed, install `dotnet-runtime-5.0` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-5.0` will install both the ASP Runtime and .NET Core Runtime.
+
+## Windows Server Hosting
+
+If you are looking to host stand-alone apps on Servers, the following installer can be used on Windows systems.
+
+### Windows
+
+You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
+
+* [dotnet-hosting-5.0.0-preview.3.exe][dotnet-hosting-win.exe]
+
+This will install the ASP.NET Core Module for IIS.
+
+[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
+[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
+[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.3.md
+
+
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/f84dffc7-f825-47d4-aad5-f3af1444ecc1/935d1397344d5179cf210787d6435c44/dotnet-hosting-5.0.0-preview.3.20215.14-win.exe
diff --git a/release-notes/5.0/preview/5.0.0-preview.3.md b/release-notes/5.0/preview/5.0.0-preview.3.md
new file mode 100644
index 00000000..56d398f0
--- /dev/null
+++ b/release-notes/5.0/preview/5.0.0-preview.3.md
@@ -0,0 +1,123 @@
+# .NET 5.0.0 Preview 3 - April 23, 2020
+
+.NET 5.0.0 Preview 3 is available for download and usage in your environment. This release includes .NET 5.0.0 Preview 3 and .NET SDK 5.0.100 Preview 3.
+
+* [Downloads](https://dotnet.microsoft.com/download/dotnet-core/5.0)
+* [.NET 5.0 Preview 3 Blog][dotnet-blog]
+* [ASP.NET Core Blog][aspnet-blog]
+* [EF Core Blog][ef-blog]
+* [Changes in this release](#notable-changes-in-500-preview-3)
+* [Known issues](../5.0-known-issues.md)
+* [Visual Studio Compatibility](#visual-studio-compatibility)
+
+The .NET SDK 5.0.100 Preview 3 includes .NET 5.0.0 preview Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET SDK 5.0.100 preview, the following command will show that you're running version `5.0.100-preview.3.20216.6` of the tools.
+
+`dotnet --version`
+
+Your feedback is important and appreciated. We've created an issue at [dotnet/core #4607](https://github.com/dotnet/core/issues/4607) for your questions and comments.
+
+## Downloads
+
+| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
+| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
+| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [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> |
+| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup>
+| Linux | [Snap and Package Manager](5.0.0-preview.3-install-instructions.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [ARM][dotnet-sdk-linux-arm.tar.gz] \| [ARM64][dotnet-sdk-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [ARM64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz]<sup>1</sup> |
+| Checksums | [SDK][checksums-sdk] | - | [Runtime][checksums-runtime] | - | - |
+
+1. Includes the .NET Runtime and ASP.NET Core Runtime
+2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Runtime.
+
+## Visual Studio Compatibility
+
+**Visual Studio compatibility:** .NET 5 Preview 3 requires Visual Studio 2019 16.6 Preview to take full advantage of all its features. .NET 5 Preview 3 will not work properly in earlier versions of Visual Studio. Visit [Visual Studio Preview](https://visualstudio.microsoft.com/vs/preview/) to learn about VS previews.
+
+## Docker Images
+
+The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://blogs.msdn.microsoft.com/dotnet/2018/06/18/staying-up-to-date-with-net-container-images/).
+
+The following repos have been updated
+
+* [microsoft/dotnet](https://hub.docker.com/r/microsoft/dotnet)
+* [microsoft/dotnet-samples](https://hub.docker.com/r/microsoft/dotnet-samples)
+
+## Notable Changes in 5.0.0 Preview 3
+
+Here is list of some of the additions and updates we're excited to bring in Preview 3. See the [.NET][dotnet-blog] and [ASP.NET Core][aspnet-blog] blogs for additional details.
+
+* Runtime: [bugs][runtime_bugs] | [features][runtime_features]
+* ASP.NET Core: [bugs][aspnet_bugs] | [features][aspnet_features]
+* EntityFramework Core: [bugs][ef_bugs] | [features][ef_features]
+* .NET SDK [bugs][sdk_bugs]
+
+[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
+[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
+[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.3.md
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.0-preview.3-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.0-preview.3-sha.txt
+
+[linux-install]: https://www.microsoft.com/net/download/linux
+[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
+
+[dotnet-blog]: https://devblogs.microsoft.com/dotnet/announcing-net-5-0-preview-3/
+[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-5-preview-3/
+[ef-blog]: https://devblogs.microsoft.com/dotnet/announcing-entity-framework-core-5-0-preview-3/
+[ef_bugs]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.0-preview3+is%3Aclosed+label%3Atype-bug+is%3Aclosed
+[ef_features]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.0-preview3+is%3Aclosed+label%3Atype-enhancement+is%3Aclosed
+
+[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.0-preview3+label%3ADone+label%3Abug+is%3Aclosed
+[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.0-preview3+label%3ADone+label%3Aenhancement+is%3Aclosed
+[runtime_bugs]: https://github.com/dotnet/runtime/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A5.0+label%3Abug+is%3Aclosed
+[runtime_features]: https://github.com/dotnet/runtime/issues?q=is%3Aissue+milestone%3A5.0+label%3Aenhancement+is%3Aclosed
+
+[sdk_bugs]: https://github.com/dotnet/sdk/issues?q=is%3Aissue+is%3Aclosed+milestone%3A5.0.1xx+is%3Aclosed
+
+
+[//]: # ( Runtime 5.0.0-preview.3.20214.6)
+[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ca8f37c7-b5b2-450b-9469-b2941861df64/c722ff6e03c6c8f276faf391c7a8bae4/dotnet-runtime-5.0.0-preview.3.20214.6-linux-arm.tar.gz
+[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/56f1893f-d059-4825-ad3f-488859fb86d7/022976b07c9b8bfc9e650c95fc3b91be/dotnet-runtime-5.0.0-preview.3.20214.6-linux-arm64.tar.gz
+[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/858f5b65-8b2c-4ab1-9769-7fec5b38c8a1/44a1c0f6131e44f21425076ac295a41b/dotnet-runtime-5.0.0-preview.3.20214.6-linux-musl-arm64.tar.gz
+[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d5f23cce-759b-44c7-a456-a668d855b506/3dd2f633b763236a6bcb7d4bf63f1ec0/dotnet-runtime-5.0.0-preview.3.20214.6-linux-musl-x64.tar.gz
+[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/038fae85-6953-4518-adc6-55038ccf1c33/ccf2b3e7ba7ebe4da8b35c91eede7d6a/dotnet-runtime-5.0.0-preview.3.20214.6-linux-x64.tar.gz
+[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/de092180-43f4-4f89-b72c-a149aa86caf4/d603d2b043ae80556f1239946140471a/dotnet-runtime-5.0.0-preview.3.20214.6-osx-x64.pkg
+[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/933ae6ba-87e0-4d25-86b8-51ae5a7c709e/7849e0ef58f691fce783ed5e00001833/dotnet-runtime-5.0.0-preview.3.20214.6-osx-x64.tar.gz
+[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/a4deeca3-1c0c-40c5-8225-163f7ae7e5e5/a18293ed8f7329f99ffca364a9a86107/dotnet-runtime-5.0.0-preview.3.20214.6-win-arm.zip
+[dotnet-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/6a69b58d-7aa2-4b11-b679-762b0cc48427/cf23f3f6a78c36936a486d8d35a3e105/dotnet-runtime-5.0.0-preview.3.20214.6-win-arm64.zip
+[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/138d840f-5583-4f3d-bd79-05f0ff719cc9/5cfa84f529bf0227427beda07c74d7f7/dotnet-runtime-5.0.0-preview.3.20214.6-win-x64.exe
+[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/bbd5a03c-0a4e-4530-947f-eb4f44eb30f4/34f0574dbe0525a1073e4b7c83c340bb/dotnet-runtime-5.0.0-preview.3.20214.6-win-x64.zip
+[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/020c789e-510a-4c61-8614-18f48272cc89/097461f8baa43cc90d1507460cb75ed0/dotnet-runtime-5.0.0-preview.3.20214.6-win-x86.exe
+[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/8d0c54d3-f87b-42f8-904e-ac7a093f3a00/677c2cc203a451eb31cf8a461440c428/dotnet-runtime-5.0.0-preview.3.20214.6-win-x86.zip
+
+[//]: # ( WindowsDesktop 5.0.0-preview.3.20214.2)
+[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/3d928a84-9d22-44e2-b273-c0ba24d95018/7f168212264a949c0f3799cf450f0a14/windowsdesktop-runtime-5.0.0-preview.3.20214.2-win-x64.exe
+[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/39d51d83-8b69-4b8b-8fd2-8ea451fc743e/dd667944896af153df70036bd9323fef/windowsdesktop-runtime-5.0.0-preview.3.20214.2-win-x86.exe
+
+[//]: # ( ASP 5.0.0-preview.3.20215.14)
+[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ffbb2903-bd07-47e0-aa7d-9264c942cc38/9937a6b2cf97e16f878f4f3feb874479/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-arm.tar.gz
+[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0d7fdf8a-9163-4044-8626-a0e83bf2a4d9/a02834ce1a5f88021e0c764ccef582c1/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f2bbffd9-83c3-4ad0-aabd-0f6a54b720d4/a6b5f14b44aaf5abb6dea3ad9e88b7d5/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-musl-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/20473703-695e-45c5-b5f3-7d307d3e1aa5/e09ef05ba456f3968d5cff24ceff3358/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-musl-x64.tar.gz
+[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/76655cff-bf24-4445-a4af-9dbca1f00e86/4366686af0585397f290d27a042a1449/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-x64.tar.gz
+[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/dcf33838-366b-45c9-9db5-8ae6d59c1433/afa19a627e073b7f7e26c740ba56f352/aspnetcore-runtime-5.0.0-preview.3.20215.14-osx-x64.tar.gz
+[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/64048ca3-4b02-422a-a8aa-e088b7dd521c/b7007855d06ccba94111e8bccdd8e968/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-arm.zip
+[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/389a714a-d6e9-4e2d-a78c-04e45ed12e17/7cfbdf77fc2a0dc1dbdf2bd0985e5199/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x64.exe
+[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/7683a95e-1336-4f8b-a3a0-21f6dab44138/9248f166869d1906a6e37a80e81b7b16/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x64.zip
+[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/f309e08f-d2f6-46a4-92bf-09cc20475884/06fd23949d41b46fcb76e3ee60c3c4e2/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x86.exe
+[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/cf56d473-8868-41c2-b86f-14c7b0ae56ef/4c54b358bdb5f86ca77df4a3a79d0f59/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x86.zip
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/f84dffc7-f825-47d4-aad5-f3af1444ecc1/935d1397344d5179cf210787d6435c44/dotnet-hosting-5.0.0-preview.3.20215.14-win.exe
+
+[//]: # ( SDK 5.0.100-preview.3.20216.6 )
+[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/58276f20-1ff1-49e7-afbd-fcc6a20acf56/18aacff58da12a91e691036be7ef8063/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm.tar.gz
+[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/67d8e63e-753d-4900-997f-b332bb63b025/303b7ac855985d077056ef4552f4a4e9/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm64.tar.gz
+[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a9d2501d-4089-4255-9d5c-e94e1ec6532c/9abb1d2998427fa23701649a7b1b1513/dotnet-sdk-5.0.100-preview.3.20216.6-linux-musl-x64.tar.gz
+[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7ceba34e-5d50-4b23-b326-0a7d02b4decd/62dd73db9be67127a5645ef0efb0bba4/dotnet-sdk-5.0.100-preview.3.20216.6-linux-x64.tar.gz
+[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/3fa9a36e-907c-4d7a-a98a-e50ad0aa4990/ff63364b94e98687d5933c1b9a50a5d0/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.pkg
+[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4b8fe806-7a65-43e8-889d-215999715bbf/22005a4af0c34e257e652dbe39d3661f/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.tar.gz
+[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/585c7f99-1d47-4422-8e74-4beb2809e9c7/531e64c80bfa9937ad5a3e19f78847c0/dotnet-sdk-5.0.100-preview.3.20216.6-win-arm.zip
+[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/848d5ef2-81ca-43ff-81f7-6b6e9e38c186/e3462954d7cd7ac54e40d45b9d07d9c9/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.exe
+[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/5d93d786-1442-4479-868d-5d3b4175b160/b7629a4cd3f95cb0a2d7b202537fdc2d/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.zip
+[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/ed38b46c-2373-4e81-aab9-18a7f727685e/018f9be726039087d1654b055c2eb641/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.exe
+[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/be4d30a2-9cb9-43d0-b5a7-b6ba63d77bbe/f77ee9cd22084283dd23762b23996db8/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.zip
+
+[//]: # ( Symbols )
diff --git a/release-notes/5.0/releases.json b/release-notes/5.0/releases.json
index 3d1599a8..a24bdbe4 100644
--- a/release-notes/5.0/releases.json
+++ b/release-notes/5.0/releases.json
@@ -1,13 +1,366 @@
{
"channel-version": "5.0",
- "latest-release": "5.0.0-preview.2",
- "latest-release-date": "2020-04-02",
- "latest-runtime": "5.0.0-preview.2.20160.6",
- "latest-sdk": "5.0.100-preview.2.20176.6",
+ "latest-release": "5.0.0-preview.3",
+ "latest-release-date": "2020-04-23",
+ "latest-runtime": "5.0.0-preview.3.20214.6",
+ "latest-sdk": "5.0.100-preview.3.20216.6",
"support-phase": "preview",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
+ "release-date": "2020-04-23",
+ "release-version": "5.0.0-preview.3",
+ "security": false,
+ "release-notes": "https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.3.md",
+ "runtime": {
+ "version": "5.0.0-preview.3.20214.6",
+ "version-display": "5.0.0-preview.3",
+ "vs-version": "",
+ "files": [
+ {
+ "name": "dotnet-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/ca8f37c7-b5b2-450b-9469-b2941861df64/c722ff6e03c6c8f276faf391c7a8bae4/dotnet-runtime-5.0.0-preview.3.20214.6-linux-arm.tar.gz",
+ "hash": "ebcb583f3900dad27555461a0fe2a871d047004d6feba1026d540d3887b3d9f116533d1f3247d90fa943a9d819e6bc78f084a248574ec33e6d57e2079b18b397"
+ },
+ {
+ "name": "dotnet-runtime-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/56f1893f-d059-4825-ad3f-488859fb86d7/022976b07c9b8bfc9e650c95fc3b91be/dotnet-runtime-5.0.0-preview.3.20214.6-linux-arm64.tar.gz",
+ "hash": "392a9550b50cd01b3a33ff67022dffc6827320a1036a923c513ff87a9a4166c85c4a93fbede1608db43cf3083916268aaf4e782842b7618b99d429ca0762862e"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/858f5b65-8b2c-4ab1-9769-7fec5b38c8a1/44a1c0f6131e44f21425076ac295a41b/dotnet-runtime-5.0.0-preview.3.20214.6-linux-musl-arm64.tar.gz",
+ "hash": "91f27c9d67ed88b54f0fe5869222fedd081ed89c227d2fadeebe48228f501b5bf36b98b84b9926eaad6d8a50bd44958e1fc30d0cce3ffb7d3deef6cf7a57e677"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d5f23cce-759b-44c7-a456-a668d855b506/3dd2f633b763236a6bcb7d4bf63f1ec0/dotnet-runtime-5.0.0-preview.3.20214.6-linux-musl-x64.tar.gz",
+ "hash": "bd6ff3556e4096842a582511beb216a91b2576c6b6b12ab668e581d610611ec682bf1c00181a330a0117a068883f043b51d54e8f3fe00a0f1bef49df74ac84d3"
+ },
+ {
+ "name": "dotnet-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/038fae85-6953-4518-adc6-55038ccf1c33/ccf2b3e7ba7ebe4da8b35c91eede7d6a/dotnet-runtime-5.0.0-preview.3.20214.6-linux-x64.tar.gz",
+ "hash": "459a5aab9dea6d27e15a55f8fdc4e44e6ed05b20c6d1bd9aba4fbc3b9176ffe79d9ae57b7757401e7c4ed0a11e483c6729b8a25f5af8dd6346dbb0fd025d0f2a"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/de092180-43f4-4f89-b72c-a149aa86caf4/d603d2b043ae80556f1239946140471a/dotnet-runtime-5.0.0-preview.3.20214.6-osx-x64.pkg",
+ "hash": "5b8bddfb1406974c5ad328f9689b2a692edefb821d743aa3dd5148ee6a53b93f21aae3d6f781a7a593f9ec3db86c746f72dfe5e48d7fb3299bf0cc782bd42a15"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/933ae6ba-87e0-4d25-86b8-51ae5a7c709e/7849e0ef58f691fce783ed5e00001833/dotnet-runtime-5.0.0-preview.3.20214.6-osx-x64.tar.gz",
+ "hash": "78a6fa0b9bae717c945e58ae04f30a64d015031f9a474e2dbf23e54625f615d55adf377d334b7fb9f78caaa6cab9a6722d78b66e44faf73878185c3e73864c7b"
+ },
+ {
+ "name": "dotnet-runtime-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a4deeca3-1c0c-40c5-8225-163f7ae7e5e5/a18293ed8f7329f99ffca364a9a86107/dotnet-runtime-5.0.0-preview.3.20214.6-win-arm.zip",
+ "hash": "fecd2c1bca639d608c435372f57c135fe5dccf8975a21657c5f8e8a54202c81d12a9206076626cb2fad348ac720bf6161571be22003ec5b9314c7735377e1186"
+ },
+ {
+ "name": "dotnet-runtime-win-arm64.zip",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/6a69b58d-7aa2-4b11-b679-762b0cc48427/cf23f3f6a78c36936a486d8d35a3e105/dotnet-runtime-5.0.0-preview.3.20214.6-win-arm64.zip",
+ "hash": "3e50ff8d24154e4140003fbd255f4f746995590bb8b19939025d795a5927e9ce5c9dce11ed51a94f2cb97faaf7724ae11876294c5273087211e3b2952075199d"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/138d840f-5583-4f3d-bd79-05f0ff719cc9/5cfa84f529bf0227427beda07c74d7f7/dotnet-runtime-5.0.0-preview.3.20214.6-win-x64.exe",
+ "hash": "7f9fd0452ef178f6df58e5de619dad7effbfd1985acc4fc6dd718bb26c228dd1df999af2482d80a925fd84e8f22f6f74a38f0d1c801c8417255abd766438d3c8"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/bbd5a03c-0a4e-4530-947f-eb4f44eb30f4/34f0574dbe0525a1073e4b7c83c340bb/dotnet-runtime-5.0.0-preview.3.20214.6-win-x64.zip",
+ "hash": "d7660d441063e6eb2a289e9953d9102742efc88d1de73ede25cce0df687b02b9db2b89e61423c5fa90902b2d001e1e81b3ebabaad69815049a2641ba7b36b6dd"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/020c789e-510a-4c61-8614-18f48272cc89/097461f8baa43cc90d1507460cb75ed0/dotnet-runtime-5.0.0-preview.3.20214.6-win-x86.exe",
+ "hash": "72d90cb5a1317e1a9f939f5341fc396368a99c528074d689cdcb6082a60323663ce59f4840f47c94641ce8184195135ca81f2ee6bcad83b34c601fc3b101f1a9"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/8d0c54d3-f87b-42f8-904e-ac7a093f3a00/677c2cc203a451eb31cf8a461440c428/dotnet-runtime-5.0.0-preview.3.20214.6-win-x86.zip",
+ "hash": "fdc8c090bf98f481e28d34f0ee0b61400e65f3ec1c1b56fb5d7105e0d500ead7e6afbd34cc0da7682ffcba2c9c5bf2137c9b212543a4688a28de593878924aaa"
+ }
+ ]
+ },
+ "sdk": {
+ "version": "5.0.100-preview.3.20216.6",
+ "version-display": "5.0.100-preview.3",
+ "runtime-version": "5.0.0-preview.3.20214.6",
+ "vs-version": "",
+ "vs-support": "Visual Studio 2019 (v16.6 - latest preview)",
+ "csharp-version": "8.0",
+ "fsharp-version": "5.0-preview",
+ "vb-version": "15.5",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/58276f20-1ff1-49e7-afbd-fcc6a20acf56/18aacff58da12a91e691036be7ef8063/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm.tar.gz",
+ "hash": "608c204bced8e6c6d315c0e1f418b7c7b9bc794a2c2eb70e1bd55f0ffec5782a1006175f1a50f23e2cd2d004fb22a5bfea61dd7d0f573c2352c71e322163b02b"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/67d8e63e-753d-4900-997f-b332bb63b025/303b7ac855985d077056ef4552f4a4e9/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm64.tar.gz",
+ "hash": "595ed5608ef0c7ba1cae7298ea540b9c165f135afc7126b46e3263de3753f8da6edd6459b5c4a8ec5edb5b00964c5228a2d070cb9b037106260d5b4a9bf8962b"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a9d2501d-4089-4255-9d5c-e94e1ec6532c/9abb1d2998427fa23701649a7b1b1513/dotnet-sdk-5.0.100-preview.3.20216.6-linux-musl-x64.tar.gz",
+ "hash": "4466be190e90ffd85b4dd0a2abc5cacad188ea8f29d7019a2915f98b281a06840a1636f464e6a4a4f871399ca7e1fe00f937cdaa1dd11a27753b606c76c28bdc"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7ceba34e-5d50-4b23-b326-0a7d02b4decd/62dd73db9be67127a5645ef0efb0bba4/dotnet-sdk-5.0.100-preview.3.20216.6-linux-x64.tar.gz",
+ "hash": "0ee4a4f3eb082dee321ae4fbd61c3d425225dfe3c0947108bbb2df9f3644e0eeebd0fd4db237cf6b06aa56b0a7ca10eb45c481558ffe4e7422e7e7c4f7369804"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/3fa9a36e-907c-4d7a-a98a-e50ad0aa4990/ff63364b94e98687d5933c1b9a50a5d0/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.pkg",
+ "hash": "78cc44d2af20e7278d5cd5dd11ca8cc957c225023555f060e2e54d11a3b5add2c2d9c8012552d45aa27eafcc20c10579fb15180e7c906b1382c583abb4fe2316"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/4b8fe806-7a65-43e8-889d-215999715bbf/22005a4af0c34e257e652dbe39d3661f/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.tar.gz",
+ "hash": "341462f073f3642291a65fea8e7af98655aababb7b5c6e0574b7d0e16ab38f20f4bf84cbac24120f1bc22df12e426c4dec5d5353a3f69f748d4f68215dcb081b"
+ },
+ {
+ "name": "dotnet-sdk-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/585c7f99-1d47-4422-8e74-4beb2809e9c7/531e64c80bfa9937ad5a3e19f78847c0/dotnet-sdk-5.0.100-preview.3.20216.6-win-arm.zip",
+ "hash": "4a205f6f48e2898151661455ebee7dcf3e70ea85421503e4c5bc10809c98af136515c66759e3a0aa26c015fbacc9f9f051d323200e627f54f6e380d9916c55d1"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/848d5ef2-81ca-43ff-81f7-6b6e9e38c186/e3462954d7cd7ac54e40d45b9d07d9c9/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.exe",
+ "hash": "ab652850ca80fea4491888c114802fdfd37715805fd297b842dd087828119b17c332adc388c2321de5cb9dd5f091f2fa22ac2c46e76bc33ee0dd377c8a5f1415"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/5d93d786-1442-4479-868d-5d3b4175b160/b7629a4cd3f95cb0a2d7b202537fdc2d/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.zip",
+ "hash": "f9268b2007e5f7df5048b3e9e3f1edd5dc63d5aa3431b497285cf5c5c90dca93dcc247b3b6eef5966671431d0f11419584ff25c4a8c0b9faf210df61bf8553f6"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/ed38b46c-2373-4e81-aab9-18a7f727685e/018f9be726039087d1654b055c2eb641/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.exe",
+ "hash": "7f52de73342dae67ac09d362b87087d2dc6de59e6470ab67065ee95da9d97dc8863cee62fa1d425814aa9ea622e16e02a49cb962295fdfa917e26b6846ea4f47"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/be4d30a2-9cb9-43d0-b5a7-b6ba63d77bbe/f77ee9cd22084283dd23762b23996db8/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.zip",
+ "hash": "bf89fb973a9b37f7ffb6c37ed9ff513bb13f786f7225ab9eaac3ae16a43f90b249881926e1bf020fcdd7db94027586811b21002e374be3fed613424d7e06f328"
+ }
+ ]
+ },
+ "sdks": [
+ {
+ "version": "5.0.100-preview.3.20216.6",
+ "version-display": "5.0.100-preview.3",
+ "runtime-version": "5.0.0-preview.3.20214.6",
+ "vs-version": "",
+ "vs-support": "Visual Studio 2019 (v16.6 - latest preview)",
+ "csharp-version": "8.0",
+ "fsharp-version": "5.0-preview",
+ "vb-version": "15.5",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/58276f20-1ff1-49e7-afbd-fcc6a20acf56/18aacff58da12a91e691036be7ef8063/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm.tar.gz",
+ "hash": "608c204bced8e6c6d315c0e1f418b7c7b9bc794a2c2eb70e1bd55f0ffec5782a1006175f1a50f23e2cd2d004fb22a5bfea61dd7d0f573c2352c71e322163b02b"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/67d8e63e-753d-4900-997f-b332bb63b025/303b7ac855985d077056ef4552f4a4e9/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm64.tar.gz",
+ "hash": "595ed5608ef0c7ba1cae7298ea540b9c165f135afc7126b46e3263de3753f8da6edd6459b5c4a8ec5edb5b00964c5228a2d070cb9b037106260d5b4a9bf8962b"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a9d2501d-4089-4255-9d5c-e94e1ec6532c/9abb1d2998427fa23701649a7b1b1513/dotnet-sdk-5.0.100-preview.3.20216.6-linux-musl-x64.tar.gz",
+ "hash": "4466be190e90ffd85b4dd0a2abc5cacad188ea8f29d7019a2915f98b281a06840a1636f464e6a4a4f871399ca7e1fe00f937cdaa1dd11a27753b606c76c28bdc"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7ceba34e-5d50-4b23-b326-0a7d02b4decd/62dd73db9be67127a5645ef0efb0bba4/dotnet-sdk-5.0.100-preview.3.20216.6-linux-x64.tar.gz",
+ "hash": "0ee4a4f3eb082dee321ae4fbd61c3d425225dfe3c0947108bbb2df9f3644e0eeebd0fd4db237cf6b06aa56b0a7ca10eb45c481558ffe4e7422e7e7c4f7369804"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/3fa9a36e-907c-4d7a-a98a-e50ad0aa4990/ff63364b94e98687d5933c1b9a50a5d0/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.pkg",
+ "hash": "78cc44d2af20e7278d5cd5dd11ca8cc957c225023555f060e2e54d11a3b5add2c2d9c8012552d45aa27eafcc20c10579fb15180e7c906b1382c583abb4fe2316"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/4b8fe806-7a65-43e8-889d-215999715bbf/22005a4af0c34e257e652dbe39d3661f/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.tar.gz",
+ "hash": "341462f073f3642291a65fea8e7af98655aababb7b5c6e0574b7d0e16ab38f20f4bf84cbac24120f1bc22df12e426c4dec5d5353a3f69f748d4f68215dcb081b"
+ },
+ {
+ "name": "dotnet-sdk-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/585c7f99-1d47-4422-8e74-4beb2809e9c7/531e64c80bfa9937ad5a3e19f78847c0/dotnet-sdk-5.0.100-preview.3.20216.6-win-arm.zip",
+ "hash": "4a205f6f48e2898151661455ebee7dcf3e70ea85421503e4c5bc10809c98af136515c66759e3a0aa26c015fbacc9f9f051d323200e627f54f6e380d9916c55d1"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/848d5ef2-81ca-43ff-81f7-6b6e9e38c186/e3462954d7cd7ac54e40d45b9d07d9c9/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.exe",
+ "hash": "ab652850ca80fea4491888c114802fdfd37715805fd297b842dd087828119b17c332adc388c2321de5cb9dd5f091f2fa22ac2c46e76bc33ee0dd377c8a5f1415"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/5d93d786-1442-4479-868d-5d3b4175b160/b7629a4cd3f95cb0a2d7b202537fdc2d/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.zip",
+ "hash": "f9268b2007e5f7df5048b3e9e3f1edd5dc63d5aa3431b497285cf5c5c90dca93dcc247b3b6eef5966671431d0f11419584ff25c4a8c0b9faf210df61bf8553f6"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/ed38b46c-2373-4e81-aab9-18a7f727685e/018f9be726039087d1654b055c2eb641/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.exe",
+ "hash": "7f52de73342dae67ac09d362b87087d2dc6de59e6470ab67065ee95da9d97dc8863cee62fa1d425814aa9ea622e16e02a49cb962295fdfa917e26b6846ea4f47"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/be4d30a2-9cb9-43d0-b5a7-b6ba63d77bbe/f77ee9cd22084283dd23762b23996db8/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.zip",
+ "hash": "bf89fb973a9b37f7ffb6c37ed9ff513bb13f786f7225ab9eaac3ae16a43f90b249881926e1bf020fcdd7db94027586811b21002e374be3fed613424d7e06f328"
+ }
+ ]
+ }
+ ],
+ "aspnetcore-runtime": {
+ "version": "5.0.0-preview.3.20215.14",
+ "version-display": "5.0.0-preview.3",
+ "version-aspnetcoremodule": [
+ "15.0.20077.0"
+ ],
+ "vs-version": "",
+ "files": [
+ {
+ "name": "aspnetcore-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/ffbb2903-bd07-47e0-aa7d-9264c942cc38/9937a6b2cf97e16f878f4f3feb874479/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-arm.tar.gz",
+ "hash": "d81b656b357b16e9a4bfbf095c0641f56fe5276a0ce587ca8b31c4792f8b782aafc57d4cf97837901ff1dca8f6eaad462ba137967a6c2f36d90f277fbf4aa8c2"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/0d7fdf8a-9163-4044-8626-a0e83bf2a4d9/a02834ce1a5f88021e0c764ccef582c1/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-arm64.tar.gz",
+ "hash": "01e30fc2ee685e1f2bfcff9abd862d353796a25757cdc60598060dc84cbce8b057ba070626f0e96385c0a34d00f9e41861cfd12a782a9ea2a253c32c7bca9d5e"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f2bbffd9-83c3-4ad0-aabd-0f6a54b720d4/a6b5f14b44aaf5abb6dea3ad9e88b7d5/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-musl-arm64.tar.gz",
+ "hash": "35efa93b5dec1184510bcb1ab454770f577c163967933257bfce56be5596633f6873671350819044b737e4fd6f6ff19d5904164f496ad633068a39efe77070d3"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/20473703-695e-45c5-b5f3-7d307d3e1aa5/e09ef05ba456f3968d5cff24ceff3358/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-musl-x64.tar.gz",
+ "hash": "ff46d723137d1b60717027035ee597ae993bff17a43f88e00fb44e8f271c7267f1e639079cfe03a717b9e42baef84cacfb464b25791165f94573f504d8ce7b89"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/76655cff-bf24-4445-a4af-9dbca1f00e86/4366686af0585397f290d27a042a1449/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-x64.tar.gz",
+ "hash": "1839e36b03c7c1da497f8ee6f2b484591513742a8aae897281a4be17f22d1d7ca5e9d877e4b90ab6100136564efc41c47287ef9fa071441f7d2e203816e0f1b7"
+ },
+ {
+ "name": "aspnetcore-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/dcf33838-366b-45c9-9db5-8ae6d59c1433/afa19a627e073b7f7e26c740ba56f352/aspnetcore-runtime-5.0.0-preview.3.20215.14-osx-x64.tar.gz",
+ "hash": "d269cb1627a175e6d33486c4f8df8873b9af5a67d8f6794fba7b8bc320338bdd2e29872120e0a86ed5f5de081dc87a025d46c0c0b6393b92ee0ede127b061d5a"
+ },
+ {
+ "name": "aspnetcore-runtime-win-arm.zip",
+ "rid": "win-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/64048ca3-4b02-422a-a8aa-e088b7dd521c/b7007855d06ccba94111e8bccdd8e968/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-arm.zip",
+ "hash": "435bb0d625e8f64f5a6618431a47b29143970f6aee878f9ab7e832f343a15baa4e29e1bd5a5246d3604ac63e7b44404bbee76d5993264435ef20b32ddcf33040"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/389a714a-d6e9-4e2d-a78c-04e45ed12e17/7cfbdf77fc2a0dc1dbdf2bd0985e5199/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x64.exe",
+ "hash": "7f99511598257374de2f05c9eb2fc2ebfccee6bf1638408106f0ec15b6e8741ed614948f54ed63178d9c4a96439d5be30605a32effc7da1112fd56216efbaf65"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7683a95e-1336-4f8b-a3a0-21f6dab44138/9248f166869d1906a6e37a80e81b7b16/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x64.zip",
+ "hash": "d26caa3490f4a62921733a28a464f049fa812d94b19332c5c4106ac86b044e28a625ce5d966cdcb5ba3a4929845bb2cbf847f95714e4efa253dbc92d16d55128"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f309e08f-d2f6-46a4-92bf-09cc20475884/06fd23949d41b46fcb76e3ee60c3c4e2/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x86.exe",
+ "hash": "cfee7eb241919c56db6b099c768b2835274f4a42a866c79f5dc572c228fa0393e6b8bd0cfbe50f37fcc99bef6f65dec49fe49165ce5a1b4f5fc2c90b10fbba33"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/cf56d473-8868-41c2-b86f-14c7b0ae56ef/4c54b358bdb5f86ca77df4a3a79d0f59/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x86.zip",
+ "hash": "1e954e62fe4c64805a5b9b5c3ff1eaf2b5f707b93394da0fcee7f40cdf8425a9457fe8e00336d3eadd060faec5816906fe5df1d333634462659f07a546724af4"
+ },
+ {
+ "name": "dotnet-hosting-win.exe",
+ "rid": "",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f84dffc7-f825-47d4-aad5-f3af1444ecc1/935d1397344d5179cf210787d6435c44/dotnet-hosting-5.0.0-preview.3.20215.14-win.exe",
+ "hash": "460832918ab1ecb158f5c756e7c6eda468d0b997ec0467e946c6b64977485ab0470f54297164c6f182348eaac77b3b371382024f06f94bd3b26fd49cea5cd139"
+ }
+ ]
+ },
+ "windowsdesktop": {
+ "version": "5.0.0-preview.3.20214.2",
+ "version-display": "5.0.0-preview.3",
+ "files": [
+ {
+ "name": "windowsdesktop-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/3d928a84-9d22-44e2-b273-c0ba24d95018/7f168212264a949c0f3799cf450f0a14/windowsdesktop-runtime-5.0.0-preview.3.20214.2-win-x64.exe",
+ "hash": "131ceeae5b4b00baa572865c7402dfd5432a865bf493b46db61f196679d14847b64afee73cffeb3a7d19db5d3886921987d6b5080270ec4ff08dc64d29df9a15"
+ },
+ {
+ "name": "windowsdesktop-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/39d51d83-8b69-4b8b-8fd2-8ea451fc743e/dd667944896af153df70036bd9323fef/windowsdesktop-runtime-5.0.0-preview.3.20214.2-win-x86.exe",
+ "hash": "6fda214d9d80feec7867fa0d9285400fbc9fde0fc263ab2d00924a4f8386824adfb7be8dd7f6ef17a902a33cb8f68dae1a4486a089d101270eaa09950919653d"
+ }
+ ]
+ },
+ "symbols": {
+ "version": "5.0.0-preview.3.20214.6",
+ "files": []
+ }
+ },
+ {
"release-date": "2020-04-02",
"release-version": "5.0.0-preview.2",
"security": false,
diff --git a/release-notes/README.md b/release-notes/README.md
index d2d599f2..a1d8da39 100644
--- a/release-notes/README.md
+++ b/release-notes/README.md
@@ -6,7 +6,7 @@ The latest supported release is [.NET Core 3.1](3.1).
You can download the latest updates for .NET Core.
-* [.NET 5.0 Preview 2](5.0/preview/5.0.0-preview.2.md)
+* [.NET 5.0 Preview 3](5.0/preview/5.0.0-preview.3.md)
* [.NET Core 3.1.3](3.1/3.1.3/3.1.3.md)
* [.NET Core 3.0.3](3.0/3.0.3/3.0.3.md)
* [.NET Core 2.1.17](2.1/2.1.17/2.1.17.md)
diff --git a/release-notes/releases-index.json b/release-notes/releases-index.json
index 7d3690ae..365704d4 100644
--- a/release-notes/releases-index.json
+++ b/release-notes/releases-index.json
@@ -2,11 +2,11 @@
"releases-index": [
{
"channel-version": "5.0",
- "latest-release": "5.0.0-preview.2",
- "latest-release-date": "2020-04-02",
+ "latest-release": "5.0.0-preview.3",
+ "latest-release-date": "2020-04-23",
"security": false,
- "latest-runtime": "5.0.0-preview.2.20160.6",
- "latest-sdk": "5.0.100-preview.2.20176.6",
+ "latest-runtime": "5.0.0-preview.3.20214.6",
+ "latest-sdk": "5.0.100-preview.3.20216.6",
"product": ".NET",
"support-phase": "preview",
"eol-date": null,