dotnet-core/release-notes/download-archives/1.1.10-download.md
2021-02-24 09:35:54 -08:00

13 KiB

.NET Core 1.1.10

.NET Core 1.1.10 comprises:

  • .NET Core Runtime 1.1.10
  • .NET Core SDK 1.1.11

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 Hosting Bundle1
macOS x64 x64 x64 x64 -
CentOS 7 - x64 - x64 -
Debian 8 - x64 - x64 -
Debian 9 - x64 - x64 -
Fedora 27 - x64 - x64 -
Fedora 28 - x64 - x64 -
RHEL 7 - x64 - x64 -
Ubuntu 14.04 See installations steps below x64 - x64 -
Ubuntu 16.04 See installations steps below x64 - x64 -
Ubuntu 18.04 See installations steps below x64 - x64 -
Checksums SDK - Runtime - -
Symbols - - Runtime | Shared Framework | Setup - -
  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

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 for the requirements.

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.

In your command prompt, run the following commands:

# Ubuntu 14.04, 16,04 and 18.04
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-dev-1.1.11

Run applications

If you only need to run existing applications, run the following command.

# Ubuntu 14.04, 16,04 and 18.04
sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.1.10

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

Windows Server Hosting

If you are looking to host stand-alone apps on Windows Servers, the ASP.NET Core Module for IIS can be installed separately on servers without installing .NET Core runtime. You can download the Windows (Server Hosting) installer and run the following command from an Administrator command prompt:

DotNetCore.1.0.13_1.1.10-WindowsHosting.exe