.NET Core 3.1.2 - February 18, 2020

January 13, 2025 ยท View on GitHub

.NET Core 3.1.2 is available for download and usage in your environment. This release includes .NET Core 3.1.2 and .NET Core SDK 3.1.102.

The .NET Core SDK 3.1.102 includes .NET Core 3.1 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 3.1.102, the following command will show that you're running version 3.1.102 of the tools.

dotnet --version

Your feedback is important and appreciated. We've created an issue at dotnet/core #4280 for your questions and comments.

Downloads

SDK InstallerSDK BinariesRuntime InstallerRuntime BinariesASP.NET Core RuntimeWindows Desktop Runtime
Windowsx86 | x64x86 | x64 | ARMx86 | x64x86 | x64 | ARMx86 | x64 | ARM | Hosting Bundlex86 | x64
macOSx64x64x64x64x64-
LinuxSnap Installx64 | ARM | ARM64 | x64 Alpine | ARM64 Alpine-x64 | ARM | ARM64 | x64 Alpinex64 | ARM | ARM64 | x64 Alpine | ARM64 Alpine-
RHEL6-x64-x64-
ChecksumsSDK-Runtime---
  1. Includes the .NET Core and ASP.NET Core Runtimes
  2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Core runtime.

Visual Studio Compatibility

Visual Studio compatibility: .NET Core 3.1 requires Visual Studio 2019 16.4 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.

OSDevelopment Environment.NET Core SDK
WindowsVisual Studio 2019 version 16.43.1.102
WindowsVisual Studio 2019 version 16.53.1.200
MacOSVisual Studio for MacVisual Studio for Mac .NET Core Support

Docker Images

The .NET Core Docker images 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".

The following repos have been updated

Azure App Services

  • .NET Core 3.1.2 is being deployed to Azure App Services and the deployment is expected to complete later in February 2020.

.NET Core Lifecycle News

.NET Core 2.2 reached end of life on December 23, 2019. This means .NET Core 2.2 is no longer supported and updates will no longer be provided. We recommend moving to .NET Core 3.1, our long term support (LTS) release.

.NET Core 3.0 will reach end of life on March 3, 2020 which is 3 months after the release of .NET Core 3.1. You can view the Microsoft Support for .NET Core for more information about life-cycle of each product.

See .NET Core Supported OS Lifecycle Policy to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.

Changes in 3.1.2

.NET Core 3.1.2 release carries only non-security fixes.

macOS Notarization Change

Running "dotnet build" will generate dll instead of binary on macOS. This is a planned change to not use the AppHost by default on macOS because of notarization requirements. If you want to opt into using the AppHost, please use following:

<PropertyGroup>
  <UseAppHost>true</UseAppHost>
</PropertyGroup>