Artifacts for December Release

This commit is contained in:
Rahul Bhandari 2020-12-08 09:18:48 -08:00
parent ebdb172176
commit c0ecbb51cc
8 changed files with 861 additions and 117 deletions

View file

@ -12,7 +12,7 @@ This table describes support type, supported patch version and end of support da
| Version | Release Date | Support Level | Supported Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
| [.NET 5.0](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | November 10, 2020 | Current | [5.0.0](https://dotnet.microsoft.com/download/dotnet-core/5.0) | 3 Months after .NET 6 is released |
| [.NET 5.0](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | November 10, 2020 | Current | [5.0.1](https://dotnet.microsoft.com/download/dotnet-core/5.0) | 3 Months after .NET 6 is released |
| [.NET Core 3.1](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | December 3, 2019 | LTS | [3.1.10](https://dotnet.microsoft.com/download/dotnet-core/3.1) | December 3, 2022 |
| [.NET Core 2.1](https://blogs.msdn.microsoft.com/dotnet/2018/05/30/announcing-net-core-2-1) | May 30, 2018 | LTS | [2.1.23](https://dotnet.microsoft.com/download/dotnet-core/2.1) | August 21, 2021 |

View file

@ -1,97 +1,13 @@
# .NET 5 Known Issues
# .NET 5.0 Known Issues
This document lists known issues for **.NET 5** which may be encountered during usage.
You may encounter the following known issues, which may include workarounds, mitigations or expected resolution timeframes.
## .NET Runtime
## GA
1. When reading from a NegotiateStream at EOF, the stream will throw rather than return 0 or -1. This will be fixed in 5.0.1. It is tracked by [dotnet/runtime/pr #43741](https://github.com/dotnet/runtime/pull/43741).
## ASP.NET Core Runtime
### RC1
#### Authentication using Identity Server does not work when applications are published as single file applications
*Problem:*
Applications that use Identity Server 4 will throw exceptions when published as a single file application. This includes applications generated from Blazor templates which include authentication for in-application, individual accounts.
*Workaround:*
Do not publish applications which include Identity Server as single file applications.
#### TcpListener throwing `SocketException` instead of `ObjectDisposedException`
*Problem:*
When calling `Stop` after `BeginAcceptSocket` or `BeginAcceptTcpClient` on a `TcpListener` instance, a subsequent `EndAcceptSocket` or `EndAcceptTcpClient` call will throw `SocketException` with `SocketError.OperationAborted` (995) instead of `ObjectDisposedException`:
https://github.com/dotnet/runtime/issues/41585
*Workaround:*
If you're using [APM](https://docs.microsoft.com/dotnet/standard/asynchronous-programming-patterns/asynchronous-programming-model-apm) Accept metods on `TcpClient`, change the catch block (temporarily), when updating to RC1:
```diff
try
{
Socket client = listener.EndAcceptSocket(ar);
}
catch (ObjectDisposedException ex)
{
// Original exception handler -- won't be invoked in RC1
HandleListenerStopped(listener);
}
+catch (SocketException ex) when (ex.SocketErrorCode == SocketError.OperationAborted)
+{
+ // This handler will be hit in RC1, but not in subsequent releases,
+ // so it could be removed starting from RC2.
+ HandleListenerStopped(listener);
+}
```
#### Blazor Virtualization component limitations
Issues resolved in 5.0 RC2 by https://github.com/dotnet/aspnetcore/pull/25260.
The Virtualization component is new in RC1 and there are some fixes we didn't fit in RC1, which make the component unusable for certain scenarios.
1. Item size calculations can be wrong by a subpixel amount, which accumulates and produces offsets in scrolling when the source list goes beyond several pages.
2. When items don't have @key, scrolling can get stuck in a loop.
## .NET SDK
### RC1
1. Libraries targeting net5-windows that were compiled with preview 8 will need to be recompiled. This is because they have an assembly-level `MinimumOSPlatformAttribute` defined, which was renamed to `SupportedOSPlatformAttribute` in RC1. Reflecting over the assembly with the old attribute can fail. For WPF projects, this can surface as a failure in the MarkupCompilePass1 target:
> C:\Program Files\dotnet\sdk\5.0.100-rc.1.20453.4\Sdks\Microsoft.NET.Sdk.WindowsDesktop\targets\Microsoft.WinFX.targets(240,9): error MC1000: Unknown build error, 'Could not find type 'System.Runtime.Versioning.MinimumOSPlatformAttribute' in assembly 'C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-rc.1.20452.14\ref\net5.0\System.Runtime.dll'.'
- MinimumOSPlatformAttribute was renamed to SupportedOSPlatformAttribute
- RemovedInOSPlatformAttribute was renamed to UnsupportedOSPlatformAttribute
- ObsoletedInOSPlatformAttribute was removed.
2. Resolved -- Warning icons in Dependencies node in Solution Explorer
- For projects targeting .NET 5 where there's a package downgrade error, warning icons won't be displayed on the error message's ancestor nodes (such as the package node, the "Packages" node, and the "Dependencies" node) in the Solution Explorer
3. Resolved -- Restore of F# project with TargetFramework*s* and /p:RestoreUseStaticGraphEvaluation=true will fail with NuGet.RestoreEx.targets(10,5): error : Invalid restore input. Invalid target framework 'unsupported'.
- Workaround: Add the following block to your fsproj file:
```xml
<PropertyGroup>
<InnerBuildProperty>TargetFramework</InnerBuildProperty>
<InnerBuildPropertyValues>TargetFrameworks</InnerBuildPropertyValues>
</PropertyGroup>
```
4. Resolved -- When launching Blazor apps from VS or initializing a debugging session in the browser, port 9300 must be open on the machine the Blazor app is running under.
### RC2
1. For Windows Application Packaging projects targeting net5.0, we recommend targeting the Windows SDK 19041. This Windows SDK is not installed by default in the Visual Studio installer options though is available and an Optional component.
- You might see build error `APPX3217`: `SDK folder containing 'UAP.props' for 'UAP 10.0.19041.0' could not be located.`
2. Dotnet tool pack does not support the new net5.0 framework alias. Please continue to target netcoreapp3.1 for now for WPF or Winforms dotnet tools. See https://github.com/dotnet/sdk/pull/13924
2. Resolved -- Dotnet tool pack does not support the new net5.0 framework alias. Please continue to target netcoreapp3.1 for now for WPF or Winforms dotnet tools. See https://github.com/dotnet/sdk/pull/13924
3. Resolved -- Publishing with ReadyToRunUseCrossgen2 fails with an `An assembly specified in the application dependencies manifest (crossgen2.deps.json) was not found` error.
### GA
1. New Angular templates created via the `dotnet new` CLI or the new project UI in VS may fail to build on the command line due to an issue with the `node-gyp` install. To workaround this issue, upgrade the version of the `node-sass` dependency in `ClientApp/package.json` to `5.0.0`.
2. When creating a new **C# desktop** application in Visual Studio 2019 version 16.8 (including Console App, Windows Forms App, or WPF App), the project will default to targeting the latest LTS SDK that is installed (e.g. .NET Core 3.1). To create a new .NET 5 project, you can either use the CLI, or create a new project in Visual Studio and immediately retarget to .NET 5 in the project properties. When you retarget from 3.1 to .NET 5.0, it is no longer necessary to append .WindowsDestkop to the SDK reference. Consider changing **Microsoft.NET.Sdk.WindowsDesktop** to just **Microsoft.NET.Sdk**. You can also modify this behavior by enabling the Visual Studio preview feature: "Show all .NET Core templates in the New Project dialog".
@ -99,11 +15,11 @@ The Virtualization component is new in RC1 and there are some fixes we didn't fi
3. Design time build failure and dependency node warning icons when targeting *netcoreapp2.1* and specifying a *RuntimeIdentifier* in the project file. This is the default for Service Fabric projects.
**Error experience**
`Project is targeting runtime 'win7-x64' but did not resolve any runtime-specific packages for the 'Microsoft.NETCore.App' package. This runtime may not be supported by .NET Core.`
**Workaround**
Add a *Directory.Build.Targets* file with the following content
```xml
@ -113,26 +29,13 @@ The Virtualization component is new in RC1 and there are some fixes we didn't fi
```
4. dotnet new -i for a template uses NuGet restore to download the template package and this requires a `TargetFramework`. The template engine defaults to `netcoreapp1.0` to restore the template. This will trigger warning NETSDK1138 as that target framework is no longer supported but has no negative affect on the template download.
## MSBuild
### RC2
In .NET 5.0 preview 7 through RC1, projects that target net5.0 define both NETCOREAPP3_1 and NET5_0 preprocessor symbols. The intent behind this behavior change was that starting with .NET 5.0, conditional compilation [symbols would be cumulative](https://github.com/dotnet/designs/blob/main/accepted/2020/net5/net5.md#preprocessor-symbols).
In .NET 5.0 RC2 and later, projects only define symbols for the target framework monikers (TFM) that it targets and not for any earlier versions.
Visit [MSBuild breaking change](https://docs.microsoft.com/dotnet/core/compatibility/msbuild#netcoreapp3_1-preprocessor-symbol-is-not-defined-when-targeting-net-5) for more details.
## Windows Forms
### RC1
* `ListView` redraws when images are added to its `ImageList`.
When adding a image to the `ImageList`, the entire contents of a `ListView` that is using that `ImageList` is redrawn. This causes it flicker and if there are enough items, it slows down the app.
* Changes at runtime to an instance of an `ImageList` which is already bound to a control (such as a `ListView` or a `TreeView`) won't be reflected in the control until the instance of the `ImageList` is re-assigned to the said control.
- Workaround: after changes to an instance of a `ImageList` unbind it from a control, and bind back:
The issue is expected to be fixed in 5.0.2.
```cs
imageList.Images.Add(image);
listView1.LargeImageList = null; // unbind
listView1.LargeImageList = imageList; // bind back
```
* If you assign a string that contains one or more '&' chars to a `ToolStripStatusLabel`, the string is displayed without '&' chars.
The issue is expected to be fixed in 5.0.1.
* It is impossible to specify an image for a `ListViewGroup` in the Designer using either `TitleImageIndex` or `TitleImageKey` properties.

View file

@ -0,0 +1,89 @@
# .NET 5.0.1
.NET 5.0.1 comprises:
* .NET Runtime 5.0.1
* ASP.NET Core 5.0.1
* .NET SDK 5.0.101
See the [Release Notes][release-notes] for details about what is included in this update.
## Docker
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.
## Install .NET on Linux
### Install using a Package Manager
Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET][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: Before updating to .NET 5.0, uninstall any preview versions of .NET 5.0 you have previously installed.
### 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 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=5.0/stable --classic`
Some systems require that you restart the terminal session so the Snap install location can be added to the path. If this is the case, you will see a warning once the dotnet-sdk Snap installation is complete.
When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distributions require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://docs.microsoft.com/dotnet/core/install/) for a possible resolution.
### Develop applications
To develop applications using the .NET 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-5.0
```
### 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-5.0
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## 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.1.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/5.0.1/5.0.1.md
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/b6271a4b-db02-4245-bf99-974ea96b7ca3/29389344a55c6792bd4e717a254168a2/dotnet-hosting-5.0.1-win.exe

View file

@ -0,0 +1,384 @@
# .NET 5.0.1 - December 08, 2020
The .NET 5.0.1 and .NET SDK 5.0.101 releases are available for download. The latest 5.0 release is always listed at [.NET 5.0 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] \| [Arm64][dotnet-sdk-win-arm64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm64][dotnet-sdk-win-arm64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] \| [Arm64][dotnet-runtime-win-arm64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm64][dotnet-runtime-win-arm64.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [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 and Package Manager](5.0.1-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] | [Packages (x64)][linux-packages] | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [Arm][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] | - | <sup>1</sup> |
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime]
</br>
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.
</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
5.0.101
```
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. You can use the following command to try running the latest .NET 5.0 release in containers:
```console
docker run --rm mcr.microsoft.com/dotnet/samples
```
The following repos have been updated.
* [dotnet/sdk](https://hub.docker.com/_/microsoft-dotnet-sdk/): .NET SDK
* [dotnet/aspnet](https://hub.docker.com/_/microsoft-dotnet-aspnet/): ASP.NET Core Runtime
* [dotnet/runtime](https://hub.docker.com/_/microsoft-dotnet-runtime/): .NET Runtime
* [dotnet/runtime-deps](https://hub.docker.com/_/microsoft-dotnet-runtime-deps/): .NET Runtime Dependencies
* [dotnet/samples](https://hub.docker.com/_/microsoft-dotnet-samples/): .NET Samples
## Visual Studio Compatibility
You need [Visual Studio 16.8](https://visualstudio.microsoft.com) or later to use .NET 5.0 on Windows. On macOS, you need the latest version of [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/). The [C# extension](https://code.visualstudio.com/docs/languages/dotnet) for [Visual Studio Code](https://code.visualstudio.com/) supports .NET 5.0 and C# 9.
## Notable Changes
.NET 5.0.1 release carries only non-security fixes.
* [Blog Roundup][dotnet-blog]
* [Known issues](../5.0-known-issues.md)
Release feature and bug lists:.
* ASP.NET Core: [bugs][aspnet_bugs] | [features][aspnet_features]
* EntityFramework Core: [bugs][ef_bugs] | [features][ef_features]
* .NET SDK [bugs][sdk_bugs]
## Feedback
Your feedback is important and appreciated. We've created an issue at [dotnet/core #XXXX](https://github.com/dotnet/core/issues/XXXX) for your questions and comments.
[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.1.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.1-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.1-sha.txt
[linux-install]: https://www.microsoft.com/net/download/linux
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-december-2020/
[ef_bugs]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.1+is%3Aclosed+label%3Atype-bug+is%3Aclosed
[ef_features]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.1+is%3Aclosed+label%3Atype-enhancement+is%3Aclosed
[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.1+label%3ADone+label%3Abug+is%3Aclosed
[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.1+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
[linux-packages]: 5.0.1-install-instructions.md
## Packages updated in this release:
Package name | Version
:----------- | :------------------
Microsoft.Extensions.Http.Polly | 5.0.1.nupkg
Microsoft.Extensions.Hosting.WindowsServices | 5.0.1.nupkg
Microsoft.Extensions.Hosting.Systemd | 5.0.1.nupkg
Microsoft.Extensions.Configuration.NewtonsoftJson | 5.0.1.nupkg
Microsoft.Extensions.Caching.SqlServer | 5.0.1.nupkg
Microsoft.Extensions.Caching.StackExchangeRedis | 5.0.1.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-arm64 | 5.0.1.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x64 | 5.0.1.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x86 | 5.0.1.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.android-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.android-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.android-x86 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.win-x86 | 5.0.1.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.linux-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-arm | 5.0.1.nupkg
Microsoft.Extensions.DependencyInjection | 5.0.1.nupkg
Microsoft.NETCore.App.Host.linux-arm64 | 5.0.1.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
Microsoft.NETCore.App.Host.win-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.linux-musl-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-arm64 | 5.0.1.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-arm64 | 5.0.1.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
System.IO.Pipelines | 5.0.1.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.linux-arm | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.win-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Crossgen2.linux-musl-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.linux-arm | 5.0.1.nupkg
Microsoft.NETCore.App.Host.linux-musl-arm | 5.0.1.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.ios-arm | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.browser-wasm | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.ios-x86 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.ios-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.win-arm | 5.0.1.nupkg
Microsoft.NETCore.App.Crossgen2.win-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.linux-musl-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.linux-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Host.osx-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-x64 | 5.0.1.nupkg
Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.tvos-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.osx-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.win-x86 | 5.0.1.nupkg
Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
System.Security.Cryptography.Pkcs | 5.0.1.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.android-arm | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.ios-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-arm | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Crossgen2.linux-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.tvos-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.win-arm | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.win-x64 | 5.0.1.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.1.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.linux-arm64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.osx-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.osx-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.win-arm64 | 5.0.1.nupkg
Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-x64 | 5.0.1.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.osx-x64 | 5.0.1.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHost | 5.0.1.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.1.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetAppHost | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-x64 | 5.0.1.nupkg
Microsoft.DotNet.Web.Spa.ProjectTemplates.5.0 | 5.0.1.nupkg
Microsoft.AspNetCore.ConcurrencyLimiter | 5.0.1.nupkg
Microsoft.AspNetCore.Components.WebAssembly.Authentication | 5.0.1.nupkg
Microsoft.AspNetCore.Components.Authorization | 5.0.1.nupkg
Microsoft.AspNetCore.AzureAppServicesIntegration | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.WsFederation | 5.0.1.nupkg
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.Facebook | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.win-x86 | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.AzureAD.UI | 5.0.1.nupkg
Microsoft.AspNetCore.SpaServices.Extensions | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.Protocols.MessagePack | 5.0.1.nupkg
Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic | 5.0.1.nupkg
Microsoft.AspNetCore.Owin | 5.0.1.nupkg
Microsoft.JSInterop.WebAssembly | 5.0.1.nupkg
Microsoft.Extensions.Configuration.KeyPerFile | 5.0.1.nupkg
Microsoft.Extensions.ApiDescription.Client | 5.0.1.nupkg
Microsoft.AspNetCore.Components.WebAssembly.Server | 5.0.1.nupkg
Microsoft.AspNetCore.Components.Web | 5.0.1.nupkg
Microsoft.AspNetCore.Components.Forms | 5.0.1.nupkg
Microsoft.AspNetCore.AzureAppServices.SiteExtension | 5.0.1.nupkg
Microsoft.AspNetCore.DataProtection | 5.0.1.nupkg
Microsoft.AspNetCore.Mvc.Razor.Extensions | 5.0.1.nupkg
Microsoft.AspNetCore.Http.Connections.Client | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.JwtBearer | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.AzureADB2C.UI | 5.0.1.nupkg
AspNetCoreRuntime.5.0.x86 | 5.0.1.nupkg
dotnet-sql-cache | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.MicrosoftAccount | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.Twitter | 5.0.1.nupkg
Microsoft.CodeAnalysis.Razor | 5.0.1.nupkg
Microsoft.dotnet-openapi | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.OpenIdConnect | 5.0.1.nupkg
Microsoft.AspNetCore.Cryptography.Internal | 5.0.1.nupkg
Microsoft.AspNetCore.Connections.Abstractions | 5.0.1.nupkg
Microsoft.AspNetCore.Components.Analyzers | 5.0.1.nupkg
Microsoft.AspNetCore.Identity.UI | 5.0.1.nupkg
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm64 | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.Google | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.Certificate | 5.0.1.nupkg
Microsoft.AspNetCore.ApiAuthorization.IdentityServer | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.Common | 5.0.1.nupkg
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv | 5.0.1.nupkg
Microsoft.Extensions.Logging.AzureAppServices | 5.0.1.nupkg
Microsoft.Extensions.Localization | 5.0.1.nupkg
Microsoft.Extensions.FileProviders.Embedded | 5.0.1.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks | 5.0.1.nupkg
Microsoft.AspNetCore.Cryptography.KeyDerivation | 5.0.1.nupkg
Microsoft.AspNetCore.JsonPatch | 5.0.1.nupkg
Microsoft.AspNetCore.DataProtection.StackExchangeRedis | 5.0.1.nupkg
Microsoft.AspNetCore.Authentication.Negotiate | 5.0.1.nupkg
Microsoft.AspNetCore.TestHost | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.StackExchangeRedis | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.Protocols.Json | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.Client | 5.0.1.nupkg
Microsoft.AspNetCore.Razor.Language | 5.0.1.nupkg
Microsoft.Extensions.WebEncoders | 5.0.1.nupkg
Microsoft.Extensions.Identity.Stores | 5.0.1.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore | 5.0.1.nupkg
Microsoft.Extensions.ApiDescription.Server | 5.0.1.nupkg
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation | 5.0.1.nupkg
Microsoft.AspNetCore.MiddlewareAnalysis | 5.0.1.nupkg
Microsoft.AspNetCore.DataProtection.Abstractions | 5.0.1.nupkg
Microsoft.AspNetCore.Http.Features | 5.0.1.nupkg
Microsoft.AspNetCore.Hosting.WindowsServices | 5.0.1.nupkg
Microsoft.AspNetCore.DataProtection.Extensions | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.win-x64 | 5.0.1.nupkg
AspNetCoreRuntime.5.0.x64 | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.osx-x64 | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.linux-x64 | 5.0.1.nupkg
Microsoft.DotNet.Web.Client.ItemTemplates | 5.0.1.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions | 5.0.1.nupkg
Microsoft.Extensions.ObjectPool | 5.0.1.nupkg
Microsoft.Extensions.Identity.Core | 5.0.1.nupkg
Microsoft.AspNetCore.Authorization | 5.0.1.nupkg
Microsoft.AspNetCore.Http.Connections.Common | 5.0.1.nupkg
Microsoft.AspNetCore.HeaderPropagation | 5.0.1.nupkg
Microsoft.AspNetCore.Identity.EntityFrameworkCore | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm | 5.0.1.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm64 | 5.0.1.nupkg
Microsoft.Authentication.WebAssembly.Msal | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.Specification.Tests | 5.0.1.nupkg
Microsoft.AspNetCore.SignalR.Client.Core | 5.0.1.nupkg
Microsoft.DotNet.Web.ProjectTemplates.5.0 | 5.0.1.nupkg
Microsoft.JSInterop | 5.0.1.nupkg
Microsoft.Extensions.Localization.Abstractions | 5.0.1.nupkg
Microsoft.DotNet.Web.ItemTemplates | 5.0.1.nupkg
Microsoft.AspNetCore.Mvc.Testing | 5.0.1.nupkg
Microsoft.AspNetCore.Components.WebAssembly.DevServer | 5.0.1.nupkg
Microsoft.AspNetCore.Components.WebAssembly | 5.0.1.nupkg
Microsoft.AspNetCore.Components | 5.0.1.nupkg
Microsoft.AspNetCore.AzureAppServices.HostingStartup | 5.0.1.nupkg
Microsoft.AspNetCore.Mvc.NewtonsoftJson | 5.0.1.nupkg
Microsoft.AspNetCore.Metadata | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Tools | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite | 5.0.1.nupkg
Microsoft.Data.Sqlite | 5.0.1.nupkg
dotnet-ef | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Analyzers | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Relational.Specification.Tests | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Sqlite.Core | 5.0.1.nupkg
Microsoft.Data.Sqlite.Core | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Cosmos | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Relational | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Abstractions | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Design | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Specification.Tests | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Sqlite | 5.0.1.nupkg
Microsoft.EntityFrameworkCore | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.InMemory | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.Proxies | 5.0.1.nupkg
Microsoft.EntityFrameworkCore.SqlServer | 5.0.1.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.2 | 5.0.1.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.0 | 5.0.1.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.1 | 5.0.1.nupkg
Microsoft.DotNet.Common.ItemTemplates | 5.0.1.nupkg
Microsoft.DotNet.Common.ProjectTemplates.1.x | 5.0.1.nupkg
Microsoft.TemplateEngine.IDE | 5.0.1.nupkg
Microsoft.TemplateSearch.Common | 5.0.1.nupkg
Microsoft.TemplateEngine.Utils | 5.0.1.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.1 | 5.0.1.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.0 | 5.0.1.nupkg
Microsoft.TemplateEngine.Abstractions | 5.0.1.nupkg
Microsoft.TemplateEngine.Core | 5.0.1.nupkg
Microsoft.DotNet.Common.ProjectTemplates.5.0 | 5.0.1.nupkg
Microsoft.TemplateEngine.Core.Contracts | 5.0.1.nupkg
Microsoft.TemplateEngine.Edge | 5.0.1.nupkg
Microsoft.TemplateEngine.Orchestrator.RunnableProjects | 5.0.1.nupkg
[//]: # ( Runtime 5.0.1)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/46b6dfbf-8da3-4e95-ae33-abd5c875bc3e/566db9b58e809f4ed6d571a1de09fc58/dotnet-runtime-5.0.1-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/070e2bba-564b-41d1-a5b7-2772db039ee7/4265da6f0e315dadef8742dcceab85c4/dotnet-runtime-5.0.1-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f4ac9c1e-bf59-4a14-8b3c-e10064fc317d/ca9ed1110309dfd3382717031cf7f6db/dotnet-runtime-5.0.1-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5f66e6fd-6c3e-45d4-9255-ab574b5d95d9/b7a90529efb60b4782eaa7d084aaf75a/dotnet-runtime-5.0.1-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1b2c8490-04c5-4c54-a05d-dbe4dd6c3f2c/85c2939a81302dcc822e01b5175c153e/dotnet-runtime-5.0.1-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/4c8830a9-e80c-4dcf-b480-bb7763957f23/dae4366068a9b3dc61e40dcfee16b54c/dotnet-runtime-5.0.1-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8c19388a-413c-4467-8e4a-04ebfc3cf649/951f03ab26d23ecb68d4843ac54783d6/dotnet-runtime-5.0.1-osx-x64.tar.gz
[dotnet-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/9db358f1-61f1-4762-a29b-5189794567d1/7bc08ab5cbde9cfdf2fbaca1ffdd27f4/dotnet-runtime-5.0.1-win-arm64.exe
[dotnet-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/b0dbe14a-742e-4dda-97c9-0fc63b1fabd0/d4d3325bd9b69d7eaf5642602a9260a1/dotnet-runtime-5.0.1-win-arm64.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/93095e51-be33-4b28-99c8-5ae0ebba753d/501f77f4b95d2e9c3481246a3eff9956/dotnet-runtime-5.0.1-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/57aececf-1108-4d4d-8af4-457da60b4956/062208459fda57c607335f408a5c7a1f/dotnet-runtime-5.0.1-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/f4fb5042-8134-4434-8835-499eb2f18b38/6a0d857f6f1833f5c54fbbe5ead028a7/dotnet-runtime-5.0.1-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/cda5eb17-f096-44f0-9405-cbf44de44513/4ebdeecf995ac2558f26f5e6fdafe2d5/dotnet-runtime-5.0.1-win-x86.zip
[//]: # ( WindowsDesktop 5.0.1)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c6a74d6b-576c-4ab0-bf55-d46d45610730/f70d2252c9f452c2eb679b8041846466/windowsdesktop-runtime-5.0.1-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/55bb1094-db40-411d-8a37-21186e9495ef/1a045e29541b7516527728b973f0fdef/windowsdesktop-runtime-5.0.1-win-x86.exe
[//]: # ( ASP 5.0.1)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/11977d43-d937-4fdb-a1fb-a20d56f1877d/73aa09b745586ac657110fd8b11c0275/aspnetcore-runtime-5.0.1-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e12f9b23-cb47-4718-9903-8a000f85a442/d1a6a6c75cc832ad8187f5bce0d6234a/aspnetcore-runtime-5.0.1-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/09c5b087-033d-4e97-a945-c80b9380d5fb/48e3f28d6a8eebe881d7ceb8192f7806/aspnetcore-runtime-5.0.1-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b87727dd-e0e2-4253-b6f8-ba541195465c/78362e21fbb5b7faf869004993eea290/aspnetcore-runtime-5.0.1-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/6bea1cea-89e8-4bf7-9fc1-f77380443db1/0fb741b7d587cce798ebee80732196ef/aspnetcore-runtime-5.0.1-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f1c49188-548d-4853-9c72-909f47b7fa81/e01f1507b8b8643caef55dda46fe7ec5/aspnetcore-runtime-5.0.1-osx-x64.tar.gz
[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/7413850b-de56-49bf-b2ed-564d4ef1d7f9/abfbfa6e9b5e612261db6fafc6fbaa6d/aspnetcore-runtime-5.0.1-win-arm64.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/48dd125b-b9ca-4fc7-b26c-558bff5bee13/214be31c3239444d4a9cfdf0574f3cd8/aspnetcore-runtime-5.0.1-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/542a8d9d-6450-4630-aa2d-277b258d85ad/f24090c31b34d6830b513287efd59d70/aspnetcore-runtime-5.0.1-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/7d6ed29e-5c0d-47b4-8436-7f1d21a0bca4/e8609f033ad936c117f2d90b86fd05c4/aspnetcore-runtime-5.0.1-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c7fc17df-5e2e-402c-b4de-d689fddd075f/c523e5a4b3f37960ca89a52b99ab98cb/aspnetcore-runtime-5.0.1-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/b6271a4b-db02-4245-bf99-974ea96b7ca3/29389344a55c6792bd4e717a254168a2/dotnet-hosting-5.0.1-win.exe
[//]: # ( SDK 5.0.101 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/567a64a8-810b-4c3f-85e3-bc9f9e06311b/02664afe4f3992a4d558ed066d906745/dotnet-sdk-5.0.101-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2add7523-39ec-413a-b8a7-24361cc4e599/30489ebd7ebcc723da48a64669860fd0/dotnet-sdk-5.0.101-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a84c2dee-3074-4c27-9b31-af0bc9a9ebcf/a8eb9a11b81c5b7119cf1578632ed186/dotnet-sdk-5.0.101-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a0487784-534a-4912-a4dd-017382083865/be16057043a8f7b6f08c902dc48dd677/dotnet-sdk-5.0.101-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/0a7fa783-02e1-4785-b7b1-3c430f8825dc/764e53ff2f5722bc1b8bbc178fe25930/dotnet-sdk-5.0.101-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1193fc39-e498-407d-bf65-071172fbfb8f/56c95047d1d187cec6dd107674b650a8/dotnet-sdk-5.0.101-osx-x64.tar.gz
[dotnet-sdk-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/b69da517-2b8c-43a8-bf88-9780392d3fab/9e0167c144036b0221f3d864fbc48af8/dotnet-sdk-5.0.101-win-arm64.exe
[dotnet-sdk-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/2a5cf4c4-62e7-4738-be5b-065fed5a6496/699a781da0478af053e4c435491b1fe0/dotnet-sdk-5.0.101-win-arm64.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/acff3e6a-d8d6-4c2a-a0cb-1853b58055cc/7910b2a414caa17d30b0cb82583cb542/dotnet-sdk-5.0.101-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d96f04db-f33a-4c0a-bcaf-4fe94559b974/5ad3c8ea7232b361cc1acd89ae4c876c/dotnet-sdk-5.0.101-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/f3ab5b2d-90a2-4235-ba83-b431af07cf08/a79a3138bbacde2e44341de3fe89242a/dotnet-sdk-5.0.101-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/91018cd2-d4e4-45da-920d-1a40970ed5bf/68efbc308fa59cc2c3ce41fe539d6179/dotnet-sdk-5.0.101-win-x86.zip

View file

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

View file

@ -1,12 +1,379 @@
{
"channel-version": "5.0",
"latest-release": "5.0.0",
"latest-release-date": "2020-11-10",
"latest-runtime": "5.0.0",
"latest-sdk": "5.0.100",
"latest-release": "5.0.1",
"latest-release-date": "2020-12-08",
"latest-runtime": "5.0.1",
"latest-sdk": "5.0.101",
"support-phase": "current",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-12-08",
"release-version": "5.0.1",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.1/5.0.1.md",
"runtime": {
"version": "5.0.1",
"version-display": "5.0.1",
"vs-version": "16.8.2",
"vs-mac-version": "8.8",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/46b6dfbf-8da3-4e95-ae33-abd5c875bc3e/566db9b58e809f4ed6d571a1de09fc58/dotnet-runtime-5.0.1-linux-arm.tar.gz",
"hash": "b6cf63b4d7025a468dfaa67b1d3f28f9eb5224b040f5729202d0c144c6bf2af01596aad9cc1841a7d4250e1acc83bd9563af78f371cae17901ea8234a210e85b"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/070e2bba-564b-41d1-a5b7-2772db039ee7/4265da6f0e315dadef8742dcceab85c4/dotnet-runtime-5.0.1-linux-arm64.tar.gz",
"hash": "4d6c76f158a812de60201d0ec26a802bd2f2b8250041eb0c66c81996969c532e21aab9d485398634288ab885235d0df60697040c87b6fc9000e185ae39ce0c78"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f4ac9c1e-bf59-4a14-8b3c-e10064fc317d/ca9ed1110309dfd3382717031cf7f6db/dotnet-runtime-5.0.1-linux-musl-arm64.tar.gz",
"hash": "a09c5fea4e5ad30ae4d112290ab5bd88a5861bf3f7e1ef830e9eab8100aace3d81d4ceaa1fa34203b489708979a5f61792f26bd216d6f92ce59e0c87850960ef"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5f66e6fd-6c3e-45d4-9255-ab574b5d95d9/b7a90529efb60b4782eaa7d084aaf75a/dotnet-runtime-5.0.1-linux-musl-x64.tar.gz",
"hash": "9a6eef8077f2d1a25a1b4ee9dd9300ac6ddd51b59ce14dd80e105cb18c27f8337517548595b8081be959d4c4d40339997931ed14b4d43aeca8d335c58bc382de"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1b2c8490-04c5-4c54-a05d-dbe4dd6c3f2c/85c2939a81302dcc822e01b5175c153e/dotnet-runtime-5.0.1-linux-x64.tar.gz",
"hash": "791af58eb2a4c7e7a65f0d940cfa09cda3318cb482728dbf40848543e1d04aa9ffd7e8d4fdede1b4fbc6f54250bae4e0c4a5bf208e04705f5c5f00375ac009b7"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4c8830a9-e80c-4dcf-b480-bb7763957f23/dae4366068a9b3dc61e40dcfee16b54c/dotnet-runtime-5.0.1-osx-x64.pkg",
"hash": "59870b0cd3d47805c2b95c679f3f9f8bf9da0a3710876d8a0b7f3c390b60a949c595781d0e3b3456e2ebc487bb2c7eff8d78909d67f2cc7cda91058ac3a6e56a"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8c19388a-413c-4467-8e4a-04ebfc3cf649/951f03ab26d23ecb68d4843ac54783d6/dotnet-runtime-5.0.1-osx-x64.tar.gz",
"hash": "6039b20692bc6367367eaa5a6117a1065dbc5c2b24cb8294eea4319337f8b9aa2907a9fc3d00125f1df48c0ef26ecec8c097a26ac5bbdf991fdef7173734b0bc"
},
{
"name": "dotnet-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9db358f1-61f1-4762-a29b-5189794567d1/7bc08ab5cbde9cfdf2fbaca1ffdd27f4/dotnet-runtime-5.0.1-win-arm64.exe",
"hash": "f3a41ac14660ec1a2ffb64e1ae7a899a4f6e9b291847480d0cae23fb45d2ace387de0bec97a46eb082462e84e61e90dff1f9d1a618f21fe7c6ec1563b134e139"
},
{
"name": "dotnet-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b0dbe14a-742e-4dda-97c9-0fc63b1fabd0/d4d3325bd9b69d7eaf5642602a9260a1/dotnet-runtime-5.0.1-win-arm64.zip",
"hash": "2aef1591228eb5ff08535542230f6ba128e4cf944363cd941ef700eb3e4b68492d882c93a0e54f67c0ad47cc5d885bc22c9770b8d3e248ebc22c612a268809b7"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/93095e51-be33-4b28-99c8-5ae0ebba753d/501f77f4b95d2e9c3481246a3eff9956/dotnet-runtime-5.0.1-win-x64.exe",
"hash": "c7f458c5fa4d3b9ee27c62bf792aeb4c6addcc4c757b2794ddf673c984e783715617fe164a2ec793f1ad8ecb5715bd957884b202723309cc731e92455fbd9d5b"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/57aececf-1108-4d4d-8af4-457da60b4956/062208459fda57c607335f408a5c7a1f/dotnet-runtime-5.0.1-win-x64.zip",
"hash": "036a6f07982349cdc2ffc305387916216707118b7372dbd701c7a58a3ca04fc2648ed1c15b2d101b2c2ae36f2f83da345301fea809d93acfc93e34c66f0bc788"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/f4fb5042-8134-4434-8835-499eb2f18b38/6a0d857f6f1833f5c54fbbe5ead028a7/dotnet-runtime-5.0.1-win-x86.exe",
"hash": "b8d8925dddbf7b36a30d183ea21b27eada9f2894de798d99cea9cdd45a2cc0c1584ed6d43a6981c35fb55698fbb0aedbf6f4793b74c20acc5dac98f779b877fd"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/cda5eb17-f096-44f0-9405-cbf44de44513/4ebdeecf995ac2558f26f5e6fdafe2d5/dotnet-runtime-5.0.1-win-x86.zip",
"hash": "507ae7cc02c023ba14cceefeb7b7c7434836f3072da81a517886c446f2f1c690d30b1afa211e64493443aa62baf9ad55992bc12a0338fe04bdb2b3ac8bfa29db"
}
]
},
"sdk": {
"version": "5.0.101",
"version-display": "5.0.101",
"runtime-version": "5.0.1",
"vs-version": "16.8.2",
"vs-mac-version": "8.8",
"vs-support": "Visual Studio 2019 (v16.8)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.8)",
"csharp-version": "8.0",
"fsharp-version": "5.0",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/567a64a8-810b-4c3f-85e3-bc9f9e06311b/02664afe4f3992a4d558ed066d906745/dotnet-sdk-5.0.101-linux-arm.tar.gz",
"hash": "2b03ae553b59ad39aa22b5abb5b208318b15284889a86abdc3096e382853c28b0438e2922037f9bc974c85991320175ba48d7a6963bb112651d7027692bb5cde"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2add7523-39ec-413a-b8a7-24361cc4e599/30489ebd7ebcc723da48a64669860fd0/dotnet-sdk-5.0.101-linux-arm64.tar.gz",
"hash": "b26beafd7649fd9081a914909aca6302e8629f24d97ac5d7ac4c7aace007aff93e920510f3fa5a871c71ad42f2e38241115339ccf01d2399b2c9000b53607a86"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a84c2dee-3074-4c27-9b31-af0bc9a9ebcf/a8eb9a11b81c5b7119cf1578632ed186/dotnet-sdk-5.0.101-linux-musl-x64.tar.gz",
"hash": "e874661647b530c58e78dad4fc0537739a30c460e31678547e9dc186858c5119730d4e7a6b529bf96655ff11e8fabcecec9eb24b5faf5348fe20b8c7f3080c3a"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a0487784-534a-4912-a4dd-017382083865/be16057043a8f7b6f08c902dc48dd677/dotnet-sdk-5.0.101-linux-x64.tar.gz",
"hash": "398d88099d765b8f5b920a3a2607c2d2d8a946786c1a3e51e73af1e663f0ee770b2b624a630b1bec1ceed43628ea8bc97963ba6c870d42bec064bde1cd1c9edb"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0a7fa783-02e1-4785-b7b1-3c430f8825dc/764e53ff2f5722bc1b8bbc178fe25930/dotnet-sdk-5.0.101-osx-x64.pkg",
"hash": "bda774bacd838179dc917828056445663174d0cc811fb396bdcc0bb6d2d0d048f38a4fa2ce6f5c05d0db40ebfff5d3321ca8ac326ac07f5637ce7779724a2e1b"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1193fc39-e498-407d-bf65-071172fbfb8f/56c95047d1d187cec6dd107674b650a8/dotnet-sdk-5.0.101-osx-x64.tar.gz",
"hash": "7aea6d5b236f8e1c0388cd15680f0939f1bf22e58027fcadbbb8fbf70f7686e5ea0df3877ac686a5713db437ac6848a4ccce73d06738969f6c46d85a6cc758ab"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b69da517-2b8c-43a8-bf88-9780392d3fab/9e0167c144036b0221f3d864fbc48af8/dotnet-sdk-5.0.101-win-arm64.exe",
"hash": "bc9025205f632506a5590784d33fbff019010787fe14839939da26e9e68519980b79eb495c92fd1f109af49a20983dd99ab6611d162f9f31fc9595eb6d8eab0f"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2a5cf4c4-62e7-4738-be5b-065fed5a6496/699a781da0478af053e4c435491b1fe0/dotnet-sdk-5.0.101-win-arm64.zip",
"hash": "b3a458835f7f433eb96e8b8ddcdac7a6c42167e5aa243adc7a9a0d4a834967135b2b111af5841843ca87cc5c0ba176a1d98bc362b624ddf20d01736ffcf556e8"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/acff3e6a-d8d6-4c2a-a0cb-1853b58055cc/7910b2a414caa17d30b0cb82583cb542/dotnet-sdk-5.0.101-win-x64.exe",
"hash": "1a70df36a57f2c45fe08741a9181a95c94aa93c765c787d4981646e17dd29daf2b2111f11a3a46cebcebc108d9e11bcd5b510f07160f43881abf49cfcf08ce9f"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d96f04db-f33a-4c0a-bcaf-4fe94559b974/5ad3c8ea7232b361cc1acd89ae4c876c/dotnet-sdk-5.0.101-win-x64.zip",
"hash": "7298d1b370b2055f95c03a628f78dce97470434a76907e20ad1ea14b55bdb0a67b2a78f5b5ec928b914df735e89ae9f3a8033d0fe2112a38998581598d35e931"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/f3ab5b2d-90a2-4235-ba83-b431af07cf08/a79a3138bbacde2e44341de3fe89242a/dotnet-sdk-5.0.101-win-x86.exe",
"hash": "d15f8a43ecc4d84744cec79374c70addc8cb91aa9b5625d7171314787f711a6d53292efe88bf1694b664e012a4c2a469966185b7aef5d7f260f51a3b817f3fdd"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/91018cd2-d4e4-45da-920d-1a40970ed5bf/68efbc308fa59cc2c3ce41fe539d6179/dotnet-sdk-5.0.101-win-x86.zip",
"hash": "d22252a378fc566c3e3209e463905e51cc7dfa9f5dbc795513889025b07fee927e681c3392a8778e44bed4d084ede949917b81aac5e6e3ec10b0abbf4b1c59c4"
}
]
},
"sdks": [
{
"version": "5.0.101",
"version-display": "5.0.101",
"runtime-version": "5.0.1",
"vs-version": "16.8.2",
"vs-mac-version": "8.8",
"vs-support": "Visual Studio 2019 (v16.8)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.8)",
"csharp-version": "8.0",
"fsharp-version": "5.0",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/567a64a8-810b-4c3f-85e3-bc9f9e06311b/02664afe4f3992a4d558ed066d906745/dotnet-sdk-5.0.101-linux-arm.tar.gz",
"hash": "2b03ae553b59ad39aa22b5abb5b208318b15284889a86abdc3096e382853c28b0438e2922037f9bc974c85991320175ba48d7a6963bb112651d7027692bb5cde"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2add7523-39ec-413a-b8a7-24361cc4e599/30489ebd7ebcc723da48a64669860fd0/dotnet-sdk-5.0.101-linux-arm64.tar.gz",
"hash": "b26beafd7649fd9081a914909aca6302e8629f24d97ac5d7ac4c7aace007aff93e920510f3fa5a871c71ad42f2e38241115339ccf01d2399b2c9000b53607a86"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a84c2dee-3074-4c27-9b31-af0bc9a9ebcf/a8eb9a11b81c5b7119cf1578632ed186/dotnet-sdk-5.0.101-linux-musl-x64.tar.gz",
"hash": "e874661647b530c58e78dad4fc0537739a30c460e31678547e9dc186858c5119730d4e7a6b529bf96655ff11e8fabcecec9eb24b5faf5348fe20b8c7f3080c3a"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a0487784-534a-4912-a4dd-017382083865/be16057043a8f7b6f08c902dc48dd677/dotnet-sdk-5.0.101-linux-x64.tar.gz",
"hash": "398d88099d765b8f5b920a3a2607c2d2d8a946786c1a3e51e73af1e663f0ee770b2b624a630b1bec1ceed43628ea8bc97963ba6c870d42bec064bde1cd1c9edb"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0a7fa783-02e1-4785-b7b1-3c430f8825dc/764e53ff2f5722bc1b8bbc178fe25930/dotnet-sdk-5.0.101-osx-x64.pkg",
"hash": "bda774bacd838179dc917828056445663174d0cc811fb396bdcc0bb6d2d0d048f38a4fa2ce6f5c05d0db40ebfff5d3321ca8ac326ac07f5637ce7779724a2e1b"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1193fc39-e498-407d-bf65-071172fbfb8f/56c95047d1d187cec6dd107674b650a8/dotnet-sdk-5.0.101-osx-x64.tar.gz",
"hash": "7aea6d5b236f8e1c0388cd15680f0939f1bf22e58027fcadbbb8fbf70f7686e5ea0df3877ac686a5713db437ac6848a4ccce73d06738969f6c46d85a6cc758ab"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b69da517-2b8c-43a8-bf88-9780392d3fab/9e0167c144036b0221f3d864fbc48af8/dotnet-sdk-5.0.101-win-arm64.exe",
"hash": "bc9025205f632506a5590784d33fbff019010787fe14839939da26e9e68519980b79eb495c92fd1f109af49a20983dd99ab6611d162f9f31fc9595eb6d8eab0f"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2a5cf4c4-62e7-4738-be5b-065fed5a6496/699a781da0478af053e4c435491b1fe0/dotnet-sdk-5.0.101-win-arm64.zip",
"hash": "b3a458835f7f433eb96e8b8ddcdac7a6c42167e5aa243adc7a9a0d4a834967135b2b111af5841843ca87cc5c0ba176a1d98bc362b624ddf20d01736ffcf556e8"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/acff3e6a-d8d6-4c2a-a0cb-1853b58055cc/7910b2a414caa17d30b0cb82583cb542/dotnet-sdk-5.0.101-win-x64.exe",
"hash": "1a70df36a57f2c45fe08741a9181a95c94aa93c765c787d4981646e17dd29daf2b2111f11a3a46cebcebc108d9e11bcd5b510f07160f43881abf49cfcf08ce9f"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d96f04db-f33a-4c0a-bcaf-4fe94559b974/5ad3c8ea7232b361cc1acd89ae4c876c/dotnet-sdk-5.0.101-win-x64.zip",
"hash": "7298d1b370b2055f95c03a628f78dce97470434a76907e20ad1ea14b55bdb0a67b2a78f5b5ec928b914df735e89ae9f3a8033d0fe2112a38998581598d35e931"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/f3ab5b2d-90a2-4235-ba83-b431af07cf08/a79a3138bbacde2e44341de3fe89242a/dotnet-sdk-5.0.101-win-x86.exe",
"hash": "d15f8a43ecc4d84744cec79374c70addc8cb91aa9b5625d7171314787f711a6d53292efe88bf1694b664e012a4c2a469966185b7aef5d7f260f51a3b817f3fdd"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/91018cd2-d4e4-45da-920d-1a40970ed5bf/68efbc308fa59cc2c3ce41fe539d6179/dotnet-sdk-5.0.101-win-x86.zip",
"hash": "d22252a378fc566c3e3209e463905e51cc7dfa9f5dbc795513889025b07fee927e681c3392a8778e44bed4d084ede949917b81aac5e6e3ec10b0abbf4b1c59c4"
}
]
}
],
"aspnetcore-runtime": {
"version": "5.0.1",
"version-display": "5.0.1",
"version-aspnetcoremodule": [
"15.0.20336.1"
],
"vs-version": "",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/11977d43-d937-4fdb-a1fb-a20d56f1877d/73aa09b745586ac657110fd8b11c0275/aspnetcore-runtime-5.0.1-linux-arm.tar.gz",
"hash": "a7aa5431d79b69279a1ee9b39503030247001b747ccdd23411ff77b4f88458a49c198de35d1c1fa452684148ad9e1a176c27da97c8ff03df9ee5c3c10909c8b5"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e12f9b23-cb47-4718-9903-8a000f85a442/d1a6a6c75cc832ad8187f5bce0d6234a/aspnetcore-runtime-5.0.1-linux-arm64.tar.gz",
"hash": "794bba781849970be139090e0d9a38530358ad13ba701369096c417cef260b34543f56270c0628696ec33299a999bfbee6d8e6f52722eda845f01f61ea9bf0ff"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/09c5b087-033d-4e97-a945-c80b9380d5fb/48e3f28d6a8eebe881d7ceb8192f7806/aspnetcore-runtime-5.0.1-linux-musl-arm64.tar.gz",
"hash": "62e72900eb433c32d26efd975ad41bcc934959e67c34c8a6176056da0856ee6918dd526dc66d01316ac5773061bd0b691e224d5fd581c8ecbdd9255d5bb8b8d4"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b87727dd-e0e2-4253-b6f8-ba541195465c/78362e21fbb5b7faf869004993eea290/aspnetcore-runtime-5.0.1-linux-musl-x64.tar.gz",
"hash": "004fe94ba94b23eadd91ac2a95d175ee41b5550cdda9c5f48b0c090848562e1b5a33c9875517e9ff4d3c3a18b7c6f2c74d14c0860d3f4c68d388939412a72452"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6bea1cea-89e8-4bf7-9fc1-f77380443db1/0fb741b7d587cce798ebee80732196ef/aspnetcore-runtime-5.0.1-linux-x64.tar.gz",
"hash": "fec655aed2e73288e84d940fd356b596e266a3e74c37d9006674c4f923fb7cde5eafe30b7dcb43251528166c02724df5856e7174f1a46fc33036b0f8db92688a"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f1c49188-548d-4853-9c72-909f47b7fa81/e01f1507b8b8643caef55dda46fe7ec5/aspnetcore-runtime-5.0.1-osx-x64.tar.gz",
"hash": "2471486939d71764dc1d5f2f26f7111481863aaf837142917ec4720eaf04f4a69c01efa25339da496cfa4f719d80be09cc659b4e4da7ae7d87469a3516e7ec37"
},
{
"name": "aspnetcore-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7413850b-de56-49bf-b2ed-564d4ef1d7f9/abfbfa6e9b5e612261db6fafc6fbaa6d/aspnetcore-runtime-5.0.1-win-arm64.zip",
"hash": "46bdaf5e454e58592be38597aaad5782fc819eb198463b50536380aa5b0818794fa73de3a6383c239dcde9aff02be1e3bf7467c87b8cd15327ed5b2dc8a98016"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/48dd125b-b9ca-4fc7-b26c-558bff5bee13/214be31c3239444d4a9cfdf0574f3cd8/aspnetcore-runtime-5.0.1-win-x64.exe",
"hash": "d0d9b178fc5dc645750ad45457817b032d7b4ba1bf319c828a6015e9d8301fe9d6f9b747c7224e48f33ea00dd239c4dd174b59cb662658d76fb2be8e87bd41d7"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/542a8d9d-6450-4630-aa2d-277b258d85ad/f24090c31b34d6830b513287efd59d70/aspnetcore-runtime-5.0.1-win-x64.zip",
"hash": "b36513456f4cf860b8999c8831021b2b2b21611e4c66a81a8e13604270bfe4f741f1cbfa1778b459c17db60f3406083167f147ad1aa09c248a0e002c4ed2768c"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/7d6ed29e-5c0d-47b4-8436-7f1d21a0bca4/e8609f033ad936c117f2d90b86fd05c4/aspnetcore-runtime-5.0.1-win-x86.exe",
"hash": "8eb37ea4f63c419236aad2f864012ccc96b3d9d4362d3ae32ed219f1403aee170e4d3b25454e2685255fd3e6ff225eae75b8d9b771582f35cc064530f6f0887e"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/c7fc17df-5e2e-402c-b4de-d689fddd075f/c523e5a4b3f37960ca89a52b99ab98cb/aspnetcore-runtime-5.0.1-win-x86.zip",
"hash": "c32957bbfc7536a56ec24bf6884628e2102bf9f25bb8f0336d328e06f9df8afc4e9e36523520e7687ce0d84b2cc72e668d416ebcfde769e605a9409e2df03116"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/b6271a4b-db02-4245-bf99-974ea96b7ca3/29389344a55c6792bd4e717a254168a2/dotnet-hosting-5.0.1-win.exe",
"hash": "776aa4d666c93024af8130ddf21e4d406130ea4ff8e4b14067178a994b67dc79d59792fa8909a52accfbd0a7b6ada60a922e108ac5f67e4cdc00a40c63ebd043",
"akams": "https://aka.ms/dotnetcore-5-0-windowshosting"
}
]
},
"windowsdesktop": {
"version": "5.0.1",
"version-display": "5.0.1",
"files": [
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c6a74d6b-576c-4ab0-bf55-d46d45610730/f70d2252c9f452c2eb679b8041846466/windowsdesktop-runtime-5.0.1-win-x64.exe",
"hash": "ac1be00ce52296148a84ddbcd92c7a78b1c6e09cf65d23fb2859ef050c3ad87eacf70745deb1cea0c64832486eb0b3470219dcb80ed034419bf6673487f2bac6"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/55bb1094-db40-411d-8a37-21186e9495ef/1a045e29541b7516527728b973f0fdef/windowsdesktop-runtime-5.0.1-win-x86.exe",
"hash": "c2dd979418e353940598ca721ea7927052f043282a219ca26244c0811e2359057719115a5b251cde98fd3a9bca05bdba551a57bf42df035a66de44a69a6e6309"
}
]
}
},
{
"release-date": "2020-11-10",
"release-version": "5.0.0",

View file

@ -7,7 +7,7 @@ The latest supported release is [.NET Core 5.0](5.0).
You can download the latest updates for .NET Core.
* [.NET 5.0](5.0/5.0.0/5.0.0.md)
* [.NET 5.0](5.0/5.0.1/5.0.1.md)
* [.NET Core 3.1.10](3.1/3.1.10/3.1.10.md)
* [.NET Core 2.1.23](2.1/2.1.23/2.1.23.md)

View file

@ -2,11 +2,11 @@
"releases-index": [
{
"channel-version": "5.0",
"latest-release": "5.0.0",
"latest-release-date": "2020-11-10",
"latest-release": "5.0.1",
"latest-release-date": "2020-12-08",
"security": false,
"latest-runtime": "5.0.0",
"latest-sdk": "5.0.100",
"latest-runtime": "5.0.1",
"latest-sdk": "5.0.101",
"product": ".NET",
"support-phase": "current",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json"