dotnet-core/release-notes/2.2/preview/2.2.0-preview3-download.md
Omair Majid 0f9b92c251 Use export PATH=$PATH:$HOME/dotnet consistently
The old variant, export PATH=$HOME/dotnet would remove the existing
entries (like /bin) from PATH. Lets not do that. Lets always append to
PATH.

See #2797 and #2498
2019-06-06 10:36:22 -04:00

12 KiB

.NET Core 2.2.0-preview3

.NET Core 2.2.0-preview3 comprises:

  • .NET Core Runtime 2.2.0-preview3-27014-02
  • ASP.NET Core 2.2.0-preview3-35497
  • .NET Core SDK 2.2.100-preview3-009430

See the Release Notes for details about what is included in this update.

SDK Installer1 SDK Binaries1 Runtime Installer Runtime Binaries ASP.NET Core Runtime
Windows x86 | x64 x86 | x64 x86 | x64 x86 | x64 x86 | x64
Hosting Bundle2
macOS x64 x64 x64 x64 x641
Linux See installations steps x64 | ARM | ARM64 | x64 Alpine - x64 | ARM | ARM64 | x64 Alpine x641 | ARM321 | x64 Alpine1
RHEL6 - x64 - x64 -
Checksums SDK - Runtime - -
Symbols - - Runtime | Shared Framework | Setup - ASP.NET Core
  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.

Docker

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".

Installing .NET Core on Linux

The 2.2 Previews will only be available as tar.gz archives for Linux. Package manager installers will be available on the production feeds for final release. Review Linux System Prerequisites for .NET Core to ensure your system is ready for .NET Core.

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 document.

mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet