Versions of .NET

Release 2.0.7

  • Released on 2018-04-17
  • Runtime 2.0.7
  • SDK 2.1.105
  • ASP.NET Runtime 2.0.7

Release notes

(Source)

.NET Core April 2018 Update - April 17, 2018

Microsoft is releasing updates for .NET Core and ASP.NET Core. Issues addressed by this update are summarized in the fixes section below.

.NET Core 2.0.7 and SDK 2.1.105 are available for download and usage in your environment.

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

dotnet --version

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

Docker Images

The .NET Core Docker images have been updated for this release. Look for the 2.0.7 images.

Azure AppServices

Deployment of this update to Azure AppServices is in process. Because AppServices is a high availability service, the deployment is carefully staged across regions over a period of time. Deployment will begin in the West US 2 and North Central US regions with remaining regions following over a few days.

Known Issues

Windows Server Hosting bundle (DotNetCore.2.0.7-WindowsHosting.exe) does not contain the updated AspNetCore RuntimePackageStore

Issue DotNetCore.2.0.7-WindowsHosting.exe incorrectly contains the 2.0.5 AspNetCore RuntimePackageStore rather than 2.0.7.

Resolution: If you have already installed the broken installer, download and run the new installer. You can verify the correct version is installed by checking this:

Open the Control Panel and navigate to “Uninstall a program”, or on Windows 10 open Windows settings and navigate to “Apps”. Find the entry for Microsoft .NET Core 2.0.7 – Windows Server Hosting. This entry should show that version 2.0.40314.10011 is installed.

Using Linux package managers to update dotnet-host.x86_64 breaks .NET Core

Issue: Running the package manager update command on Linux systems where .NET Core has been previously installed may offer an update for dotnet-host.x86_64. If the update is allowed to proceed, .NET Core could be in a broken state as only the dotnet host is updated.

Resolution: To install the update, either the Runtime or SDK must be explicitly installed. e.g. sudo [apt-get, yum, dnf, zypper] install dotnet-runtime-2.0.7, if you only need the runtime or sudo [apt-get, yum, dnf, zypper] dotnet-sdk-2.1.105, to install both the SDK and Runtime.

We are working to improve our Linux packages to enable correct package manager update behavior. This work is being tracked in the following issues:

Package and Binary updates

The following packages and binaries are updated by the April 2018 update:

  • System.Console
  • System.Private.Corelib
  • Microsoft.NETCore.Runtime.CoreCLR
  • libcoreclr.so
  • libdbgshim.so
  • libmscordac.so
  • libjit.so
  • crossgen
  • ilasm
  • ildasm

Notable Fixes and Commits

CoreFX

  • [522373a] : Adding support for ncurses 6.1 TERM format on System.Console.

CoreCLR

  • [45c57cc] : Fix detection of YMM regs presence
  • [802ca8c] : Remove flock *usage from InternalCreateFile in PAL
  • [d40ce91] : Fix SIGSEGV in EventPipe on Shutdown
  • [06a1cd1] : Fix uaf in DestroyThread function

Downloads