.NET Core 1.1.4 comprises:
SDK Installer | SDK Binaries | Runtime Installer | Runtime Binaries | |
---|---|---|---|---|
Windows | 32-bit / 64-bit | 32-bit / 64-bit | 32-bit / 64-bit | 32-bit / 64-bit |
macOS | 64-bit | 64-bit | 64-bit | 64-bit |
CentOS 7.1 | - | 64-bit | - | 64-bit |
Debian 8 | - | 64-bit | - | 64-bit |
Fedora 24 | - | 64-bit | - | 64-bit |
Ubuntu 14.04 | 64-bit | 64-bit | 64-bit | 64-bit |
Ubuntu 16.04 | 64-bit | 64-bit | 64-bit | 64-bit |
RHEL 7 | - | 64-bit | - | 64-bit |
Checksum files to verify downloads are available as follows:
Debug Symbols
Images for .NET Core 1.1.4 are available on Docker.
Register the Microsoft key, the product repository for your distro and install required system dependencies with the following scripts.
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-xenial-prod xenial main" > /etc/apt/sources.list.d/dotnetdev.list'
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
sudo apt-get update
sudo apt-get install dotnet-dev-1.1.4
Installing from the packages detailed above is recommended and you can also install from binary archive. When using binary archives to install, the contents must be extracted to a user location such as $HOME/dotnet
and a symbolic link created for dotnet
. This is a change from previous versions of .NET Core.
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
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: