Artifacts for .NET November Release

This commit is contained in:
Rahul Bhandari 2020-11-10 07:00:50 -08:00
parent 1105c15740
commit 5ac49903d5
14 changed files with 2250 additions and 41 deletions

View file

@ -12,7 +12,8 @@ This table describes support type, supported patch version and end of support da
| Version | Release Date | Support Level | Supported Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
| [.NET Core 3.1](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | December 3, 2019 | LTS | [3.1.9](https://dotnet.microsoft.com/download/dotnet-core/3.1) | December 3, 2022 |
| [.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 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 |
For previous versions, [see here](https://dotnet.microsoft.com/platform/support/policy/dotnet-core).
@ -34,7 +35,6 @@ Both types of releases receive critical fixes throughout their lifecycle, for se
LTS releases are supported for three years after the initial release.
Note: .NET Core 1.x was released under an earlier definition of LTS. See: [.NET Core 1.x "shorter" LTS definition](https://github.com/dotnet/core/blob/e2f22a7106860c0e5dc98bb36dc648a779944ad5/microsoft-support.md#long-term-support-lts-releases).
### Current releases

View file

@ -0,0 +1,96 @@
# .NET Core 3.1.10
.NET Core 3.1.10 comprises:
* .NET Core Runtime 3.1.10
* ASP.NET Core 3.1.10
* .NET Core SDK 3.1.110
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.10.md) for details about what is included in this update.
## Docker
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## Installing .NET Core on Linux
### Install using Snap
Snap is a system that installs applications in an isolated environment and provides for automatic updates. Many distributions that are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
`sudo snap install dotnet-sdk --channel 3.1/stable --classic`
When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
| Distro | Package Manager |
| --- | :----: |
| CentOS, Oracle | yum |
| Debian, Ubuntu | apt-get |
| Fedora | dnf |
| OpenSUSE, SLES | zypper |
## Develop applications
To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install dotnet-sdk-3.1
```
## Run applications
If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install aspnetcore-runtime-3.1
```
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## .NET Core Runtime-only installation
If only the .NET Core Runtime is needed, install `dotnet-runtime-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
## Windows Server Hosting
If you're looking to host standalone apps on servers, the following installer can be used on Windows systems.
### Windows
You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
* [dotnet-hosting-3.1.10-win.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.10.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-november-2020/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/7e35ac45-bb15-450a-946c-fe6ea287f854/a37cfb0987e21097c7969dda482cebd3/dotnet-hosting-3.1.10-win.exe

View file

@ -0,0 +1,413 @@
# .NET Core 3.1.10 - November 10, 2020
The .NET 3.1.10 and .NET SDK 3.1.110 releases are available for download. The latest 3.1 release is always listed at [.NET 3.1 Releases](../README.md).
## Downloads
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime | Windows Desktop Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |:-----------------: |
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm][dotnet-sdk-win-arm.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [Arm][aspnetcore-runtime-win-arm.zip] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup> | - |
| Linux | [Snap Install][snap-install] | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [Arm][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] \| [Arm64 Alpine][aspnetcore-runtime-linux-musl-arm64.tar.gz] | - |
| RHEL6 | - | [x64][dotnet-sdk-rhel.6-x64.tar.gz] | - | [x64][dotnet-runtime-rhel.6-x64.tar.gz] | - |
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] |
</br>
1. Includes the .NET Core and ASP.NET Core Runtimes.
</br>2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Core runtime.
</br>
The .NET SDK includes a matching updated .NET Runtime. Downloading the Runtime or ASP.NET Core packages is not needed when installing the SDK.
You can check your .NET SDK version by running the following command. The example version shown is for this release.
```console
$ dotnet --version
3.1.110
```
Visit [.NET Documentation](https://docs.microsoft.com/en-us/dotnet/core/) to learn about .NET, for building many different types of applications.
</br>
1. Includes the .NET Core and ASP.NET Core Runtimes.
</br>2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Core runtime.
## Docker Images
The [.NET Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. .NET container samples are available at [dotnet/dotnet-docker](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md). You can use the following command to try running the latest .NET 3.1 release in containers:
```console
docker run --rm -it mcr.microsoft.com/dotnet/samples:3.1
```
The following repos have been updated.
* [dotnet/core/sdk](https://hub.docker.com/_/microsoft-dotnet-core-sdk/): .NET Core SDK
* [dotnet/core/aspnet](https://hub.docker.com/_/microsoft-dotnet-core-aspnet/): ASP.NET Core Runtime
* [dotnet/core/runtime](https://hub.docker.com/_/microsoft-dotnet-core-runtime/): .NET Core Runtime
* [dotnet/core/runtime-deps](https://hub.docker.com/_/microsoft-dotnet-core-runtime-deps/): .NET Core Runtime Dependencies
* [dotnet/core/samples](https://hub.docker.com/_/microsoft-dotnet-core-samples/): .NET Core Samples
### Azure App Services
* .NET Core 3.1.10 is being deployed to Azure App Services and the deployment is expected to complete later in November 2020.
## Visual Studio Compatibility
**Visual Studio compatibility:** .NET Core 3.1 requires Visual Studio 2019 16.4 or above to take full advantage of all its features. .NET Core 3.1 won't work properly in earlier versions of Visual Studio. See the following table to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.7 | [3.1.404](3.1.404-download.md) |
| Windows | Visual Studio 2019 version 16.4 | [3.1.110](#downloads) |
| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
## Notable Changes
.NET Core 3.1.10 release carries only non-security fixes.
* [Blog Roundup][dotnet-blog]
* [Known issues](../3.1-known-issues.md)
### Additional fixes in this release
* [CoreCLR](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=milestone%3A3.1.10+label%3Aservicing-approved)
* [CoreFX](https://github.com/dotnet/corefx/issues?utf8=%E2%9C%93&q=milestone%3A3.1.10+label%3Aservicing-approved)
* [ASP.NETCore](https://github.com/search?q=is%3Apr+label%3AServicing-approved+milestone%3A3.1.10+repo%3Adotnet%2Faspnetcore+repo%3Adotnet%2Fextensions+repo%3Adotnet%2Faspnetcore-tooling+repo%3Adotnet%2Fblazor+repo%3Adotnet%2Fefcore+repo%3Adotnet%2Fef6)
## Adding a switch to enable sending ISO-8859-1 headers with SocketsHttpHandler
Since the introduction of `SocketsHttpHandler` in .NET Core 2.1, an attempt to send non-ASCII characters in HTTP headers throws an `HttpRequestException`. This (RFC-conform) behavior turned out to be a blocker for some users trying to migrate from .NET Framework. In .NET 5 we are addressing this by the introduction of [`SocketsHttpHandler.RequestHeaderEncodingSelector`](https://docs.microsoft.com/en-us/dotnet/api/system.net.http.socketshttphandler.requestheaderencodingselector?view=net-5.0). To unblock users who are not (yet) able to migrate to .NET 5.0, we also added a runtime-configuration switch as part of .NET Core 3.1 servicing. This switch allows relaxing the HTTP header validation, enabling `SocketsHttpHandler` to send ISO-8859-1 (Latin-1) encoded characters in headers.
- `AppContext` switch: `System.Net.Http.SocketsHttpHandler.AllowLatin1Headers`. `false` - disabled, `true` - enabled
- Environment variable: `DOTNET_SYSTEM_NET_HTTP_SOCKETSHTTPHANDLER_ALLOWLATIN1HEADERS`. `0` - disabled, `1` - enabled
**Note:**
This switch is specific to .NET Core 3.1 since service release 3.1.10, and not available in later versions.
## macOS Notarization Change
Running "dotnet build" will generate a dll instead of a dylib on macOS. This is a planned change to not use the AppHost by default on macOS because of [notarization requirements](https://docs.microsoft.com/dotnet/core/install/macos-notarization-issues). If you want to opt into using the AppHost, add the following to your project file:
```
<PropertyGroup>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
```
## Feedback
Your feedback is important and appreciated. We've created an issue at [dotnet/core #XXXX](https://github.com/dotnet/core/issues/XXXX) for your questions and comments.
## Packages updated in this release:
Package name | Version
:----------- | :------------------
runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x86 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.linux-musl-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.osx-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.rhel.6-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.win-x64 | 3.1.10.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.linux-arm64 | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-arm64 | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.rhel.6-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.win-arm64 | 3.1.10.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.win-x86 | 3.1.10.nupkg
Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.linux-arm64 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.win-x86 | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.linux-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.win-arm | 3.1.10.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
Microsoft.NETCore.App.Host.linux-arm | 3.1.10.nupkg
Microsoft.NETCore.App.Host.linux-musl-arm64 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.linux-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Host.win-arm | 3.1.10.nupkg
Microsoft.NETCore.App.Host.win-arm64 | 3.1.10.nupkg
Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.linux-arm | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.osx-x64 | 3.1.10.nupkg
Microsoft.NETCore.App.Runtime.win-x64 | 3.1.10.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver | 3.1.10.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
Microsoft.NETCore.DotNetHost | 3.1.10.nupkg
Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.rhel.6-x64.Microsoft.NETCore.DotNetHostPolicy | 3.1.10.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetAppHost | 3.1.10.nupkg
Microsoft.Extensions.Identity.Stores | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm | 3.1.10.nupkg
Microsoft.Extensions.Identity.Core | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.AzureAD.UI | 3.1.10.nupkg
Microsoft.AspNetCore.ApiAuthorization.IdentityServer | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.Google | 3.1.10.nupkg
Microsoft.AspNetCore.Mvc.Testing | 3.1.10.nupkg
Microsoft.AspNetCore.Metadata | 3.1.10.nupkg
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.Common | 3.1.10.nupkg
Microsoft.AspNetCore.Components.Forms | 3.1.10.nupkg
Microsoft.AspNetCore.AzureAppServicesIntegration | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.OpenIdConnect | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm64 | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-x64 | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.linux-x64 | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.Client | 3.1.10.nupkg
Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1 | 3.1.10.nupkg
Microsoft.Extensions.ApiDescription.Client | 3.1.10.nupkg
Microsoft.DotNet.Web.ItemTemplates | 3.1.10.nupkg
Microsoft.AspNetCore.SpaServices | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.StackExchangeRedis | 3.1.10.nupkg
Microsoft.AspNetCore.Identity.Specification.Tests | 3.1.10.nupkg
Microsoft.AspNetCore.Hosting.WindowsServices | 3.1.10.nupkg
Microsoft.AspNetCore.Components.Authorization | 3.1.10.nupkg
Microsoft.AspNetCore.AzureAppServices.HostingStartup | 3.1.10.nupkg
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore | 3.1.10.nupkg
Microsoft.AspNetCore.DataProtection.StackExchangeRedis | 3.1.10.nupkg
AspNetCoreRuntime.3.1.x64 | 3.1.10.nupkg
Microsoft.AspNetCore.App.Ref | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.osx-x64 | 3.1.10.nupkg
Microsoft.AspNetCore.Mvc.NewtonsoftJson | 3.1.10.nupkg
Microsoft.AspNetCore.MiddlewareAnalysis | 3.1.10.nupkg
Microsoft.AspNetCore.Identity.EntityFrameworkCore | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.Client.Core | 3.1.10.nupkg
Microsoft.Extensions.ApiDescription.Server | 3.1.10.nupkg
Microsoft.AspNetCore.SpaServices.Extensions | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson | 3.1.10.nupkg
Microsoft.AspNetCore.TestHost | 3.1.10.nupkg
Microsoft.AspNetCore.Components.Web | 3.1.10.nupkg
Microsoft.AspNetCore.Authorization | 3.1.10.nupkg
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore | 3.1.10.nupkg
Microsoft.AspNetCore.DataProtection | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.win-x86 | 3.1.10.nupkg
Microsoft.AspNetCore.Identity.UI | 3.1.10.nupkg
Microsoft.DotNet.Web.Client.ItemTemplates | 3.1.10.nupkg
Microsoft.AspNetCore.Http.Features | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.Protocols.MessagePack | 3.1.10.nupkg
Microsoft.AspNetCore.Http.Connections.Common | 3.1.10.nupkg
Microsoft.AspNetCore.Http.Connections.Client | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.Twitter | 3.1.10.nupkg
Microsoft.AspNetCore.HeaderPropagation | 3.1.10.nupkg
Microsoft.AspNetCore.DataProtection.AzureStorage | 3.1.10.nupkg
Microsoft.AspNetCore.Cryptography.KeyDerivation | 3.1.10.nupkg
AspNetCoreRuntime.3.1.x86 | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm64 | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.Certificate | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.AzureADB2C.UI | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 | 3.1.10.nupkg
Microsoft.AspNetCore.Owin | 3.1.10.nupkg
Microsoft.DotNet.Web.ProjectTemplates.3.1 | 3.1.10.nupkg
Microsoft.dotnet-openapi | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.Specification.Tests | 3.1.10.nupkg
Microsoft.AspNetCore.SignalR.Protocols.Json | 3.1.10.nupkg
Microsoft.AspNetCore.DataProtection.Extensions | 3.1.10.nupkg
Microsoft.AspNetCore.DataProtection.AzureKeyVault | 3.1.10.nupkg
Microsoft.AspNetCore.Connections.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore | 3.1.10.nupkg
dotnet-sql-cache | 3.1.10.nupkg
Microsoft.AspNetCore.App.Runtime.win-x64 | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.Negotiate | 3.1.10.nupkg
Microsoft.AspNetCore.NodeServices | 3.1.10.nupkg
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation | 3.1.10.nupkg
Microsoft.AspNetCore.JsonPatch | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.MicrosoftAccount | 3.1.10.nupkg
Microsoft.AspNetCore.Components.Analyzers | 3.1.10.nupkg
Microsoft.AspNetCore.Cryptography.Internal | 3.1.10.nupkg
Microsoft.AspNetCore.DataProtection.Abstractions | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.JwtBearer | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.Facebook | 3.1.10.nupkg
Microsoft.AspNetCore.Components | 3.1.10.nupkg
Microsoft.AspNetCore.AzureAppServices.SiteExtension | 3.1.10.nupkg
Microsoft.AspNetCore.Authentication.WsFederation | 3.1.10.nupkg
Microsoft.AspNetCore.ConcurrencyLimiter | 3.1.10.nupkg
Microsoft.DotNet.Common.ProjectTemplates.1.x | 3.1.10.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.0 | 3.1.10.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.2 | 3.1.10.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.1 | 3.1.10.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.1 | 3.1.10.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.0 | 3.1.10.nupkg
Microsoft.DotNet.Common.ItemTemplates | 3.1.10.nupkg
System.Drawing.Common | 4.7.1.nupkg
Microsoft.CodeAnalysis.Razor | 3.1.10.nupkg
Microsoft.AspNetCore.Razor.Language | 3.1.10.nupkg
Microsoft.AspNetCore.Mvc.Razor.Extensions | 3.1.10.nupkg
Microsoft.NET.Sdk.Razor | 3.1.10.nupkg
Microsoft.EntityFrameworkCore | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Analyzers | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.InMemory | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.SqlServer | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Abstractions | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Relational.Specification.Tests | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Tools | 3.1.10.nupkg
Microsoft.Data.Sqlite.Core | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Design | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Specification.Tests | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite | 3.1.10.nupkg
dotnet-ef | 3.1.10.nupkg
Microsoft.Data.Sqlite | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Proxies | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Cosmos | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Relational | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Sqlite | 3.1.10.nupkg
Microsoft.EntityFrameworkCore.Sqlite.Core | 3.1.10.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks | 3.1.10.nupkg
Microsoft.Extensions.Configuration.Xml | 3.1.10.nupkg
Microsoft.Extensions.Configuration.Ini | 3.1.10.nupkg
Microsoft.Extensions.Caching.StackExchangeRedis | 3.1.10.nupkg
Microsoft.Extensions.Configuration | 3.1.10.nupkg
Microsoft.Extensions.Configuration.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.FileSystemGlobbing | 3.1.10.nupkg
Microsoft.Extensions.Options.DataAnnotations | 3.1.10.nupkg
Microsoft.JSInterop | 3.1.10.nupkg
Microsoft.Extensions.FileProviders.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.Configuration.NewtonsoftJson | 3.1.10.nupkg
Microsoft.Extensions.Configuration.Json | 3.1.10.nupkg
Microsoft.Extensions.Configuration.Binder | 3.1.10.nupkg
Microsoft.Extensions.Options | 3.1.10.nupkg
Microsoft.Extensions.FileProviders.Physical | 3.1.10.nupkg
Microsoft.Extensions.Hosting.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.DependencyInjection.Specification.Tests | 3.1.10.nupkg
Microsoft.Extensions.Configuration.UserSecrets | 3.1.10.nupkg
Microsoft.Extensions.Caching.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.Logging.Configuration | 3.1.10.nupkg
Microsoft.Extensions.Hosting.Systemd | 3.1.10.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.DependencyInjection | 3.1.10.nupkg
Microsoft.Extensions.Configuration.EnvironmentVariables | 3.1.10.nupkg
Microsoft.Extensions.WebEncoders | 3.1.10.nupkg
Microsoft.Extensions.FileProviders.Embedded | 3.1.10.nupkg
Microsoft.Extensions.Http | 3.1.10.nupkg
Microsoft.Extensions.Localization.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.Configuration.FileExtensions | 3.1.10.nupkg
Microsoft.Extensions.Configuration.CommandLine | 3.1.10.nupkg
Microsoft.Extensions.Options.ConfigurationExtensions | 3.1.10.nupkg
Microsoft.Extensions.Localization | 3.1.10.nupkg
Microsoft.Extensions.Hosting.WindowsServices | 3.1.10.nupkg
Microsoft.Extensions.DiagnosticAdapter | 3.1.10.nupkg
Microsoft.Extensions.DependencyInjection.Abstractions | 3.1.10.nupkg
Microsoft.Extensions.Configuration.KeyPerFile | 3.1.10.nupkg
Microsoft.Extensions.Caching.SqlServer | 3.1.10.nupkg
Microsoft.Extensions.Configuration.AzureKeyVault | 3.1.10.nupkg
Microsoft.Extensions.Primitives | 3.1.10.nupkg
Microsoft.Extensions.ObjectPool | 3.1.10.nupkg
Microsoft.Extensions.Logging.TraceSource | 3.1.10.nupkg
Microsoft.Extensions.Logging.EventLog | 3.1.10.nupkg
Microsoft.Extensions.Logging.AzureAppServices | 3.1.10.nupkg
Microsoft.Extensions.Logging | 3.1.10.nupkg
Microsoft.Extensions.FileProviders.Composite | 3.1.10.nupkg
Microsoft.Extensions.Caching.Memory | 3.1.10.nupkg
Microsoft.Extensions.Logging.EventSource | 3.1.10.nupkg
Microsoft.Extensions.Logging.Console | 3.1.10.nupkg
Microsoft.Extensions.Logging.Debug | 3.1.10.nupkg
Microsoft.Extensions.Hosting | 3.1.10.nupkg
Microsoft.Extensions.Http.Polly | 3.1.10.nupkg
Microsoft.Extensions.Logging.Abstractions | 3.1.10.nupkg
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.10.md
[snap-install]: 3.1.10-install-instructions.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-november-2020/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-core-3-1/
[//]: # ( Runtime 3.1.10)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8261839b-2b61-4c49-a3e4-90b32f25bf50/12ff8ed47c32c199c04066eb07647f4e/dotnet-runtime-3.1.10-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/be90bd1a-a314-4c87-8b90-7ac7681beea9/2297d87631c13074bb85abed61f8138d/dotnet-runtime-3.1.10-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/adb0c25b-af4f-4ad9-bc2d-25e42ac55689/ec22679fad6339a8c6e3550165beb3cf/dotnet-runtime-3.1.10-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3b24bc9a-17a6-40ee-83b0-039dea573293/404d2bce770f08de01c50246a47241c0/dotnet-runtime-3.1.10-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9ca38d86-ce96-4647-8f27-a5807ac42d6a/081194806997d3152be461259cb0bdd2/dotnet-runtime-3.1.10-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/cf89f4c1-b56a-4250-a927-461f17a828ac/3522d5d7cf26727e416d781533d07b65/dotnet-runtime-3.1.10-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/91274163-02de-46f9-8daf-4bc0e7d7c290/9305a2b3f7d7313da7eb7f70497d69b1/dotnet-runtime-3.1.10-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8b93b0fb-43ed-4e0e-b9cc-8a2f67b3aedb/df0db7912c62b8799462b346b226c762/dotnet-runtime-3.1.10-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/0761719d-3cc0-4d97-ab1f-95d91a05c2e6/eb1c1c18867b9dca3802ead1299010e5/dotnet-runtime-3.1.10-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/9845b4b0-fb52-48b6-83cf-4c431558c29b/41025de7a76639eeff102410e7015214/dotnet-runtime-3.1.10-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/38b890ad-ff62-425c-87dd-446078701720/e17ef11e02863481f2f8be376fbf90d0/dotnet-runtime-3.1.10-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/abb3fb5d-4e82-4ca8-bc03-ac13e988e608/b34036773a72b30c5dc5520ee6a2768f/dotnet-runtime-3.1.10-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/a771a17a-4ce2-445a-93ad-948e89fff6cf/cecc9851090594a31bce6472a609929d/dotnet-runtime-3.1.10-win-x86.zip
[//]: # ( WindowsDesktop 3.1.10)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/513acf37-8da2-497d-bdaa-84d6e33c1fee/eb7b010350df712c752f4ec4b615f89d/windowsdesktop-runtime-3.1.10-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/865d0be5-16e2-4b3d-a990-f4c45acd280c/ec867d0a4793c0b180bae85bc3a4f329/windowsdesktop-runtime-3.1.10-win-x86.exe
[//]: # ( ASP 3.1.10)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a2223d1f-c138-4586-8cd1-274c5387e975/623ece755546aca8f4be268f525683c5/aspnetcore-runtime-3.1.10-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/936a9563-1dad-4c4b-b366-c7fcc3e28215/a1edcaf4c35bce760d07e3f1f3d0b9cf/aspnetcore-runtime-3.1.10-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/518a203b-bf9e-467b-b3fd-eff446a7eada/bbab22f7a193e84855b49f3461ad132f/aspnetcore-runtime-3.1.10-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/43727db2-e279-42cc-b733-f44edfe0b203/3ec40e0dc73278ad0c33c4283026103a/aspnetcore-runtime-3.1.10-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/eca743d3-030f-4b1b-bd15-3573091f1c02/f3e464abc31deb7bc2747ed6cc1a8f5c/aspnetcore-runtime-3.1.10-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a3aaa611-80b5-402d-94c8-67d9b574e086/2f932fd66a8a9aaf4bdc489b8030216f/aspnetcore-runtime-3.1.10-osx-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/ece6eaa8-aa22-4f35-a5fd-6bb5773e9d9d/2bc6a154a0e7011fbed510eacd1063b0/aspnetcore-runtime-3.1.10-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c1ea0601-abe4-4c6d-96ed-131764bf5129/a1823d8ff605c30af412776e2e617a36/aspnetcore-runtime-3.1.10-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/b04c393f-5c8c-4d98-83e6-179270d4a77a/05220704f4df249eb50c3068f6975b05/aspnetcore-runtime-3.1.10-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/c0a1f953-81d3-4a1a-a584-a627b518c434/16e1af0d3ebe6edacde1eab155dd4d90/aspnetcore-runtime-3.1.10-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9641aef7-1975-451f-8382-07cea3b56151/eb396de3baa91f28f2a6a35457c13002/aspnetcore-runtime-3.1.10-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/7e35ac45-bb15-450a-946c-fe6ea287f854/a37cfb0987e21097c7969dda482cebd3/dotnet-hosting-3.1.10-win.exe
[//]: # ( SDK 3.1.110 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b4b0a624-a046-4ad5-a19b-82dd26c1ccdb/28af71681b300f3a8b7aa0841cce45cc/dotnet-sdk-3.1.110-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/af40aa01-90f9-47cb-8ed6-a186de459e6c/0cb13fba48e467e7788b1ccad83a5358/dotnet-sdk-3.1.110-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e0e2cb95-9b1e-460a-889a-1317579916e1/caeeb45ef9a482e73b6108db99867288/dotnet-sdk-3.1.110-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/106c4175-8179-42e6-8fb9-0ef14c437028/78832f27bfc0f5c9bf5c720e19a15a2d/dotnet-sdk-3.1.110-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/2756f151-d9b2-4bfc-95eb-334ce59fae1f/c570bfbda1d498619aabfa80f4658b54/dotnet-sdk-3.1.110-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e92de07e-25f5-43ab-a6c4-0014fa9da39e/8af364d0445546d9eb239903a0a51714/dotnet-sdk-3.1.110-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/fba9dd3d-f38c-4576-af21-6855ffb3b21c/b408514c54e3ef5391a2a272dbc37063/dotnet-sdk-3.1.110-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/af6a265f-c166-44e2-8df9-0b7546c3c38b/fb13706263ca2b27ceb916e21e8b15dd/dotnet-sdk-3.1.110-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/9065e596-b3fa-4255-b4ba-aab624ace4ba/634172a4677a39aff1f761b4c728d01d/dotnet-sdk-3.1.110-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/ac05bae1-b7bc-493f-8998-baabcd27523e/483b1776781be836e6f60c6fe635b059/dotnet-sdk-3.1.110-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/393a1b89-dbd2-4268-9147-a1fece1de0e9/da3f56e8b70f3da3cea09573c121ccab/dotnet-sdk-3.1.110-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/6581d8e1-547d-432d-b7de-57d6a4f38dc3/b8b0a396a1cff8d0b23fe5b56eb30eb3/dotnet-sdk-3.1.110-win-x86.zip

View file

@ -0,0 +1,169 @@
# .NET Core 3.1.404 - November 10, 2020
This .NET Core SDK release includes the following released .NET Core and ASP.NET Core Runtimes.
* .NET Core SDK 3.1.404
* .NET Core Runtime 3.1.10
* ASP.NET Core 3.1.10
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.10.md) for details about what is included in this update.
## Downloads
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime | Windows Desktop Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |:-----------------: |
| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [ARM][dotnet-sdk-win-arm.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [ARM][dotnet-runtime-win-arm.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [ARM][aspnetcore-runtime-win-arm.zip] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] |
| macOS | [x64][dotnet-sdk-osx-x64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] | [x64][aspnetcore-runtime-osx-x64.tar.gz]<sup>1</sup> | - |
| Linux | [Snap Install][snap-install] | [x64][dotnet-sdk-linux-x64.tar.gz] \| [ARM][dotnet-sdk-linux-arm.tar.gz] \| [ARM64][dotnet-sdk-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | - | [x64][dotnet-runtime-linux-x64.tar.gz] \| [ARM][dotnet-runtime-linux-arm.tar.gz] \| [ARM64][dotnet-runtime-linux-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] \| [ARM64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [ARM][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [ARM64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] \| [ARM64 Alpine][aspnetcore-runtime-linux-musl-arm64.tar.gz] | - |
| RHEL6 | - | [x64][dotnet-sdk-rhel.6-x64.tar.gz] | - | [x64][dotnet-runtime-rhel.6-x64.tar.gz] | - |
| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] |
</br>
1. Includes the .NET Core and ASP.NET Core Runtimes
</br>2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Core runtime.
## Visual Studio Compatibility
**Visual Studio compatibility:** .NET Core 3.1 requires Visual Studio 2019 16.4 or above to take full advantage of all its features. .NET Core 3.1 won't work properly in earlier versions of Visual Studio. See the following table to select the correct download.
| OS | Development Environment | .NET Core SDK |
| :-- | :-- | :--: |
| Windows | Visual Studio 2019 version 16.6 | [3.1.404](#downloads) |
| Windows | Visual Studio 2019 version 16.4 | [3.1.110](3.1.10.md) |
| macOS | Visual Studio for Mac | [Visual Studio for Mac .NET Core Support](https://docs.microsoft.com/visualstudio/mac/net-core-support) |
## Docker
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
## Installing .NET Core on Linux
### Install using Snap
Snap is a system which installs applications in an isolated environment and provides for automatic updates. Many distributions which are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
`sudo snap install dotnet-sdk --channel 3.1/stable -classic`
When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
Before installing .NET, you will need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
The commands listed below do not specifically include package managers to help with readability. Here are the package managers typically used by the Distros on which .NET Core is supported.
| Distro | Package Manager |
| --- | :----: |
| CentOS, Oracle | yum |
| Debian, Ubuntu | apt-get |
| Fedora | dnf |
| OpenSUSE, SLES | zypper |
## Develop applications
To develop applications using the .NET Core SDK, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install dotnet-sdk-3.1
```
## Run applications
If you only need to run existing applications, run the following command. The .NET Core runtime and ASP.NET Core runtime are included.
```bash
sudo [package manager] update or refresh
sudo [package manager] install aspnetcore-runtime-3.1
```
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## .NET Core Runtime-only installation
If only the .NET Core Runtime is needed, install `dotnet-runtime-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
## Windows Server Hosting
If you are looking to host stand-alone apps on Servers, the following installer can be used on Windows systems.
### Windows
You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
* [dotnet-hosting-3.1.10-win.exe][dotnet-hosting-win.exe]
This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.404-download.md
[snap-install]: 3.1.10-install-instructions.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[//]: # ( Runtime 3.1.10)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8261839b-2b61-4c49-a3e4-90b32f25bf50/12ff8ed47c32c199c04066eb07647f4e/dotnet-runtime-3.1.10-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/be90bd1a-a314-4c87-8b90-7ac7681beea9/2297d87631c13074bb85abed61f8138d/dotnet-runtime-3.1.10-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/adb0c25b-af4f-4ad9-bc2d-25e42ac55689/ec22679fad6339a8c6e3550165beb3cf/dotnet-runtime-3.1.10-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3b24bc9a-17a6-40ee-83b0-039dea573293/404d2bce770f08de01c50246a47241c0/dotnet-runtime-3.1.10-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/9ca38d86-ce96-4647-8f27-a5807ac42d6a/081194806997d3152be461259cb0bdd2/dotnet-runtime-3.1.10-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/cf89f4c1-b56a-4250-a927-461f17a828ac/3522d5d7cf26727e416d781533d07b65/dotnet-runtime-3.1.10-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/91274163-02de-46f9-8daf-4bc0e7d7c290/9305a2b3f7d7313da7eb7f70497d69b1/dotnet-runtime-3.1.10-osx-x64.tar.gz
[dotnet-runtime-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8b93b0fb-43ed-4e0e-b9cc-8a2f67b3aedb/df0db7912c62b8799462b346b226c762/dotnet-runtime-3.1.10-rhel.6-x64.tar.gz
[dotnet-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/0761719d-3cc0-4d97-ab1f-95d91a05c2e6/eb1c1c18867b9dca3802ead1299010e5/dotnet-runtime-3.1.10-win-arm.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/9845b4b0-fb52-48b6-83cf-4c431558c29b/41025de7a76639eeff102410e7015214/dotnet-runtime-3.1.10-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/38b890ad-ff62-425c-87dd-446078701720/e17ef11e02863481f2f8be376fbf90d0/dotnet-runtime-3.1.10-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/abb3fb5d-4e82-4ca8-bc03-ac13e988e608/b34036773a72b30c5dc5520ee6a2768f/dotnet-runtime-3.1.10-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/a771a17a-4ce2-445a-93ad-948e89fff6cf/cecc9851090594a31bce6472a609929d/dotnet-runtime-3.1.10-win-x86.zip
[//]: # ( WindowsDesktop 3.1.10)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/513acf37-8da2-497d-bdaa-84d6e33c1fee/eb7b010350df712c752f4ec4b615f89d/windowsdesktop-runtime-3.1.10-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/865d0be5-16e2-4b3d-a990-f4c45acd280c/ec867d0a4793c0b180bae85bc3a4f329/windowsdesktop-runtime-3.1.10-win-x86.exe
[//]: # ( ASP 3.1.10)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a2223d1f-c138-4586-8cd1-274c5387e975/623ece755546aca8f4be268f525683c5/aspnetcore-runtime-3.1.10-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/936a9563-1dad-4c4b-b366-c7fcc3e28215/a1edcaf4c35bce760d07e3f1f3d0b9cf/aspnetcore-runtime-3.1.10-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/518a203b-bf9e-467b-b3fd-eff446a7eada/bbab22f7a193e84855b49f3461ad132f/aspnetcore-runtime-3.1.10-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/43727db2-e279-42cc-b733-f44edfe0b203/3ec40e0dc73278ad0c33c4283026103a/aspnetcore-runtime-3.1.10-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/eca743d3-030f-4b1b-bd15-3573091f1c02/f3e464abc31deb7bc2747ed6cc1a8f5c/aspnetcore-runtime-3.1.10-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a3aaa611-80b5-402d-94c8-67d9b574e086/2f932fd66a8a9aaf4bdc489b8030216f/aspnetcore-runtime-3.1.10-osx-x64.tar.gz
[aspnetcore-runtime-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/ece6eaa8-aa22-4f35-a5fd-6bb5773e9d9d/2bc6a154a0e7011fbed510eacd1063b0/aspnetcore-runtime-3.1.10-win-arm.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c1ea0601-abe4-4c6d-96ed-131764bf5129/a1823d8ff605c30af412776e2e617a36/aspnetcore-runtime-3.1.10-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/b04c393f-5c8c-4d98-83e6-179270d4a77a/05220704f4df249eb50c3068f6975b05/aspnetcore-runtime-3.1.10-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/c0a1f953-81d3-4a1a-a584-a627b518c434/16e1af0d3ebe6edacde1eab155dd4d90/aspnetcore-runtime-3.1.10-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9641aef7-1975-451f-8382-07cea3b56151/eb396de3baa91f28f2a6a35457c13002/aspnetcore-runtime-3.1.10-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/7e35ac45-bb15-450a-946c-fe6ea287f854/a37cfb0987e21097c7969dda482cebd3/dotnet-hosting-3.1.10-win.exe
[//]: # ( SDK 3.1.404 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2ebe1f4b-4423-4694-8f5b-57f22a315d66/4bceeffda88fc6f19fad7dfb2cd30487/dotnet-sdk-3.1.404-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/de47cbe2-f75f-44c5-8250-7960a36d6591/76cfdbfb7bf17cce27378a9fddd969a6/dotnet-sdk-3.1.404-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d7b82e76-1d88-4873-817b-2c3f02c93138/92137dd72c4a1ae2e758edbe95756068/dotnet-sdk-3.1.404-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ec187f12-929e-4aa7-8abc-2f52e147af1d/56b0dbb5da1c191bff2c271fcd6e6394/dotnet-sdk-3.1.404-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/fadf4d6d-791a-4312-940b-bde9bd32d5e2/d7ebb3507851711d084075437ce62796/dotnet-sdk-3.1.404-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/52dd3fda-0fe1-466c-8f90-f4b9f2421c40/85885ddea0ac777e686937211644d534/dotnet-sdk-3.1.404-osx-x64.tar.gz
[dotnet-sdk-rhel.6-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cff6e4f1-5118-4753-b8b8-3c1bfc114c2b/5128cc3d5671bc2fcb189eaf68107006/dotnet-sdk-3.1.404-rhel.6-x64.tar.gz
[dotnet-sdk-win-arm.zip]: https://download.visualstudio.microsoft.com/download/pr/af41c570-7b26-4c46-8eb8-71a470f491e3/6bf3d3bacac794c7790000af478637de/dotnet-sdk-3.1.404-win-arm.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/3366b2e6-ed46-48ae-bf7b-f5804f6ee4c9/186f681ff967b509c6c9ad31d3d343da/dotnet-sdk-3.1.404-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/355e1344-7f0e-45c7-aace-ac51a3d9183f/a356fda8c22ea1e0e3ba1c6f0b2e4815/dotnet-sdk-3.1.404-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/349bc444-2bf8-4aa0-b546-4f1731f499c5/64f6c5eb26fcd64fbdaee852f038cdd7/dotnet-sdk-3.1.404-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/9e575968-d064-466d-bb17-5ee1fba0d96a/17e9b7ecf50d894c1514d8c68721bcf7/dotnet-sdk-3.1.404-win-x86.zip

View file

@ -4,6 +4,7 @@ The following .NET Core 3.1 releases have been shipped. You must be on the lates
| Release Date | Description | Download |
| :-- | :-- | :--: |
| 2020/11/10 | [3.1.10](./3.1.10/3.1.10.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2020/10/13 | [3.1.9](./3.1.9/3.1.9.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2020/09/08 | [3.1.8](./3.1.8/3.1.8.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |
| 2020/08/11 | [3.1.7](./3.1.7/3.1.7.md) | [download](https://dotnet.microsoft.com/download/dotnet-core/3.1) |

View file

@ -1,13 +1,466 @@
{
"channel-version": "3.1",
"latest-release": "3.1.9",
"latest-release-date": "2020-10-13",
"latest-runtime": "3.1.9",
"latest-sdk": "3.1.403",
"latest-release": "3.1.10",
"latest-release-date": "2020-11-10",
"latest-runtime": "3.1.10",
"latest-sdk": "3.1.404",
"support-phase": "lts",
"eol-date": "2022-12-03",
"lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/",
"releases": [
{
"release-date": "2020-11-10",
"release-version": "3.1.10",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.10.md",
"runtime": {
"version": "3.1.10",
"version-display": "3.1.10",
"vs-version": "16.4.15, 16.7.8",
"vs-mac-version": "8.8",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/8261839b-2b61-4c49-a3e4-90b32f25bf50/12ff8ed47c32c199c04066eb07647f4e/dotnet-runtime-3.1.10-linux-arm.tar.gz",
"hash": "734274c23fe56ea689d767da2031fb19ba81c10014f268ded7c63241024478ee1b6b418f114f4b9018aa36ccdb311f7400fea1dfe78465282b51a9e505b0e746"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/be90bd1a-a314-4c87-8b90-7ac7681beea9/2297d87631c13074bb85abed61f8138d/dotnet-runtime-3.1.10-linux-arm64.tar.gz",
"hash": "40ab54cdc0966f4b3059851b7b3bd51674a1bbb067fbc58b9eac906e16d9e4f6ee60771c326be8e0e1f4d391203bc6edc31fe32f44cec2705c31f4418bdd7d51"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/adb0c25b-af4f-4ad9-bc2d-25e42ac55689/ec22679fad6339a8c6e3550165beb3cf/dotnet-runtime-3.1.10-linux-musl-arm64.tar.gz",
"hash": "2227f406bd121cbf1a166ea7a00fc6e0bd52445e7a0bf755140ed21f4e1a1108a5428a2c2b8920a1abc334b80a866181fbdecdfc46c5954561fc8f61b96dc9d7"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3b24bc9a-17a6-40ee-83b0-039dea573293/404d2bce770f08de01c50246a47241c0/dotnet-runtime-3.1.10-linux-musl-x64.tar.gz",
"hash": "ee54d74e2a43f4d8ace9b1c76c215806d7580d52523b80cf4373c132e2a3e746b6561756211177bc1bdbc92344ee30e928ac5827d82bf27384972e96c72069f8"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9ca38d86-ce96-4647-8f27-a5807ac42d6a/081194806997d3152be461259cb0bdd2/dotnet-runtime-3.1.10-linux-x64.tar.gz",
"hash": "7ff09caf2cdff0ae1c75d0ac731267ffa624025137b079134eb9fda15e1ca386af8422ddd3e93ba084853006e7d58bc04bdf232ad3762580e94658ce3dc8f984"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cf89f4c1-b56a-4250-a927-461f17a828ac/3522d5d7cf26727e416d781533d07b65/dotnet-runtime-3.1.10-osx-x64.pkg",
"hash": "8f659502f51ba955f6285b97b6c0137a808660a503f3682abb80893bbfad206a557720910f678b7b57b77a761ea57fca235015d056a9f9387b5e3e83d1a70c78"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/91274163-02de-46f9-8daf-4bc0e7d7c290/9305a2b3f7d7313da7eb7f70497d69b1/dotnet-runtime-3.1.10-osx-x64.tar.gz",
"hash": "b04846c47e53e8c986fcfe32f09875562b4b60879a276f0007ed448439492cbcbdd068291ff673a9a22b6d0ac3579fdfabf4ec85d3fa02cbc19dca5b14043f3f"
},
{
"name": "dotnet-runtime-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/8b93b0fb-43ed-4e0e-b9cc-8a2f67b3aedb/df0db7912c62b8799462b346b226c762/dotnet-runtime-3.1.10-rhel.6-x64.tar.gz",
"hash": "dc8a4c5de58981a6b83708ed14cf14e5f4444180fc990357aff0c2fb426d76056c7fe8f6c6dd5b64a6b12cc075a8034425262c38e356142310b35e1d003c3a7a"
},
{
"name": "dotnet-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/0761719d-3cc0-4d97-ab1f-95d91a05c2e6/eb1c1c18867b9dca3802ead1299010e5/dotnet-runtime-3.1.10-win-arm.zip",
"hash": "2a55ad0ecb1236a1bbe57472447a0485feeecd60f47305a097ab2c6793f90cc3af84bfc14dcef76f0e56cb863198c42a8c973fa89889ed29fad30c170027a0d4"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9845b4b0-fb52-48b6-83cf-4c431558c29b/41025de7a76639eeff102410e7015214/dotnet-runtime-3.1.10-win-x64.exe",
"hash": "ecddcc05f6994fc45cf41718be78afa73f7ea9a1d5f9b983d43765a8f00a3f45050257bee0b521907a748d1dc4792a5a452e8c7aac3f4f6302ba4de62c82b4ca"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/38b890ad-ff62-425c-87dd-446078701720/e17ef11e02863481f2f8be376fbf90d0/dotnet-runtime-3.1.10-win-x64.zip",
"hash": "ff6c9e925f686bd28d8fb5d5b128eb9186f77376a2f3766c835d553a2decd2fcba69872228177d7fd18f707a957447f4ea8e48e6693b6325abe3ea5b65b6c2b3"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/abb3fb5d-4e82-4ca8-bc03-ac13e988e608/b34036773a72b30c5dc5520ee6a2768f/dotnet-runtime-3.1.10-win-x86.exe",
"hash": "cc590b8033728f9b588f3f130ee4497cb2b991fdc0c443c5d0749237ba4f17e9a7d0e287b3c84046db27129dc17ff1c91b186bb13c5571de267d72a702ffcdb9"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/a771a17a-4ce2-445a-93ad-948e89fff6cf/cecc9851090594a31bce6472a609929d/dotnet-runtime-3.1.10-win-x86.zip",
"hash": "3291084a8801c829b9552f9da50ee84e310621febe983ad12b5825cacfd5c3524c9f8079cb2ad946c4ecf9422450db33407c7e2d7f9cbc7d1ef7f1a9437bbf8d"
}
]
},
"sdk": {
"version": "3.1.404",
"version-display": "3.1.404",
"runtime-version": "3.1.10",
"vs-version": "16.7.8",
"vs-mac-version": "8.8",
"vs-support": "Visual Studio 2019 (v16.7)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.8)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/2ebe1f4b-4423-4694-8f5b-57f22a315d66/4bceeffda88fc6f19fad7dfb2cd30487/dotnet-sdk-3.1.404-linux-arm.tar.gz",
"hash": "0aaed20c96c97fd51b8e0f525caf75ab95c5a51de561e76dc89dad5d3c18755c0c773b51be6f1f5b07dda02d2bb426c5b9c45bb5dd59914beb90199f41e5c59e"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/de47cbe2-f75f-44c5-8250-7960a36d6591/76cfdbfb7bf17cce27378a9fddd969a6/dotnet-sdk-3.1.404-linux-arm64.tar.gz",
"hash": "b22b60a06f4a1a409eb8eb8f5aec26454ff393bef9677294f0a9d61367caeb2a55fff1e4e282af5250365d27cee3b5cf7c31db8ff1c224f1c7225263b0e4a9aa"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d7b82e76-1d88-4873-817b-2c3f02c93138/92137dd72c4a1ae2e758edbe95756068/dotnet-sdk-3.1.404-linux-musl-x64.tar.gz",
"hash": "c6e73e88c69fa2c81eb572a64206fa6e94cb376230a05f14028c35aab202975c857973f9b5fac849c60d22f37563d8d53689c2605571e3b922bda2489e12346d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ec187f12-929e-4aa7-8abc-2f52e147af1d/56b0dbb5da1c191bff2c271fcd6e6394/dotnet-sdk-3.1.404-linux-x64.tar.gz",
"hash": "94d8eca3b4e2e6c36135794330ab196c621aee8392c2545a19a991222e804027f300d8efd152e9e4893c4c610d6be8eef195e30e6f6675285755df1ea49d3605"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fadf4d6d-791a-4312-940b-bde9bd32d5e2/d7ebb3507851711d084075437ce62796/dotnet-sdk-3.1.404-osx-x64.pkg",
"hash": "158a1bfe61d74e3d72addd076c8a71b484f920f041744c03a3d52372a2355e2caf79637f3745f32894820ffa28a668d742adb9f4ab66018021ec13e5f80cde72"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/52dd3fda-0fe1-466c-8f90-f4b9f2421c40/85885ddea0ac777e686937211644d534/dotnet-sdk-3.1.404-osx-x64.tar.gz",
"hash": "141e1c12ccc5ebfd53b1b804cf0bbc7e6b0af8d5c928575910472ab6781a41d05d4f72164accae24d0e99ed7627f8503fb05f7ed9447af79302baeed4cebec0e"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cff6e4f1-5118-4753-b8b8-3c1bfc114c2b/5128cc3d5671bc2fcb189eaf68107006/dotnet-sdk-3.1.404-rhel.6-x64.tar.gz",
"hash": "859b857fad4bc5ad3c4060705b765b184a59c708c3e85d445d3588406d109cd8cd39cca8f2a9084099df9ab191b89d433ce904ca170b20df005f6846e03f1a49"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/af41c570-7b26-4c46-8eb8-71a470f491e3/6bf3d3bacac794c7790000af478637de/dotnet-sdk-3.1.404-win-arm.zip",
"hash": "c53656bf65e994d70ecdb03a6baaaa57e3dff8c4e19e1d321e60c1bed2c4630d926277b9b5176d60198f98e678f3f91ae180a1529afe40a483449b76739664dd"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3366b2e6-ed46-48ae-bf7b-f5804f6ee4c9/186f681ff967b509c6c9ad31d3d343da/dotnet-sdk-3.1.404-win-x64.exe",
"hash": "9d12890913ec5e0d6894f769bb704673a8e15619ef19d0d1906a19f80be53f6ccbbf3f451e069676a1512755e1cd4fc4ee36becb9aa67e3c8edbce76fc854ddf"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/355e1344-7f0e-45c7-aace-ac51a3d9183f/a356fda8c22ea1e0e3ba1c6f0b2e4815/dotnet-sdk-3.1.404-win-x64.zip",
"hash": "8faf1a077e2d67217e2bbc01aed4b30fd55b1f2c0b2ccee55e3c6523a869949b8cf48a39b320bf822c5b75f01453811f00b997bcaa2a5b79890ec83a8dc50d3c"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/349bc444-2bf8-4aa0-b546-4f1731f499c5/64f6c5eb26fcd64fbdaee852f038cdd7/dotnet-sdk-3.1.404-win-x86.exe",
"hash": "fbc027f54221df2f6b8ce86338994df9544aa419d4713fb588ccc29e13f8c7c2c5ca5ea8b3032837bbb3c33d8150cbfc2ee0267510834386a5782de84ed91d4c"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/9e575968-d064-466d-bb17-5ee1fba0d96a/17e9b7ecf50d894c1514d8c68721bcf7/dotnet-sdk-3.1.404-win-x86.zip",
"hash": "80531e70207446890a750fd2160505c7a125c5b461ae5f6779c7da8f77891cd99031699c0de107464e74059f43c7fca1ea5e44b0469590e6691d79b6c290bd0c"
}
]
},
"sdks": [
{
"version": "3.1.404",
"version-display": "3.1.404",
"runtime-version": "3.1.10",
"vs-version": "16.7.8",
"vs-mac-version": "8.8",
"vs-support": "Visual Studio 2019 (v16.7)",
"vs-mac-support": "Visual Studio 2019 for Mac (v8.8)",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/2ebe1f4b-4423-4694-8f5b-57f22a315d66/4bceeffda88fc6f19fad7dfb2cd30487/dotnet-sdk-3.1.404-linux-arm.tar.gz",
"hash": "0aaed20c96c97fd51b8e0f525caf75ab95c5a51de561e76dc89dad5d3c18755c0c773b51be6f1f5b07dda02d2bb426c5b9c45bb5dd59914beb90199f41e5c59e"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/de47cbe2-f75f-44c5-8250-7960a36d6591/76cfdbfb7bf17cce27378a9fddd969a6/dotnet-sdk-3.1.404-linux-arm64.tar.gz",
"hash": "b22b60a06f4a1a409eb8eb8f5aec26454ff393bef9677294f0a9d61367caeb2a55fff1e4e282af5250365d27cee3b5cf7c31db8ff1c224f1c7225263b0e4a9aa"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/d7b82e76-1d88-4873-817b-2c3f02c93138/92137dd72c4a1ae2e758edbe95756068/dotnet-sdk-3.1.404-linux-musl-x64.tar.gz",
"hash": "c6e73e88c69fa2c81eb572a64206fa6e94cb376230a05f14028c35aab202975c857973f9b5fac849c60d22f37563d8d53689c2605571e3b922bda2489e12346d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ec187f12-929e-4aa7-8abc-2f52e147af1d/56b0dbb5da1c191bff2c271fcd6e6394/dotnet-sdk-3.1.404-linux-x64.tar.gz",
"hash": "94d8eca3b4e2e6c36135794330ab196c621aee8392c2545a19a991222e804027f300d8efd152e9e4893c4c610d6be8eef195e30e6f6675285755df1ea49d3605"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fadf4d6d-791a-4312-940b-bde9bd32d5e2/d7ebb3507851711d084075437ce62796/dotnet-sdk-3.1.404-osx-x64.pkg",
"hash": "242791a6d28a6e21246b92083cb2f57abaa432999547d40ddd83c5ffa6a39c12a9c20ef144922e2fff6d0230eeeb9f2e1b5a1b0073c5ff84b836f54f8974c03e"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/52dd3fda-0fe1-466c-8f90-f4b9f2421c40/85885ddea0ac777e686937211644d534/dotnet-sdk-3.1.404-osx-x64.tar.gz",
"hash": "141e1c12ccc5ebfd53b1b804cf0bbc7e6b0af8d5c928575910472ab6781a41d05d4f72164accae24d0e99ed7627f8503fb05f7ed9447af79302baeed4cebec0e"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/cff6e4f1-5118-4753-b8b8-3c1bfc114c2b/5128cc3d5671bc2fcb189eaf68107006/dotnet-sdk-3.1.404-rhel.6-x64.tar.gz",
"hash": "859b857fad4bc5ad3c4060705b765b184a59c708c3e85d445d3588406d109cd8cd39cca8f2a9084099df9ab191b89d433ce904ca170b20df005f6846e03f1a49"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/af41c570-7b26-4c46-8eb8-71a470f491e3/6bf3d3bacac794c7790000af478637de/dotnet-sdk-3.1.404-win-arm.zip",
"hash": "c53656bf65e994d70ecdb03a6baaaa57e3dff8c4e19e1d321e60c1bed2c4630d926277b9b5176d60198f98e678f3f91ae180a1529afe40a483449b76739664dd"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3366b2e6-ed46-48ae-bf7b-f5804f6ee4c9/186f681ff967b509c6c9ad31d3d343da/dotnet-sdk-3.1.404-win-x64.exe",
"hash": "9d12890913ec5e0d6894f769bb704673a8e15619ef19d0d1906a19f80be53f6ccbbf3f451e069676a1512755e1cd4fc4ee36becb9aa67e3c8edbce76fc854ddf"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/355e1344-7f0e-45c7-aace-ac51a3d9183f/a356fda8c22ea1e0e3ba1c6f0b2e4815/dotnet-sdk-3.1.404-win-x64.zip",
"hash": "8faf1a077e2d67217e2bbc01aed4b30fd55b1f2c0b2ccee55e3c6523a869949b8cf48a39b320bf822c5b75f01453811f00b997bcaa2a5b79890ec83a8dc50d3c"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/349bc444-2bf8-4aa0-b546-4f1731f499c5/64f6c5eb26fcd64fbdaee852f038cdd7/dotnet-sdk-3.1.404-win-x86.exe",
"hash": "fbc027f54221df2f6b8ce86338994df9544aa419d4713fb588ccc29e13f8c7c2c5ca5ea8b3032837bbb3c33d8150cbfc2ee0267510834386a5782de84ed91d4c"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/9e575968-d064-466d-bb17-5ee1fba0d96a/17e9b7ecf50d894c1514d8c68721bcf7/dotnet-sdk-3.1.404-win-x86.zip",
"hash": "80531e70207446890a750fd2160505c7a125c5b461ae5f6779c7da8f77891cd99031699c0de107464e74059f43c7fca1ea5e44b0469590e6691d79b6c290bd0c"
}
]
},
{
"version": "3.1.110",
"version-display": "3.1.110",
"runtime-version": "3.1.10",
"vs-version": "16.4.15",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.4)",
"vs-mac-support": "",
"csharp-version": "8.0",
"fsharp-version": "4.7",
"vb-version": "15.9",
"files": [
{
"name": "dotnet-sdk-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/b4b0a624-a046-4ad5-a19b-82dd26c1ccdb/28af71681b300f3a8b7aa0841cce45cc/dotnet-sdk-3.1.110-linux-arm.tar.gz",
"hash": "af345605f4f795d90ca469b70ded4a62d8d3536cc1cf8856a856b576a438c1faff9f8b652c4657d7ca211306266d78f80da6ea1286e00812314bd742786d72d4"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/af40aa01-90f9-47cb-8ed6-a186de459e6c/0cb13fba48e467e7788b1ccad83a5358/dotnet-sdk-3.1.110-linux-arm64.tar.gz",
"hash": "ad20fb6d23ce9967cbd88390510c8207172854ea9ef5a3eae78cfd04dd73b6e312aaaa2f999ce81542c15021b4c313238e9ec01c1b7fb5f39b086848d39a244f"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e0e2cb95-9b1e-460a-889a-1317579916e1/caeeb45ef9a482e73b6108db99867288/dotnet-sdk-3.1.110-linux-musl-x64.tar.gz",
"hash": "b12487cc4de9a7c1ff266d73f07a441311da2ec14375d313b7006b417a282d873702714ec7934373899a525530520b1230db1c1500dfccadee2c5bee76514eea"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/106c4175-8179-42e6-8fb9-0ef14c437028/78832f27bfc0f5c9bf5c720e19a15a2d/dotnet-sdk-3.1.110-linux-x64.tar.gz",
"hash": "650996a614a111bf4b80b6bbe684aff01cea8b7ff5a119923b5c1eaa5a02e87ac2185730241c438a4e5ee13006fa66820e3b31f0d2f71a1f96db54d3ad4c2575"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2756f151-d9b2-4bfc-95eb-334ce59fae1f/c570bfbda1d498619aabfa80f4658b54/dotnet-sdk-3.1.110-osx-x64.pkg",
"hash": "a82be396a5b1c04c855225748fe3bf9a666747c353dd492f1ae9a47212601ae3968fb167453ce26d003262bb47b3660373ff6c886b906d1cc05b1c7183a645f0"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/e92de07e-25f5-43ab-a6c4-0014fa9da39e/8af364d0445546d9eb239903a0a51714/dotnet-sdk-3.1.110-osx-x64.tar.gz",
"hash": "58e1ff007a772527d31b1b09dac953bf508d1de862f0c3221762edd17df22a1823d27a9cce8d18885ac3138813cac2321a8f78fa647abe4a1710e6d8a8867b95"
},
{
"name": "dotnet-sdk-rhel.6-x64.tar.gz",
"rid": "rhel.6-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fba9dd3d-f38c-4576-af21-6855ffb3b21c/b408514c54e3ef5391a2a272dbc37063/dotnet-sdk-3.1.110-rhel.6-x64.tar.gz",
"hash": "c5702061b7bcb296d81a9c28bc60db4ddb3c0009139a10ae7b7aae147e2ac6e3aa1777001318a4a118aea51dc91cf84f721190385638c1cc02095ffa7008d474"
},
{
"name": "dotnet-sdk-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/af6a265f-c166-44e2-8df9-0b7546c3c38b/fb13706263ca2b27ceb916e21e8b15dd/dotnet-sdk-3.1.110-win-arm.zip",
"hash": "000d07126bdef308ea0f82a7108dd19c6fbf3445e4cc7dd9bff67df3a38eb514363b9125bd0596dbaad40d74891f8b42279dc1da856d1cf06ea744eae9d6b351"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9065e596-b3fa-4255-b4ba-aab624ace4ba/634172a4677a39aff1f761b4c728d01d/dotnet-sdk-3.1.110-win-x64.exe",
"hash": "6bfa51de4ee678aae90f233b0cbcc562c8582c0b7a8ed6936ef9c5ed93c2eac496c67466964731a7e11abff45feaa4a2cf6871dd99c9fef98c48bdcc5de0eacf"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ac05bae1-b7bc-493f-8998-baabcd27523e/483b1776781be836e6f60c6fe635b059/dotnet-sdk-3.1.110-win-x64.zip",
"hash": "55d16d4f47d5f0d040d76a51bc632eaf26309929e2a955d03463b317dd7fb2425243fed83176de91c8d990c0bca2d3f7c4f0dd580df7cf6083faeef1633d165a"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/393a1b89-dbd2-4268-9147-a1fece1de0e9/da3f56e8b70f3da3cea09573c121ccab/dotnet-sdk-3.1.110-win-x86.exe",
"hash": "400848f7d8c19f4886f7659d8c971ebf33145ee2542d574eb4beb5b0c19c30d94e09c6bcece05138c09e0bd4100463ce130619bfa1a59bfb6b245e0783543eec"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/6581d8e1-547d-432d-b7de-57d6a4f38dc3/b8b0a396a1cff8d0b23fe5b56eb30eb3/dotnet-sdk-3.1.110-win-x86.zip",
"hash": "f4c520a60b28995a84afaaffd3e6001796347696dad0005adb158581390fd134fca1c77966075e457eab3c46e387cba8316364646f89479a071f4969855bcc94"
}
]
}
],
"aspnetcore-runtime": {
"version": "3.1.10",
"version-display": "3.1.10",
"version-aspnetcoremodule": [
"13.1.20295.10"
],
"vs-version": "16.4.15, 16.7.8",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/a2223d1f-c138-4586-8cd1-274c5387e975/623ece755546aca8f4be268f525683c5/aspnetcore-runtime-3.1.10-linux-arm.tar.gz",
"hash": "02e304af66734fa14042e59b0c47a1c19ffcacef6dd58f293352dd32a79b5abce303010101384fe25d20cb6391df4bdffc8e3cf766f88781a8e3b1f6b1e2ee0d"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/936a9563-1dad-4c4b-b366-c7fcc3e28215/a1edcaf4c35bce760d07e3f1f3d0b9cf/aspnetcore-runtime-3.1.10-linux-arm64.tar.gz",
"hash": "b23585cebda43ec01d866013519c64456733730a7d74593b0583bc54327321e17dedeb3c8127097edceec105e979909db7097ad53ee8ca9dfc434da9007588e0"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/518a203b-bf9e-467b-b3fd-eff446a7eada/bbab22f7a193e84855b49f3461ad132f/aspnetcore-runtime-3.1.10-linux-musl-arm64.tar.gz",
"hash": "d6aa43dade937606af8301e758843178954383807b4e4425592a0b8e1fd0c07051862b6939de9c5ce263e6c73076070e662784107e85cce3fecf02333738ebab"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/43727db2-e279-42cc-b733-f44edfe0b203/3ec40e0dc73278ad0c33c4283026103a/aspnetcore-runtime-3.1.10-linux-musl-x64.tar.gz",
"hash": "1a596c6f413c1f37ec6d3f0be74a19a9614d2321b5ab75290d5722ae824206dedf05e8773deac17330c4e9eff97caa56f5e59f5a6fd5d3543d3b8b4f67bbc8b3"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/eca743d3-030f-4b1b-bd15-3573091f1c02/f3e464abc31deb7bc2747ed6cc1a8f5c/aspnetcore-runtime-3.1.10-linux-x64.tar.gz",
"hash": "884ec943eefc8397537a193d48d481eae8869eb82a8149f11b8a8bbca0cd75307e82e4db04a2329f03f8a50519afa27c0caa79193fb35a9c776efe1aff2d07a0"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a3aaa611-80b5-402d-94c8-67d9b574e086/2f932fd66a8a9aaf4bdc489b8030216f/aspnetcore-runtime-3.1.10-osx-x64.tar.gz",
"hash": "7798a3c351ffc3e89e5c39dae6fa47a81548a0792b3ce0046e269f1a729fba8ac6dc9338fd9649ab5a62ea24c675edddd73d25df65dfeb693366c0a0b0f659e2"
},
{
"name": "aspnetcore-runtime-win-arm.zip",
"rid": "win-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/ece6eaa8-aa22-4f35-a5fd-6bb5773e9d9d/2bc6a154a0e7011fbed510eacd1063b0/aspnetcore-runtime-3.1.10-win-arm.zip",
"hash": "992f8a73b7c3970d7ca64250987c14cfac33fd11733d8ee851f119e0036959f2eeb270b6fa7cdaa240192f6209eef3b89dedc45bb8af6d9c2d8b8c2f76dc2ecc"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c1ea0601-abe4-4c6d-96ed-131764bf5129/a1823d8ff605c30af412776e2e617a36/aspnetcore-runtime-3.1.10-win-x64.exe",
"hash": "b376a06418779e0ce9d0172dc92d7ea8558f903f46afd703e2fb000c269fa6af800a8a1b7fb8b9d7e0fdd8b93ef599fa069469e7cddee0dacb9ef9e9f8a6c17d"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b04c393f-5c8c-4d98-83e6-179270d4a77a/05220704f4df249eb50c3068f6975b05/aspnetcore-runtime-3.1.10-win-x64.zip",
"hash": "de7c5814e43526363a24f1fdc305936f4bcda62eac98bf6c00afa76f01ff6608a855684e2e487d8820106e8fb916f4c1aaac376e0e5178c856f7718b6ecf6bb7"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/c0a1f953-81d3-4a1a-a584-a627b518c434/16e1af0d3ebe6edacde1eab155dd4d90/aspnetcore-runtime-3.1.10-win-x86.exe",
"hash": "d8f5f2b674fc83b6d6b8fe285170f16454fb918cfa9b54e52504d265aa72c157e09bef1b553f41e32e3b801f6e5174943f9c8ed5b4a00533c0f54a303b06a57b"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/9641aef7-1975-451f-8382-07cea3b56151/eb396de3baa91f28f2a6a35457c13002/aspnetcore-runtime-3.1.10-win-x86.zip",
"hash": "ad6955598f800dff82251773ac978be946e29aa2b1d68a7308da6e525613be378bb9ae8accfd68ff4eeead0524eecea308cc3223ff45f022e586dd5f3c054b2d"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/7e35ac45-bb15-450a-946c-fe6ea287f854/a37cfb0987e21097c7969dda482cebd3/dotnet-hosting-3.1.10-win.exe",
"hash": "3c77fb710a56cbb438835176c4668f36737426bb36b5966dc9d834f40b8862863763b04e46bca2de17ac22efa9f1a6632f234b856c69d643a753b0e73f20fc67",
"akams": "https://aka.ms/dotnetcore-3-1-windowshosting"
}
]
},
"windowsdesktop": {
"version": "3.1.10",
"version-display": "3.1.10",
"files": [
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/513acf37-8da2-497d-bdaa-84d6e33c1fee/eb7b010350df712c752f4ec4b615f89d/windowsdesktop-runtime-3.1.10-win-x64.exe",
"hash": "14a7d97fb258bee024cff3585492ed43c3ec6ac823b50980ddde8241a8bca3e578c38ca28e461630d38c180bd72323e1fcb0ee2e6e65ef9bfc8481df7beef142"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/865d0be5-16e2-4b3d-a990-f4c45acd280c/ec867d0a4793c0b180bae85bc3a4f329/windowsdesktop-runtime-3.1.10-win-x86.exe",
"hash": "1697e69644a1df46922e440c1ea16e583660f79f3b9b109b493a24835ae543ea6180c5167d6dbe89d8dd8991f865dba717525e333e4a2f32319733afa6a320b5"
}
]
}
},
{
"release-date": "2020-10-13",
"release-version": "3.1.9",

View file

@ -17,7 +17,14 @@ This document lists known issues for **.NET 5 Preview 1 and beyond releases** wh
1. The Microsoft.Windows.Compatibility package references dependencies that are not available at the targeted versions. To workaround, individually reference the packages your project needs. It is tracked by [dotnet/runtime/issues #34351](https://github.com/dotnet/runtime/issues/34351)
### Preview 4
1. As .NET 5.0 depends on ICU library for the Globalization, the returned value of System.Globalization.TextInfo.ListSeparator can return different values than it used to return. Also, sometimes can return empty string. [https://github.com/dotnet/runtime/issues/43795](https://github.com/dotnet/runtime/issues/43795)
.NET 5.0 on Windows 10 May 2019 Update and later versions depends on ICU library for the Globalization:
- The returned value of System.Globalization.TextInfo.ListSeparator can return different values than it used to return. Also, sometimes can return empty string. [https://github.com/dotnet/runtime/issues/43795](https://github.com/dotnet/runtime/issues/43795)
- `string.IndexOf(string)`, `string.EndsWith(string)`, `string.StartsWith(string)`, `string.LastIndexOf(string)`, and `string` culture-aware comparisons can return different results for some inputs. [dotnet/runtime#43736](https://github.com/dotnet/runtime/issues/43736). We're thinking and discussing how to mitigate this long term, [dotnet/runtime#43956](https://github.com/dotnet/runtime/issues/43956).
Please read the following docs to see the motivation behind the change, workarounds and more information about how you can encounter these breaks and mitigate them:
- [.NET globalization and ICU](https://docs.microsoft.com/dotnet/standard/globalization-localization/globalization-icu)
- [Behavior changes when comparing strings on .NET5+](https://docs.microsoft.com/dotnet/standard/base-types/string-comparison-net-5-plus)
- [Globalization breaking changes](https://docs.microsoft.com/dotnet/core/compatibility/globalization
### Preview 6
@ -25,7 +32,7 @@ This document lists known issues for **.NET 5 Preview 1 and beyond releases** wh
## 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. Is is tracked by [dotnet/runtime/pr #43741](https://github.com/dotnet/runtime/pull/43741).
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
@ -38,6 +45,8 @@ We recommend to not create / open any docker-enabled projects while on Preview 4
This will be fixed in the Preview 5 release. It is tracked by [dotnet/aspnetcore/issues #21733](https://github.com/dotnet/aspnetcore/issues/21733)
This issue has been resolved by https://github.com/dotnet/runtime/pull/36312
### Preview 5
1. On Windows ARM64, NodeServices and SpaServices dont work, because NodeJS is not supported on Windows ARM64. We will look into supporting these features once NodeJS releases support for Windows ARM64.
@ -59,6 +68,7 @@ Workaround:
The dotnet aspnet-codegenerator command line utility can be used. You can find more info on how to use the command line scaffolder at [dotnet aspnet-codegenerator](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/tools/dotnet-aspnet-codegenerator?view=aspnetcore-3.1).
**This issue was resolved in 5.0 RC2.**
**Templates**
@ -135,29 +145,30 @@ The Virtualization component is new in RC1 and there are some fixes we didn't fi
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.
**All these limitations will be addressed in the RC2 release**
**All these limitations are addressed in the RC2 release**
## .NET SDK
### Preview 1
1. Runtime-dependent deployments of apps targeting .NET Core 3.1 that are created with .NET Core SDK 5.0.100 Preview 1 will require version 3.1.2 of the .NET Core runtime. This issue is tracked by [dotnet/sdk #10812](https://github.com/dotnet/sdk/issues/10812)
1. Resolved -- Runtime-dependent deployments of apps targeting .NET Core 3.1 that are created with .NET Core SDK 5.0.100 Preview 1 will require version 3.1.2 of the .NET Core runtime. This issue is tracked by [dotnet/sdk #10812](https://github.com/dotnet/sdk/issues/10812)
### Preview 5
1. For self-contained single-file apps, hostfxr and hostpolicy are not bundled into the application bundle, but are published alongside it. Framework-dependent single-file apps are not affected (since hostfxr and hostpolicy reside within the framework). This issue should be resolved in Preview 6, tracked by [dotnet/runtime #32823](https://github.com/dotnet/runtime/issues/32823).
1. Resolved -- For self-contained single-file apps, hostfxr and hostpolicy are not bundled into the application bundle, but are published alongside it. Framework-dependent single-file apps are not affected (since hostfxr and hostpolicy reside within the framework). This issue should be resolved in Preview 6, tracked by [dotnet/runtime #32823](https://github.com/dotnet/runtime/issues/32823).
### Preview 8
1. (Fixed in RC1, affects only Preview 8 and RC1 before 5.0.100-rc.1.20451.10) Running xUnit tests fails to discover tests in with message `No test is available in <assembly> Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.`. To solve this update your `xunit.runner.visualstudio` package to version 2.4.3. This version is used in `dotnet new` templates, but existing projects targetting, or updating to net5.0 need to be updated manually.
2. Projects targeting net5.0-windows will fail to build if the `TargetPlatformMinimumVersion` does not match the `TargetPlatformVersion`
2. Resolved -- Projects targeting net5.0-windows will fail to build if the `TargetPlatformMinimumVersion` does not match the `TargetPlatformVersion`
- An error similar to the following will be generated:
> NETSDK1005: Assets file 'C:\Users\username\source\repos\project\NuGetPackageExplorer-main\NuGetPackageExplorer-main\Types\obj\project.assets.json' doesn't have a target for 'net5.0-windows10.0.18362'. Ensure that restore has run and that you have included 'net5.0-windows10.0.18362' in the TargetFrameworks for your project.
3. C++/CLI
3. Resolved -- C++/CLI
- C++/CLI projects will not build if targeted to .NET 5.0
4. Warning icons in Dependencies node in Solution Explorer
4. Resolved -- Warning icons in Dependencies node in Solution Explorer
- For projects targeting .NET 5, warning icons may be displayed on packages listed in the Solution Explorer Depdendencies node
### RC1
@ -167,9 +178,9 @@ The Virtualization component is new in RC1 and there are some fixes we didn't fi
- MinimumOSPlatformAttribute was renamed to SupportedOSPlatformAttribute
- RemovedInOSPlatformAttribute was renamed to UnsupportedOSPlatformAttribute
- ObsoletedInOSPlatformAttribute was removed.
2. Warning icons in Dependencies node in Solution Explorer
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. 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'.
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
@ -178,15 +189,37 @@ The Virtualization component is new in RC1 and there are some fixes we didn't fi
<InnerBuildPropertyValues>TargetFrameworks</InnerBuildPropertyValues>
</PropertyGroup>
```
4. 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.
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
3. Publishing with ReadyToRunUseCrossgen2 fails with an `An assembly specified in the application dependencies manifest (crossgen2.deps.json) was not found` error.
- A simple workaround is available here: https://github.com/dotnet/runtime/issues/43141#issuecomment-707249158. This issue should be resolved in .net RTM builds
4. There is a known issue with the LazyAssemblyLoader service in Blazor as documented in https://github.com/dotnet/aspnetcore/issues/26631.
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".
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
<Project>
<Target Name="EnsureNETCoreAppRuntime" />
</Project>
```
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
@ -196,3 +229,50 @@ In .NET 5.0 RC2 and later, projects only define symbols for the target framework
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
## Preview 6
* `TreeNode.ImageIndex` and `TreeNode.SelectedImageIndex` cannot be set to "(none)" (represented by the magic number -2).
![image](https://user-images.githubusercontent.com/4403806/97386477-02207580-1928-11eb-9d5d-8549f8e165a3.png)
There is no known workaround. The issue is expected to be fixed in 5.0.1.
## Preview 7
* `Application.EnableVisualStyles()` does not enable Visual Styles when the application is published as 'Self-contained' + 'Produce Single File'.
The manifest that enables Visual Styles is loaded from a native resource in System.Windows.Forms.dll, however in single file mode there is no "dll" to load from so this feature is not working as intended.
The only practical workaround is to add a manifest file to your project and enable the 6.0 common controls section. Uncomment this section after adding a manifest item to your project:
``` xml
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
```
The issue is expected to be fixed in 5.0.1.
### RC1
* 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:
```cs
imageList.Images.Add(image);
listView1.LargeImageList = null; // unbind
listView1.LargeImageList = imageList; // bind back
```
The issue is expected to be fixed in 5.0.1.

View file

@ -9,7 +9,7 @@ Microsoft supports .NET 5 with multiple operating systems, according to official
OS | Version | Architectures | Lifecycle
--------------------------------------|-------------------------|-----------------|----------
[Windows Client][Windows-client] | 7 SP1(**\***), 8.1 | x64, x86 | [Windows][Windows-lifecycle]
[Windows 10 Client][Windows-client] | Version 1607+(**\*\***) | x64, x86, ARM64 | [Windows][Windows-lifecycle]
[Windows 10 Client][Windows-client] | Version 1607+(**\*\***) | x64, x86, Arm64 | [Windows][Windows-lifecycle]
[Windows Server][Windows-Server] | 2012 R2+ | x64, x86 | [Windows Server][Windows-Server-lifecycle]
[Windows Server Core][Windows-Server] | 2012 R2+ | x64, x86 | [Windows Server][Windows-Server-lifecycle]
[Nano Server][Nano-Server] | Version 1809+ | x64 | [Windows Server][Windows-Server-lifecycle]
@ -29,15 +29,15 @@ OS | Version | Architectures
OS | Version | Architectures | Lifecycle
--------------------------------------|-----------------------|-------------------|----------
[Alpine Linux][Alpine] | 3.11+ | x64, ARM64 | [Alpine][Alpine-lifecycle]
[Alpine Linux][Alpine] | 3.11+ | x64, Arm64 | [Alpine][Alpine-lifecycle]
[CentOS][CentOS] | 7+ | x64 | [CentOS][CentOS-lifecycle]
[Debian][Debian] | 9+ | x64, ARM32, ARM64 | [Debian][Debian-lifecycle]
[Debian][Debian] | 9+ | x64, Arm32, Arm64 | [Debian][Debian-lifecycle]
[Fedora][Fedora] | 32+ | x64 | [Fedora][Fedora-lifecycle]
[Linux Mint][Linux-Mint] | 18+ | x64 | [Linux Mint][Linux-Mint-lifecycle]
[openSUSE][OpenSUSE] | 15+ | x64 | [OpenSUSE][OpenSUSE-lifecycle]
[Red Hat Enterprise Linux][RHEL] | 7+ | x64 | [Red Hat][RHEL-lifecycle]
[SUSE Enterprise Linux (SLES)][SLES] | 12 SP2+ | x64 | [SUSE][SLES-lifecycle]
[Ubuntu][Ubuntu] | 20.04, 19.10, 18.04 | x64, ARM32, ARM64 | [Ubuntu][Ubuntu-lifecycle]
[Ubuntu][Ubuntu] | 20.10, 20.04, 18.04, 16.04 | x64, Arm32, Arm64 | [Ubuntu][Ubuntu-lifecycle]
[Alpine]: https://alpinelinux.org/
[Alpine-lifecycle]: https://wiki.alpinelinux.org/wiki/Alpine_Linux:Releases
@ -82,7 +82,7 @@ OS | Version | Architectures |
The following operating systems are no longer supported, starting with .NET 5.0.
* Windows ARM32
* Windows Arm32
* Oracle Linux
## Out of support OS versions

View file

@ -0,0 +1,87 @@
# .NET 5.0.0
.NET 5.0.0 comprises:
* .NET Runtime 5.0.0-rtm.20519.4
* ASP.NET Core 5.0.0-rtm.20526.5
* .NET SDK 5.0.100-rtm.20526.5
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 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/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.
### 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 |
## 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.0.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.0/5.0.0.md
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/08d642f7-8ade-4de3-9eae-b77fd05e5f01/503da91e7ea62d8be06488b014643c12/dotnet-hosting-5.0.0-win.exe

View file

@ -0,0 +1,542 @@
# .NET 5.0.0 - November 10, 2020
The .NET 5.0.0 and .NET SDK 5.0.100 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.0-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.100.20479.15
```
Visit [.NET Documentation](https://docs.microsoft.com/en-us/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. .NET container samples are available at [dotnet/dotnet-docker](https://github.com/dotnet/dotnet-docker/blob/master/samples/README.md). You can use the following command to try running the latest .NET 5.0 release in containers:
```console
docker run --rm -it mcr.microsoft.com/dotnet/samples:5.0
```
The following repos have been updated.
* [dotnet/core/sdk](https://hub.docker.com/_/microsoft-dotnet-core-sdk/): .NET Core SDK
* [dotnet/core/aspnet](https://hub.docker.com/_/microsoft-dotnet-core-aspnet/): ASP.NET Core Runtime
* [dotnet/core/runtime](https://hub.docker.com/_/microsoft-dotnet-core-runtime/): .NET Core Runtime
* [dotnet/core/runtime-deps](https://hub.docker.com/_/microsoft-dotnet-core-runtime-deps/): .NET Core Runtime Dependencies
* [dotnet/core/samples](https://hub.docker.com/_/microsoft-dotnet-core-samples/): .NET Core Samples
## Visual Studio Compatibility
You need [Visual Studio 16.8](https://visualstudio.microsoft.com) or later to us .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/) already supports .NET 5.0 and C# 9.
## Notable Changes
* [What's new in .NET 5.0](https://docs.microsoft.com/dotnet/core/dotnet-five)
* [.NET 5.0 Blog][dotnet-blog]
* [ASP.NET Core Blog][aspnet-blog]
* [EF Core Blog][ef-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.0.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.0-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/5.0.0-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/
[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-5-release-candidate-2/
[ef-blog]: https://devblogs.microsoft.com/dotnet/announcing-entity-framework-core-ef-core-5/
[ef_bugs]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.0+is%3Aclosed+label%3Atype-bug+is%3Aclosed
[ef_features]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A5.0.0+is%3Aclosed+label%3Atype-enhancement+is%3Aclosed
[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.0+label%3ADone+label%3Abug+is%3Aclosed
[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A5.0.0+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.0-install-instructions.md
## Packages updated in this release:
Package name | Version
:----------- | :------------------
System.ServiceModel.Security | 4.8.0.nupkg
System.ServiceModel.Primitives | 4.8.0.nupkg
System.ServiceModel.NetTcp | 4.8.0.nupkg
System.ServiceModel.Http | 4.8.0.nupkg
System.ServiceModel.Federation | 4.8.0.nupkg
System.ServiceModel.Duplex | 4.8.0.nupkg
System.Private.ServiceModel | 4.8.0.nupkg
Microsoft.Extensions.Http.Polly | 5.0.0.nupkg
Microsoft.Extensions.Hosting.WindowsServices | 5.0.0.nupkg
Microsoft.Extensions.Hosting.Systemd | 5.0.0.nupkg
Microsoft.Extensions.Configuration.NewtonsoftJson | 5.0.0.nupkg
Microsoft.Extensions.Caching.StackExchangeRedis | 5.0.0.nupkg
Microsoft.Extensions.Caching.SqlServer | 5.0.0.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x86 | 5.0.0.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-x64 | 5.0.0.nupkg
Microsoft.WindowsDesktop.App.Runtime.win-arm64 | 5.0.0.nupkg
Microsoft.WindowsDesktop.App.Ref | 5.0.0.nupkg
System.Composition.Runtime | 5.0.0.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.linux-musl-arm64.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.linux-musl-x64.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.linux-x64.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.linux-arm.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.linux-arm.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.linux-arm.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.linux-arm.runtime.native.System.IO.Ports | 5.0.0-rtm.20519.4.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.linux-arm64.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.linux-arm64.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.linux-arm64.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.linux-arm64.runtime.native.System.IO.Ports | 5.0.0-rtm.20519.4.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.linux-musl-arm.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.linux-x64.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.linux-x64.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.linux-x64.runtime.native.System.IO.Ports | 5.0.0-rtm.20519.4.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.win-x64.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.win-x64.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.win-x64.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.win-x86.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.win-x86.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.win-x86.Microsoft.NETCore.TestHost | 5.0.0.nupkg
System.CodeDom | 5.0.0.nupkg
System.Collections.Immutable | 5.0.0.nupkg
System.ComponentModel.Annotations | 5.0.0.nupkg
System.ComponentModel.Composition | 5.0.0.nupkg
System.ComponentModel.Composition.Registration | 5.0.0.nupkg
System.Composition | 5.0.0.nupkg
System.Composition.AttributedModel | 5.0.0.nupkg
System.Composition.Convention | 5.0.0.nupkg
System.Composition.Hosting | 5.0.0.nupkg
runtime.win-x64.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.win-arm64.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.win-arm64.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.native.System.IO.Ports | 5.0.0.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.osx-x64.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.osx-x64.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.osx-x64.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.osx-x64.runtime.native.System.IO.Ports | 5.0.0-rtm.20519.4.nupkg
runtime.linux-arm.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.win-arm.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.win-arm.Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
runtime.win-arm.Microsoft.NETCore.TestHost | 5.0.0.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
runtime.win-arm64.Microsoft.NETCore.ILAsm | 5.0.0.nupkg
runtime.win-arm.Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
Microsoft.XmlSerializer.Generator | 5.0.0.nupkg
Microsoft.Extensions.Logging.Console | 5.0.0.nupkg
Microsoft.Extensions.Logging.Debug | 5.0.0.nupkg
Microsoft.Extensions.Logging.EventLog | 5.0.0.nupkg
Microsoft.Extensions.Logging.EventSource | 5.0.0.nupkg
Microsoft.Extensions.Logging.TraceSource | 5.0.0.nupkg
Microsoft.Extensions.Options | 5.0.0.nupkg
Microsoft.Extensions.Options.ConfigurationExtensions | 5.0.0.nupkg
Microsoft.Extensions.Options.DataAnnotations | 5.0.0.nupkg
Microsoft.Extensions.Primitives | 5.0.0.nupkg
Microsoft.ILVerification | 5.0.0.nupkg
Microsoft.IO.Redist | 5.0.0.nupkg
Microsoft.NET.Sdk.IL | 5.0.0.nupkg
Microsoft.NETCore.App.Crossgen2.linux-musl-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Crossgen2.linux-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Crossgen2.win-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Host.linux-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Host.linux-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Host.linux-musl-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Host.linux-musl-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Host.linux-musl-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Host.linux-x64 | 5.0.0.nupkg
Microsoft.Extensions.Logging.Configuration | 5.0.0.nupkg
Microsoft.Extensions.Logging.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.Logging | 5.0.0.nupkg
Microsoft.Diagnostics.Tracing.EventSource.Redist | 5.0.0.nupkg
Microsoft.Extensions.Caching.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.Caching.Memory | 5.0.0.nupkg
Microsoft.Extensions.Configuration | 5.0.0.nupkg
Microsoft.Extensions.Configuration.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.Configuration.Binder | 5.0.0.nupkg
Microsoft.Extensions.Configuration.CommandLine | 5.0.0.nupkg
Microsoft.Extensions.Configuration.EnvironmentVariables | 5.0.0.nupkg
Microsoft.Extensions.Configuration.FileExtensions | 5.0.0.nupkg
Microsoft.Extensions.Configuration.Ini | 5.0.0.nupkg
Microsoft.Extensions.Configuration.Json | 5.0.0.nupkg
Microsoft.NETCore.App.Host.osx-x64 | 5.0.0.nupkg
Microsoft.Extensions.Configuration.UserSecrets | 5.0.0.nupkg
Microsoft.Extensions.DependencyInjection | 5.0.0.nupkg
Microsoft.Extensions.DependencyInjection.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.DependencyModel | 5.0.0.nupkg
Microsoft.Extensions.FileProviders.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.FileProviders.Composite | 5.0.0.nupkg
Microsoft.Extensions.FileProviders.Physical | 5.0.0.nupkg
Microsoft.Extensions.FileSystemGlobbing | 5.0.0.nupkg
Microsoft.Extensions.Hosting | 5.0.0.nupkg
Microsoft.Extensions.Hosting.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.Http | 5.0.0.nupkg
Microsoft.Extensions.Configuration.Xml | 5.0.0.nupkg
Microsoft.NETCore.App.Host.win-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Host.win-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.osx-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.osx-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.tvos-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.tvos-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.win-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.win-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.win-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.win-x86 | 5.0.0.nupkg
Microsoft.NETCore.DotNetAppHost | 5.0.0.nupkg
Microsoft.NETCore.DotNetHost | 5.0.0.nupkg
Microsoft.NETCore.DotNetHostPolicy | 5.0.0.nupkg
Microsoft.NETCore.DotNetHostResolver | 5.0.0.nupkg
Microsoft.NETCore.ILAsm | 5.0.0.nupkg
Microsoft.NETCore.ILDAsm | 5.0.0.nupkg
Microsoft.NETCore.Platforms | 5.0.0.nupkg
Microsoft.NETCore.Targets | 5.0.0.nupkg
Microsoft.NETCore.TestHost | 5.0.0.nupkg
Microsoft.Win32.Registry | 5.0.0.nupkg
Microsoft.Win32.Registry.AccessControl | 5.0.0.nupkg
Microsoft.Win32.SystemEvents | 5.0.0.nupkg
Microsoft.Windows.Compatibility | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.osx-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.linux-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.osx-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Host.win-x86 | 5.0.0.nupkg
Microsoft.NETCore.App.Ref | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.android-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.android-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.android-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.android-x86 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.browser-wasm | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.ios-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.ios-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.ios-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Host.win-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.ios-x86 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.linux-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.linux-musl-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.linux-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-arm | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.linux-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-arm64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.Mono.LLVM.AOT.linux-x64 | 5.0.0.nupkg
Microsoft.NETCore.App.Runtime.linux-arm | 5.0.0.nupkg
System.Composition.TypedParts | 5.0.0.nupkg
System.Configuration.ConfigurationManager | 5.0.0.nupkg
System.Data.Odbc | 5.0.0.nupkg
Microsoft.Bcl.AsyncInterfaces | 5.0.0.nupkg
System.Security.Cryptography.OpenSsl | 5.0.0.nupkg
System.Security.Cryptography.Pkcs | 5.0.0.nupkg
System.Security.Cryptography.ProtectedData | 5.0.0.nupkg
System.Security.Cryptography.Xml | 5.0.0.nupkg
System.Security.Permissions | 5.0.0.nupkg
System.Security.Principal.Windows | 5.0.0.nupkg
System.ServiceModel.Syndication | 5.0.0.nupkg
System.ServiceProcess.ServiceController | 5.0.0.nupkg
System.Text.Encoding.CodePages | 5.0.0.nupkg
System.Text.Encodings.Web | 5.0.0.nupkg
System.Text.Json | 5.0.0.nupkg
System.Threading.AccessControl | 5.0.0.nupkg
System.Threading.Channels | 5.0.0.nupkg
System.Threading.Tasks.Dataflow | 5.0.0.nupkg
System.Windows.Extensions | 5.0.0.nupkg
System.Security.Cryptography.Cng | 5.0.0.nupkg
System.Security.AccessControl | 5.0.0.nupkg
System.Runtime.CompilerServices.Unsafe | 5.0.0.nupkg
System.Runtime.Caching | 5.0.0.nupkg
System.Data.OleDb | 5.0.0.nupkg
System.Diagnostics.DiagnosticSource | 5.0.0.nupkg
System.Diagnostics.EventLog | 5.0.0.nupkg
System.Diagnostics.PerformanceCounter | 5.0.0.nupkg
System.DirectoryServices | 5.0.0.nupkg
System.DirectoryServices.AccountManagement | 5.0.0.nupkg
System.DirectoryServices.Protocols | 5.0.0.nupkg
System.Drawing.Common | 5.0.0.nupkg
System.Formats.Asn1 | 5.0.0.nupkg
System.Formats.Cbor | 5.0.0.nupkg
System.IO.FileSystem.AccessControl | 5.0.0.nupkg
System.IO.Packaging | 5.0.0.nupkg
System.IO.Pipes.AccessControl | 5.0.0.nupkg
System.IO.Ports | 5.0.0.nupkg
System.Management | 5.0.0.nupkg
System.Net.Http.Json | 5.0.0.nupkg
System.Net.Http.WinHttpHandler | 5.0.0.nupkg
System.Net.WebSockets.WebSocketProtocol | 5.0.0.nupkg
System.Reflection.Context | 5.0.0.nupkg
System.Reflection.Metadata | 5.0.0.nupkg
System.Reflection.MetadataLoadContext | 5.0.0.nupkg
System.Resources.Extensions | 5.0.0.nupkg
System.IO.Pipelines | 5.0.0.nupkg
dotnet-ilverify | 5.0.0.nupkg
dotnet-sql-cache | 5.0.0.nupkg
AspNetCoreRuntime.5.0.x86 | 5.0.0.nupkg
AspNetCoreRuntime.5.0.x64 | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm64 | 5.0.0.nupkg
Microsoft.AspNetCore.AzureAppServices.HostingStartup | 5.0.0.nupkg
Microsoft.AspNetCore.Authorization | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.WsFederation | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.Twitter | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.OpenIdConnect | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.Negotiate | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.MicrosoftAccount | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.JwtBearer | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.Google | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.Facebook | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.Certificate | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.AzureADB2C.UI | 5.0.0.nupkg
Microsoft.AspNetCore.Authentication.AzureAD.UI | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.win-x86 | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.win-x64 | 5.0.0.nupkg
Microsoft.AspNetCore.App.Ref | 5.0.0.nupkg
Microsoft.AspNetCore.ApiAuthorization.IdentityServer | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-x64 | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64 | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm64 | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.linux-arm | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.osx-x64 | 5.0.0.nupkg
Microsoft.AspNetCore.AzureAppServices.SiteExtension | 5.0.0.nupkg
Microsoft.AspNetCore.App.Runtime.linux-x64 | 5.0.0.nupkg
Microsoft.AspNetCore.AzureAppServicesIntegration | 5.0.0.nupkg
Microsoft.Extensions.Configuration.KeyPerFile | 5.0.0.nupkg
Microsoft.Extensions.ApiDescription.Server | 5.0.0.nupkg
Microsoft.Extensions.ApiDescription.Client | 5.0.0.nupkg
Microsoft.DotNet.Web.Spa.ProjectTemplates.5.0 | 5.0.0.nupkg
Microsoft.DotNet.Web.ProjectTemplates.5.0 | 5.0.0.nupkg
Microsoft.DotNet.Web.ItemTemplates | 5.0.0.nupkg
Microsoft.DotNet.Web.Client.ItemTemplates | 5.0.0.nupkg
Microsoft.dotnet-openapi | 5.0.0.nupkg
Microsoft.CodeAnalysis.Razor | 5.0.0.nupkg
Microsoft.Authentication.WebAssembly.Msal | 5.0.0.nupkg
Microsoft.AspNetCore.TestHost | 5.0.0.nupkg
Microsoft.AspNetCore.SpaServices.Extensions | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.StackExchangeRedis | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.Specification.Tests | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.Protocols.MessagePack | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.Protocols.Json | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.Common | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.Client.Core | 5.0.0.nupkg
Microsoft.AspNetCore.SignalR.Client | 5.0.0.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks | 5.0.0.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore | 5.0.0.nupkg
Microsoft.Extensions.FileProviders.Embedded | 5.0.0.nupkg
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv | 5.0.0.nupkg
Microsoft.JSInterop.WebAssembly | 5.0.0.nupkg
Microsoft.JSInterop | 5.0.0.nupkg
Microsoft.Extensions.WebEncoders | 5.0.0.nupkg
Microsoft.Extensions.ObjectPool | 5.0.0.nupkg
Microsoft.Extensions.Logging.AzureAppServices | 5.0.0.nupkg
Microsoft.Extensions.Localization.Abstractions | 5.0.0.nupkg
Microsoft.Extensions.Localization | 5.0.0.nupkg
Microsoft.Extensions.Identity.Stores | 5.0.0.nupkg
Microsoft.Extensions.Identity.Core | 5.0.0.nupkg
Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic | 5.0.0.nupkg
Microsoft.AspNetCore.HeaderPropagation | 5.0.0.nupkg
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore | 5.0.0.nupkg
Microsoft.AspNetCore.DataProtection.StackExchangeRedis | 5.0.0.nupkg
Microsoft.AspNetCore.DataProtection.Extensions | 5.0.0.nupkg
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore | 5.0.0.nupkg
Microsoft.AspNetCore.DataProtection.Abstractions | 5.0.0.nupkg
Microsoft.AspNetCore.DataProtection | 5.0.0.nupkg
Microsoft.AspNetCore.Cryptography.KeyDerivation | 5.0.0.nupkg
Microsoft.AspNetCore.Cryptography.Internal | 5.0.0.nupkg
Microsoft.AspNetCore.Connections.Abstractions | 5.0.0.nupkg
Microsoft.AspNetCore.ConcurrencyLimiter | 5.0.0.nupkg
Microsoft.AspNetCore.Components.WebAssembly.Server | 5.0.0.nupkg
Microsoft.AspNetCore.Components.WebAssembly.DevServer | 5.0.0.nupkg
Microsoft.AspNetCore.Components.WebAssembly.Authentication | 5.0.0.nupkg
Microsoft.AspNetCore.Components.WebAssembly | 5.0.0.nupkg
Microsoft.AspNetCore.Components.Web | 5.0.0.nupkg
Microsoft.AspNetCore.Components.Forms | 5.0.0.nupkg
Microsoft.AspNetCore.Components.Authorization | 5.0.0.nupkg
Microsoft.AspNetCore.Components.Analyzers | 5.0.0.nupkg
Microsoft.AspNetCore.Components | 5.0.0.nupkg
Microsoft.AspNetCore.Hosting.WindowsServices | 5.0.0.nupkg
Microsoft.AspNetCore.Http.Connections.Client | 5.0.0.nupkg
Microsoft.AspNetCore.Http.Connections.Common | 5.0.0.nupkg
Microsoft.AspNetCore.Http.Features | 5.0.0.nupkg
Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X | 5.0.0.nupkg
Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X | 5.0.0.nupkg
Microsoft.AspNetCore.Razor.Test.MvcShim.ClassLib | 5.0.0.nupkg
Microsoft.AspNetCore.Razor.Test.MvcShim | 5.0.0.nupkg
Microsoft.AspNetCore.Razor.Test.ComponentShim | 5.0.0.nupkg
Microsoft.AspNetCore.Razor.Test.Common | 5.0.0.nupkg
Microsoft.AspNetCore.Razor.Language | 5.0.0.nupkg
Microsoft.AspNetCore.Owin | 5.0.0.nupkg
Microsoft.AspNetCore.Mvc.Testing | 5.0.0.nupkg
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation | 5.0.0.nupkg
Microsoft.AspNetCore.Mvc.Razor.Extensions | 5.0.0.nupkg
Microsoft.AspNetCore.Mvc.NewtonsoftJson | 5.0.0.nupkg
Microsoft.AspNetCore.MiddlewareAnalysis | 5.0.0.nupkg
Microsoft.AspNetCore.Metadata | 5.0.0.nupkg
Microsoft.AspNetCore.JsonPatch | 5.0.0.nupkg
Microsoft.AspNetCore.Identity.UI | 5.0.0.nupkg
Microsoft.AspNetCore.Identity.EntityFrameworkCore | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Tools | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite | 5.0.0.nupkg
dotnet-ef | 5.0.0.nupkg
Microsoft.Data.Sqlite | 5.0.0.nupkg
Microsoft.Data.Sqlite.Core | 5.0.0.nupkg
Microsoft.EntityFrameworkCore | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Abstractions | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Analyzers | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Cosmos | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Design | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.InMemory | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Proxies | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Relational | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Relational.Specification.Tests | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Specification.Tests | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Sqlite | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.Sqlite.Core | 5.0.0.nupkg
Microsoft.EntityFrameworkCore.SqlServer | 5.0.0.nupkg
Microsoft.TemplateSearch.Common | 5.0.0.nupkg
Microsoft.TemplateEngine.Utils | 5.0.0.nupkg
Microsoft.DotNet.Common.ItemTemplates | 5.0.0.nupkg
Microsoft.DotNet.Common.ProjectTemplates.1.x | 5.0.0.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.0 | 5.0.0.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.1 | 5.0.0.nupkg
Microsoft.DotNet.Common.ProjectTemplates.2.2 | 5.0.0.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.0 | 5.0.0.nupkg
Microsoft.DotNet.Common.ProjectTemplates.3.1 | 5.0.0.nupkg
Microsoft.DotNet.Common.ProjectTemplates.5.0 | 5.0.0.nupkg
Microsoft.TemplateEngine.Abstractions | 5.0.0.nupkg
Microsoft.TemplateEngine.Core | 5.0.0.nupkg
Microsoft.TemplateEngine.Core.Contracts | 5.0.0.nupkg
Microsoft.TemplateEngine.Edge | 5.0.0.nupkg
Microsoft.TemplateEngine.IDE | 5.0.0.nupkg
Microsoft.TemplateEngine.Orchestrator.RunnableProjects | 5.0.0.nupkg
[//]: # ( Runtime 5.0.0)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5fc4659b-86c2-4e8f-b409-853e6d8224a5/6de0fc8c6e26f308bf246aaa967c9fc1/dotnet-runtime-5.0.0-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4b114207-eaa2-40fe-8524-bd3c56b2fd9a/1d74fdea8701948c0150c39645455b2f/dotnet-runtime-5.0.0-linux-arm64.tar.gz
[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b6cec2d5-8ff0-4318-86a5-b63af83122f3/b8292678eff99395e008367371d83bc8/dotnet-runtime-5.0.0-linux-musl-arm64.tar.gz
[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a4cbacdd-717e-415d-8695-1503ece2616e/c947d9acc995e9b055068bf4cbd8c81c/dotnet-runtime-5.0.0-linux-musl-x64.tar.gz
[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/c84d49aa-200c-4400-a517-87cce5b7516d/94c89b00380eb212e19538b05f8cb968/dotnet-runtime-5.0.0-linux-x64.tar.gz
[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/9c1b257d-1db8-4dd6-8012-9e1371d28b19/ab6812447b1097b19f5306b2d020c7c1/dotnet-runtime-5.0.0-osx-x64.pkg
[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/112291a5-e3e0-4741-9c66-c9cea6231f3f/3ebd75dfda0492fcbf50c6f939762c46/dotnet-runtime-5.0.0-osx-x64.tar.gz
[dotnet-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/fa94df7a-0350-4ac8-b789-1c4882d753db/acf0462ca7725bd9f5831a201843e19a/dotnet-runtime-5.0.0-win-arm64.exe
[dotnet-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/3ef45865-b9d4-413f-86cb-37baee7c1419/ecaaaae8560a0785668fe1739b3ad521/dotnet-runtime-5.0.0-win-arm64.zip
[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/36a9dc4e-1745-4f17-8a9c-f547a12e3764/ae25e38f20a4854d5e015a88659a22f9/dotnet-runtime-5.0.0-win-x64.exe
[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/4c86f8a0-8f0b-454f-9419-081c2f21b348/52a1d3c12effa2bc1b552a4fd9f53d20/dotnet-runtime-5.0.0-win-x64.zip
[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/a7e15da3-7a15-43c2-a481-cf50bf305214/c69b951e8b47101e90b1289c387bb01a/dotnet-runtime-5.0.0-win-x86.exe
[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/eec32c52-40f5-4ee4-8b3f-a78126c8d2f0/f526f4a1abd052bb58848f18775597ed/dotnet-runtime-5.0.0-win-x86.zip
[//]: # ( WindowsDesktop 5.0.0)
[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/1b3a8899-127a-4465-a3c2-7ce5e4feb07b/1e153ad470768baa40ed3f57e6e7a9d8/windowsdesktop-runtime-5.0.0-win-x64.exe
[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/b2780d75-e54a-448a-95fc-da9721b2b4c2/62310a9e9f0ba7b18741944cbae9f592/windowsdesktop-runtime-5.0.0-win-x86.exe
[//]: # ( ASP 5.0.0)
[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/1c5366e8-9b74-4017-96ae-47fc08832c22/504aed87590bd99c49d053bc6f980b6b/aspnetcore-runtime-5.0.0-linux-arm.tar.gz
[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ac555882-afa3-4f5b-842b-c4cec2ae0e90/84cdd6d47a9f79b6722f0e0a9b258888/aspnetcore-runtime-5.0.0-linux-arm64.tar.gz
[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0f38125f-70f0-451c-8f4e-e7e0b102c1c6/96fce6e16fcbe341657e44023ab3c95c/aspnetcore-runtime-5.0.0-linux-musl-arm64.tar.gz
[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5d97e046-dde3-4d76-8d93-4ca21a628ba0/820bd340cad73af0cf5d568baf48bf83/aspnetcore-runtime-5.0.0-linux-musl-x64.tar.gz
[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ff9a5b2e-704b-4ff2-bf2f-4bac619915af/e771f72b10ad5160ab5f3d70c287e948/aspnetcore-runtime-5.0.0-linux-x64.tar.gz
[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/173b9b16-4d0d-4387-acf0-f113a359ee77/cbc2f6c00ac56c44bda0e3c960e38bd1/aspnetcore-runtime-5.0.0-osx-x64.tar.gz
[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/11b4ed9d-5cf4-4037-a6ed-87a14940637d/a3da5eb099fbd1649dbc90b2b00dc0ad/aspnetcore-runtime-5.0.0-win-arm64.zip
[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/92866d29-a298-4cab-b501-a65e43820f97/88d287b9fb4a12cfcdf4a6be85f4a638/aspnetcore-runtime-5.0.0-win-x64.exe
[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/6ddc3153-7600-4e14-9acb-b672c26c15bb/7ffc45bc16916fbde8a0f4abebe72df0/aspnetcore-runtime-5.0.0-win-x64.zip
[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/115edeeb-c883-45be-90f7-8db7b6b3fa2f/6bf92152b2b9fa9c0d0b08a13b60e525/aspnetcore-runtime-5.0.0-win-x86.exe
[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/43ced5d3-87a1-4891-9877-fa2dda4091d3/7658b8441a46d1ba9650fea4fdd429c0/aspnetcore-runtime-5.0.0-win-x86.zip
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/08d642f7-8ade-4de3-9eae-b77fd05e5f01/503da91e7ea62d8be06488b014643c12/dotnet-hosting-5.0.0-win.exe
[//]: # ( SDK 5.0.100 )
[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e8912d3b-483b-4d6f-bd3a-3066b3194313/20f2261fe4e16e55df4bbe03c65a7648/dotnet-sdk-5.0.100-linux-arm.tar.gz
[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/27840e8b-d61c-472d-8e11-c16784d40091/ae9780ccda4499405cf6f0924f6f036a/dotnet-sdk-5.0.100-linux-arm64.tar.gz
[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7139f9c3-5c9a-41f9-b49a-2a2bc21886fc/90a1fc71b18b7d64baa83c2325eff7b2/dotnet-sdk-5.0.100-linux-musl-x64.tar.gz
[dotnet-sdk-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/820db713-c9a5-466e-b72a-16f2f5ed00e2/628aa2a75f6aa270e77f4a83b3742fb8/dotnet-sdk-5.0.100-linux-x64.tar.gz
[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/3bdcd7d2-1444-4f7d-a254-504a994ffe39/e4f42b83604673f971748c722aa20bec/dotnet-sdk-5.0.100-osx-x64.pkg
[dotnet-sdk-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0871336f-9a83-4ce4-80ca-625d03003369/2eb78456e0b106e9515dc03898d3867a/dotnet-sdk-5.0.100-osx-x64.tar.gz
[dotnet-sdk-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/95ac9cc2-49ec-43ca-9f2a-9230e4d6052e/493cdd41352863d840a7cd0997e4c9e0/dotnet-sdk-5.0.100-win-arm64.exe
[dotnet-sdk-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/f1bf8f4c-ba17-4144-8e4c-e46fd04d8147/f36a2d158383f78e8cea835219830822/dotnet-sdk-5.0.100-win-arm64.zip
[dotnet-sdk-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/2892493e-df43-409e-af68-8b14aa75c029/53156c889fc08f01b7ed8d7135badede/dotnet-sdk-5.0.100-win-x64.exe
[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/7b78bdaa-d0ac-41c4-9fdc-5820d7dc79b6/cea499dd314ba6394ccea51a2a2dcda9/dotnet-sdk-5.0.100-win-x64.zip
[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/caa07f2f-f736-4115-80a1-b9c86fe3e55e/bd8df5ab7aad36795ef2c017594fafad/dotnet-sdk-5.0.100-win-x86.exe
[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/46d55dd1-1630-472c-a951-edb8b0ab23e6/70d97e9619f0d086a99eeef0a465084d/dotnet-sdk-5.0.100-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/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) |
| 2020/08/25 | [5.0.0 Preview 8](https://github.com/dotnet/core/blob/master/release-notes/5.0/preview/5.0.0-preview.8.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-rc.2",
"latest-release-date": "2020-10-13",
"latest-runtime": "5.0.0-rc.2.20475.5",
"latest-sdk": "5.0.100-rc.2.20479.15",
"support-phase": "rc",
"latest-release": "5.0.0",
"latest-release-date": "2020-11-10",
"latest-runtime": "5.0.0",
"latest-sdk": "5.0.100",
"support-phase": "current",
"lifecycle-policy": "https://www.microsoft.com/net/support/policy",
"releases": [
{
"release-date": "2020-11-10",
"release-version": "5.0.0",
"security": false,
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.0/5.0.0.md",
"runtime": {
"version": "5.0.0",
"version-display": "5.0.0",
"vs-version": "",
"vs-mac-version": "",
"files": [
{
"name": "dotnet-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/5fc4659b-86c2-4e8f-b409-853e6d8224a5/6de0fc8c6e26f308bf246aaa967c9fc1/dotnet-runtime-5.0.0-linux-arm.tar.gz",
"hash": "b186bcf68b1fb6fbad750e0716b323e6f474f1977ce413646ecf2b009e2590c66956c44b883cc26263e65d9356ae8cd6f738476cb66a9434cc50d1fc4b11e790"
},
{
"name": "dotnet-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4b114207-eaa2-40fe-8524-bd3c56b2fd9a/1d74fdea8701948c0150c39645455b2f/dotnet-runtime-5.0.0-linux-arm64.tar.gz",
"hash": "c7a5ae2bd4e0edbd3b681c2997ebf1633bfa1cd30a4333cb63fc9945b4e7c9278282516fb5bc22c710ce6fb59dc2e28230c07b0e99826165fa148406ab8afb0f"
},
{
"name": "dotnet-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b6cec2d5-8ff0-4318-86a5-b63af83122f3/b8292678eff99395e008367371d83bc8/dotnet-runtime-5.0.0-linux-musl-arm64.tar.gz",
"hash": "b2858df7e3bc9d45f2014e0d1cab4490b511694881c713dc5af8e472bca6b218d6a9fc94776727310a8e14a38a29d66475f67d3d02783132125c7e9d285d1379"
},
{
"name": "dotnet-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/a4cbacdd-717e-415d-8695-1503ece2616e/c947d9acc995e9b055068bf4cbd8c81c/dotnet-runtime-5.0.0-linux-musl-x64.tar.gz",
"hash": "c112bdc4308c0b49fa4f4f9845bf13bfcfe2debed9166e6e6922f389c043d6f7f55a7cc3e03778c08df3ffd415059b90dfb87ce84c95a0fb1de0a6e9f4428b6f"
},
{
"name": "dotnet-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/c84d49aa-200c-4400-a517-87cce5b7516d/94c89b00380eb212e19538b05f8cb968/dotnet-runtime-5.0.0-linux-x64.tar.gz",
"hash": "d4d67df5ff5f6dde0d865a6e87559955bd57429df396cf7d05fe77f09e6220c67dc5e66439b1801ca4d301a62f81f666122bf4b623b31a46b861677dcafc62a4"
},
{
"name": "dotnet-runtime-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/9c1b257d-1db8-4dd6-8012-9e1371d28b19/ab6812447b1097b19f5306b2d020c7c1/dotnet-runtime-5.0.0-osx-x64.pkg",
"hash": "e41d5565b608e2aafc848852bcbf455e9c08023b5fe582bca921839ea79fb5e956916436b4f46cdc1b9a37ed32d322d77a96bcf6e6385a6e8e62f224cbbeabff"
},
{
"name": "dotnet-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/112291a5-e3e0-4741-9c66-c9cea6231f3f/3ebd75dfda0492fcbf50c6f939762c46/dotnet-runtime-5.0.0-osx-x64.tar.gz",
"hash": "eba97211e158a0c1c15b03a79b42027319d83456dc377a2513c32defb560cd43fcfa1e84154a43243b77ca6b454c4dbc32be4153f0ba9c954c7b1e69ab5d7c53"
},
{
"name": "dotnet-runtime-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/fa94df7a-0350-4ac8-b789-1c4882d753db/acf0462ca7725bd9f5831a201843e19a/dotnet-runtime-5.0.0-win-arm64.exe",
"hash": "b9f17c8a8683710b67e938e65aa90877f2631a54baf02ee1bf8925bf1b858ae9745052209fbdb8b06e4a7289842b44f0342dfe13300be15005a953d12b24830c"
},
{
"name": "dotnet-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3ef45865-b9d4-413f-86cb-37baee7c1419/ecaaaae8560a0785668fe1739b3ad521/dotnet-runtime-5.0.0-win-arm64.zip",
"hash": "b44679eba929f66a488e0e47feb127ab4dba3102422c7df5d6c869440c309f85c5decd179a19ec5ba9897ca3b8592453bcd50ac2530cf4f2c8132562d8ab6a4b"
},
{
"name": "dotnet-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/36a9dc4e-1745-4f17-8a9c-f547a12e3764/ae25e38f20a4854d5e015a88659a22f9/dotnet-runtime-5.0.0-win-x64.exe",
"hash": "989d523afe64e927bef95386b06148e685ef387568dad61cd09ad1ce3805308d835ec765089b1fe622d81a5617ae721af5c9064f195524c1b2a9165111d05c31"
},
{
"name": "dotnet-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/4c86f8a0-8f0b-454f-9419-081c2f21b348/52a1d3c12effa2bc1b552a4fd9f53d20/dotnet-runtime-5.0.0-win-x64.zip",
"hash": "968f2aff18aabc8f9ef0e1a6a3c0c3704d7a010ed453f0d56ded804513ccff913032461f1dbe0ce89522e85fbe5593d444f4310e8fdf7de7c7b72d01912086f1"
},
{
"name": "dotnet-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/a7e15da3-7a15-43c2-a481-cf50bf305214/c69b951e8b47101e90b1289c387bb01a/dotnet-runtime-5.0.0-win-x86.exe",
"hash": "85e657528350fe95996b6f89ab9d836be91d47b82b3c3523c057f61b351c8274e653fef5e77562ef8ac049ed24cd22186b04594828b26dca69a3fcd792d17d72"
},
{
"name": "dotnet-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/eec32c52-40f5-4ee4-8b3f-a78126c8d2f0/f526f4a1abd052bb58848f18775597ed/dotnet-runtime-5.0.0-win-x86.zip",
"hash": "45f31e5709abc69ba29647565ca1abc2a4d3512de257dd178d7efa4ad5715f0e273ae521a47046aaa606c255d007d2764fe02121fa21a9fbdd3ecd612e147534"
}
]
},
"sdk": {
"version": "5.0.100",
"version-display": "5.0.100",
"runtime-version": "5.0.0",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.8, Preview 4)",
"vs-mac-support": "",
"csharp-version": "9.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/e8912d3b-483b-4d6f-bd3a-3066b3194313/20f2261fe4e16e55df4bbe03c65a7648/dotnet-sdk-5.0.100-linux-arm.tar.gz",
"hash": "c61a0910e34a5d7bffee46835242c24a153bf346e0ef1b048a47d12e60408aa722cec0a08fa1461ab615a4f0d09ef470c479d393f93929837f18699c745c1314"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/27840e8b-d61c-472d-8e11-c16784d40091/ae9780ccda4499405cf6f0924f6f036a/dotnet-sdk-5.0.100-linux-arm64.tar.gz",
"hash": "5fceac0a9468097d66af25516da597eb4836b294ed1647ba272ade5c8faea2ed977a95d9ce720c44d71607fa3a0cf9de55afe0e66c0c89ab1cc6736945978204"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7139f9c3-5c9a-41f9-b49a-2a2bc21886fc/90a1fc71b18b7d64baa83c2325eff7b2/dotnet-sdk-5.0.100-linux-musl-x64.tar.gz",
"hash": "c6c7a505ca4152bdc73869f296b0d8d2f78fd764971656ab5a1d7df24904113280617bfe796b98a1b1cdfe81cb65ccbe0647d4faf3b002b3cc06d18e2b7f0d0d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/820db713-c9a5-466e-b72a-16f2f5ed00e2/628aa2a75f6aa270e77f4a83b3742fb8/dotnet-sdk-5.0.100-linux-x64.tar.gz",
"hash": "bec37bfb327c45cc01fd843ef93b22b556f753b04724bba501622df124e7e144c303a4d7e931b5dbadbd4f7b39e5adb8f601cb6293e317ad46d8fe7d52aa9a09"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3bdcd7d2-1444-4f7d-a254-504a994ffe39/e4f42b83604673f971748c722aa20bec/dotnet-sdk-5.0.100-osx-x64.pkg",
"hash": "1faeea85cdeb0abe976f65939cd6a27ffd830c313f1e31518022568f9ecf4ad98bb0512fc39ac898a3d83d8d79d72fe44bad09ff80803f07d1dbdd34ef4a3a7d"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0871336f-9a83-4ce4-80ca-625d03003369/2eb78456e0b106e9515dc03898d3867a/dotnet-sdk-5.0.100-osx-x64.tar.gz",
"hash": "69ccc7c686ac06f6c658d118f59cf1a0e7284b4570375dd88d3e3043098e311745922301f2650d159624d09c4d39a1f3cbdd5daee0e408eef915de839e3bce8f"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/95ac9cc2-49ec-43ca-9f2a-9230e4d6052e/493cdd41352863d840a7cd0997e4c9e0/dotnet-sdk-5.0.100-win-arm64.exe",
"hash": "5386b13e10eb2a34be3ede870c9da145fb1b9259be8ed83a22a490f1bc829ac90c1671d328dca43d6d923278d9d1342fc69c5fc23d2407e6cc80d362d365d575"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f1bf8f4c-ba17-4144-8e4c-e46fd04d8147/f36a2d158383f78e8cea835219830822/dotnet-sdk-5.0.100-win-arm64.zip",
"hash": "d6f5057d5b31521219aa8c0a3e5195eae1892e5281109343c4f5605ef95553bc35471be92e0a68cd26b7d80b2b9c5653ddcedcba2a84d14a3b8f44457073e15f"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2892493e-df43-409e-af68-8b14aa75c029/53156c889fc08f01b7ed8d7135badede/dotnet-sdk-5.0.100-win-x64.exe",
"hash": "14c6a264451c48b6f7b0266adc9a0ffe0ebf9b954068531585e503e0c6b7ed4921822fb64de0bca31bf4065cd3ecf1d61bd6aa242c5e930affbdcb2bb6eaaf5d"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7b78bdaa-d0ac-41c4-9fdc-5820d7dc79b6/cea499dd314ba6394ccea51a2a2dcda9/dotnet-sdk-5.0.100-win-x64.zip",
"hash": "6836916bc6f3f9f7c183eb49fa1f6130640bcf623f310785466cb36c98f0554d656ec69ce3524f22d1e0d21528796182c7b4f0ed7c66e37cbc0ecbcd9f59bcd5"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/caa07f2f-f736-4115-80a1-b9c86fe3e55e/bd8df5ab7aad36795ef2c017594fafad/dotnet-sdk-5.0.100-win-x86.exe",
"hash": "66b2b126cacde2ac31f66aae091a472ab336b14802bb04c54d70f794ac67392c318644ea393e8dbc8b493dfbc5f0c6ddcdd13dc01f17d900650f32973558a999"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/46d55dd1-1630-472c-a951-edb8b0ab23e6/70d97e9619f0d086a99eeef0a465084d/dotnet-sdk-5.0.100-win-x86.zip",
"hash": "66bb16f536d7223544c97a33499ab35d35ca0648b80012a9fa7ab13184ac84ecf4b0a2ffa9b2c7829cf525777bca873f62d57989a8c68baa1f0ef327b1b3763c"
}
]
},
"sdks": [
{
"version": "5.0.100",
"version-display": "5.0.100",
"runtime-version": "5.0.0",
"vs-version": "",
"vs-mac-version": "",
"vs-support": "Visual Studio 2019 (v16.8, Preview 4)",
"vs-mac-support": "",
"csharp-version": "9.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/e8912d3b-483b-4d6f-bd3a-3066b3194313/20f2261fe4e16e55df4bbe03c65a7648/dotnet-sdk-5.0.100-linux-arm.tar.gz",
"hash": "c61a0910e34a5d7bffee46835242c24a153bf346e0ef1b048a47d12e60408aa722cec0a08fa1461ab615a4f0d09ef470c479d393f93929837f18699c745c1314"
},
{
"name": "dotnet-sdk-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/27840e8b-d61c-472d-8e11-c16784d40091/ae9780ccda4499405cf6f0924f6f036a/dotnet-sdk-5.0.100-linux-arm64.tar.gz",
"hash": "5fceac0a9468097d66af25516da597eb4836b294ed1647ba272ade5c8faea2ed977a95d9ce720c44d71607fa3a0cf9de55afe0e66c0c89ab1cc6736945978204"
},
{
"name": "dotnet-sdk-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7139f9c3-5c9a-41f9-b49a-2a2bc21886fc/90a1fc71b18b7d64baa83c2325eff7b2/dotnet-sdk-5.0.100-linux-musl-x64.tar.gz",
"hash": "c6c7a505ca4152bdc73869f296b0d8d2f78fd764971656ab5a1d7df24904113280617bfe796b98a1b1cdfe81cb65ccbe0647d4faf3b002b3cc06d18e2b7f0d0d"
},
{
"name": "dotnet-sdk-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/820db713-c9a5-466e-b72a-16f2f5ed00e2/628aa2a75f6aa270e77f4a83b3742fb8/dotnet-sdk-5.0.100-linux-x64.tar.gz",
"hash": "bec37bfb327c45cc01fd843ef93b22b556f753b04724bba501622df124e7e144c303a4d7e931b5dbadbd4f7b39e5adb8f601cb6293e317ad46d8fe7d52aa9a09"
},
{
"name": "dotnet-sdk-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/3bdcd7d2-1444-4f7d-a254-504a994ffe39/e4f42b83604673f971748c722aa20bec/dotnet-sdk-5.0.100-osx-x64.pkg",
"hash": "1faeea85cdeb0abe976f65939cd6a27ffd830c313f1e31518022568f9ecf4ad98bb0512fc39ac898a3d83d8d79d72fe44bad09ff80803f07d1dbdd34ef4a3a7d"
},
{
"name": "dotnet-sdk-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0871336f-9a83-4ce4-80ca-625d03003369/2eb78456e0b106e9515dc03898d3867a/dotnet-sdk-5.0.100-osx-x64.tar.gz",
"hash": "69ccc7c686ac06f6c658d118f59cf1a0e7284b4570375dd88d3e3043098e311745922301f2650d159624d09c4d39a1f3cbdd5daee0e408eef915de839e3bce8f"
},
{
"name": "dotnet-sdk-win-arm64.exe",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/95ac9cc2-49ec-43ca-9f2a-9230e4d6052e/493cdd41352863d840a7cd0997e4c9e0/dotnet-sdk-5.0.100-win-arm64.exe",
"hash": "5386b13e10eb2a34be3ede870c9da145fb1b9259be8ed83a22a490f1bc829ac90c1671d328dca43d6d923278d9d1342fc69c5fc23d2407e6cc80d362d365d575"
},
{
"name": "dotnet-sdk-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/f1bf8f4c-ba17-4144-8e4c-e46fd04d8147/f36a2d158383f78e8cea835219830822/dotnet-sdk-5.0.100-win-arm64.zip",
"hash": "d6f5057d5b31521219aa8c0a3e5195eae1892e5281109343c4f5605ef95553bc35471be92e0a68cd26b7d80b2b9c5653ddcedcba2a84d14a3b8f44457073e15f"
},
{
"name": "dotnet-sdk-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/2892493e-df43-409e-af68-8b14aa75c029/53156c889fc08f01b7ed8d7135badede/dotnet-sdk-5.0.100-win-x64.exe",
"hash": "14c6a264451c48b6f7b0266adc9a0ffe0ebf9b954068531585e503e0c6b7ed4921822fb64de0bca31bf4065cd3ecf1d61bd6aa242c5e930affbdcb2bb6eaaf5d"
},
{
"name": "dotnet-sdk-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/7b78bdaa-d0ac-41c4-9fdc-5820d7dc79b6/cea499dd314ba6394ccea51a2a2dcda9/dotnet-sdk-5.0.100-win-x64.zip",
"hash": "6836916bc6f3f9f7c183eb49fa1f6130640bcf623f310785466cb36c98f0554d656ec69ce3524f22d1e0d21528796182c7b4f0ed7c66e37cbc0ecbcd9f59bcd5"
},
{
"name": "dotnet-sdk-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/caa07f2f-f736-4115-80a1-b9c86fe3e55e/bd8df5ab7aad36795ef2c017594fafad/dotnet-sdk-5.0.100-win-x86.exe",
"hash": "66b2b126cacde2ac31f66aae091a472ab336b14802bb04c54d70f794ac67392c318644ea393e8dbc8b493dfbc5f0c6ddcdd13dc01f17d900650f32973558a999"
},
{
"name": "dotnet-sdk-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/46d55dd1-1630-472c-a951-edb8b0ab23e6/70d97e9619f0d086a99eeef0a465084d/dotnet-sdk-5.0.100-win-x86.zip",
"hash": "66bb16f536d7223544c97a33499ab35d35ca0648b80012a9fa7ab13184ac84ecf4b0a2ffa9b2c7829cf525777bca873f62d57989a8c68baa1f0ef327b1b3763c"
}
]
}
],
"aspnetcore-runtime": {
"version": "5.0.0",
"version-display": "5.0.0",
"version-aspnetcoremodule": [
"15.0.20300.0"
],
"vs-version": "",
"files": [
{
"name": "aspnetcore-runtime-linux-arm.tar.gz",
"rid": "linux-arm",
"url": "https://download.visualstudio.microsoft.com/download/pr/1c5366e8-9b74-4017-96ae-47fc08832c22/504aed87590bd99c49d053bc6f980b6b/aspnetcore-runtime-5.0.0-linux-arm.tar.gz",
"hash": "998b4a4b6f8f945b7521f560b3ca330c1d6e5e7f60d31727389cb1adef45a818846bf083dd8735fc9996eb030ecd1cc93f799ed7ab531ce0d11ef01bcfdde95f"
},
{
"name": "aspnetcore-runtime-linux-arm64.tar.gz",
"rid": "linux-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ac555882-afa3-4f5b-842b-c4cec2ae0e90/84cdd6d47a9f79b6722f0e0a9b258888/aspnetcore-runtime-5.0.0-linux-arm64.tar.gz",
"hash": "13e174de1cf10135531468c2a76852de2c37253f4d8b487ff25d249c2d7a1c590475545ca246515338baff2950422ec6c5ffe2180e8327f25cb5f9fede696ccc"
},
{
"name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
"rid": "linux-musl-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0f38125f-70f0-451c-8f4e-e7e0b102c1c6/96fce6e16fcbe341657e44023ab3c95c/aspnetcore-runtime-5.0.0-linux-musl-arm64.tar.gz",
"hash": "fb0703d66b223fed4d9d7d18c943e3a56fe7048b747a98edfce5abbebf37bcbf9e76bba50822704d028ecd004a48d72a1cab9a1ef4f2a99acb3f7fa6480349d9"
},
{
"name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
"rid": "linux-musl-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/5d97e046-dde3-4d76-8d93-4ca21a628ba0/820bd340cad73af0cf5d568baf48bf83/aspnetcore-runtime-5.0.0-linux-musl-x64.tar.gz",
"hash": "1f36800145889f6e8dd823deffce309094d35c646e231fd36fa488c83df76db7b6166eea1d50db0513e0730ca33540cb081f7675ea255135e4e553e7aa5ef2ce"
},
{
"name": "aspnetcore-runtime-linux-x64.tar.gz",
"rid": "linux-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/ff9a5b2e-704b-4ff2-bf2f-4bac619915af/e771f72b10ad5160ab5f3d70c287e948/aspnetcore-runtime-5.0.0-linux-x64.tar.gz",
"hash": "402046ee144915ef7d75a788cf19552eea56cf897681721b74bfc403fd366f71eb7e56f6b83ea299b6b812c6b87378c15e7bfe249415427dcd147dfeacd084d0"
},
{
"name": "aspnetcore-runtime-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/173b9b16-4d0d-4387-acf0-f113a359ee77/cbc2f6c00ac56c44bda0e3c960e38bd1/aspnetcore-runtime-5.0.0-osx-x64.tar.gz",
"hash": "b47a9958f5412b22edb2cb47702ad442c389901ede3ca2a7f75d901f8ed608494431849f498c2191327065ff1db52a1658b1a8c0feb53aaec4c814fb0baf6818"
},
{
"name": "aspnetcore-runtime-win-arm64.zip",
"rid": "win-arm64",
"url": "https://download.visualstudio.microsoft.com/download/pr/11b4ed9d-5cf4-4037-a6ed-87a14940637d/a3da5eb099fbd1649dbc90b2b00dc0ad/aspnetcore-runtime-5.0.0-win-arm64.zip",
"hash": "4a2b3739dc0b1dd8577cf68aa3d382a52bb9be0470552213b658f3a59d504823d83a903f774a34470220f058cdc3dd068318344a1104950ad5ffc8c0d13cef09"
},
{
"name": "aspnetcore-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/92866d29-a298-4cab-b501-a65e43820f97/88d287b9fb4a12cfcdf4a6be85f4a638/aspnetcore-runtime-5.0.0-win-x64.exe",
"hash": "723ecbb1158d6b2878c1983b48f4dc4e8487b5dac15992ed1fe5bf1ccb5ee2c9332eb8cad8a452d585fdc2b99e38c337e87d03eec9616694f1e6e99825ba455f"
},
{
"name": "aspnetcore-runtime-win-x64.zip",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/6ddc3153-7600-4e14-9acb-b672c26c15bb/7ffc45bc16916fbde8a0f4abebe72df0/aspnetcore-runtime-5.0.0-win-x64.zip",
"hash": "ead6b1e12361261124bb89de1e77dba9469ce00483d963b237ce1e2a17500e420c2bd078c2732e7ce269e23ee3922b880f88ade9c1426c7170045fec1818ece4"
},
{
"name": "aspnetcore-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/115edeeb-c883-45be-90f7-8db7b6b3fa2f/6bf92152b2b9fa9c0d0b08a13b60e525/aspnetcore-runtime-5.0.0-win-x86.exe",
"hash": "594e013abc6fbe96f0d95f6c69be9522da985c8e627166492c39f5db0ffcffb445549ccfd61171ef6e8be374afcb477455ed7b189b91eb9aa6656ac7e0f65da2"
},
{
"name": "aspnetcore-runtime-win-x86.zip",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/43ced5d3-87a1-4891-9877-fa2dda4091d3/7658b8441a46d1ba9650fea4fdd429c0/aspnetcore-runtime-5.0.0-win-x86.zip",
"hash": "a36b96c34c0c6a7e47f484a45c9ba02f1e7b44ea7dfed9289d0e37ea4af366bb0a8e0a4dd5a67efab5d1fd01a42d67ece1a001ea7b15b050ef35eea67094df60"
},
{
"name": "dotnet-hosting-win.exe",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/08d642f7-8ade-4de3-9eae-b77fd05e5f01/503da91e7ea62d8be06488b014643c12/dotnet-hosting-5.0.0-win.exe",
"hash": "a887fa32615237d6174f5b8c537c25d2413f928d9f24c0414356b2d0a01bde7ee5874db45e344dbf7c8de4ce1c7034a175c29bfd0ce1f27820412098adc5b64e",
"akams": "https://aka.ms/dotnetcore-5-0-windowshosting"
}
]
},
"windowsdesktop": {
"version": "5.0.0",
"version-display": "5.0.0",
"files": [
{
"name": "windowsdesktop-runtime-win-x64.exe",
"rid": "win-x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/1b3a8899-127a-4465-a3c2-7ce5e4feb07b/1e153ad470768baa40ed3f57e6e7a9d8/windowsdesktop-runtime-5.0.0-win-x64.exe",
"hash": "243986604ea7ec1332960536e6a534b7755d2bf29a585ca7e5bcd60570ab72c0f8ace0755b0e1a0a5972dc77c28bb3a5f152f8ed84d2acb2fa76c22916ac4376"
},
{
"name": "windowsdesktop-runtime-win-x86.exe",
"rid": "win-x86",
"url": "https://download.visualstudio.microsoft.com/download/pr/b2780d75-e54a-448a-95fc-da9721b2b4c2/62310a9e9f0ba7b18741944cbae9f592/windowsdesktop-runtime-5.0.0-win-x86.exe",
"hash": "144df140b566aa76b4bbc6259288d832df36935325c90af4cb9c28027f8625bdddd8369b03787d78e7a0502597ed809fbd20411549b4b93b127e88ce94b36e27"
}
]
}
},
{
"release-date": "2020-10-13",
"release-version": "5.0.0-rc.2",

View file

@ -7,8 +7,8 @@ The latest supported release is [.NET Core 3.1](3.1).
You can download the latest updates for .NET Core.
* [.NET 5.0 RC 2](5.0/preview/5.0.0-rc.2.md)
* [.NET Core 3.1.9](3.1/3.1.9/3.1.9.md)
* [.NET 5.0](5.0/5.0.0/5.0.0.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,22 +2,22 @@
"releases-index": [
{
"channel-version": "5.0",
"latest-release": "5.0.0-rc.2",
"latest-release-date": "2020-10-13",
"latest-release": "5.0.0",
"latest-release-date": "2020-11-10",
"security": false,
"latest-runtime": "5.0.0-rc.2.20475.5",
"latest-sdk": "5.0.100-rc.2.20479.15",
"latest-runtime": "5.0.0",
"latest-sdk": "5.0.100",
"product": ".NET",
"support-phase": "rc",
"support-phase": "current",
"releases.json": "https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json"
},
{
"channel-version": "3.1",
"latest-release": "3.1.9",
"latest-release-date": "2020-10-13",
"latest-release": "3.1.10",
"latest-release-date": "2020-11-10",
"security": false,
"latest-runtime": "3.1.9",
"latest-sdk": "3.1.403",
"latest-runtime": "3.1.10",
"latest-sdk": "3.1.404",
"product": ".NET Core",
"support-phase": "lts",
"eol-date": "2022-12-03",