The installers and binary archives on this page include .NET Core 1.0.5 SDK 1.0.4.
CheckSum files to verify downloads are available as follows:
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 |
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 |
The following packages contain symbols for all platforms.
When using binary archives to install, we recommend the contents be extracted to /opt/dotnet
and a symbolic link created for dotnet
. If an earlier release of .NET Core is already installed, the directory and symbolic link may already exist. Ubuntu and Mint users should follow the instructions in the Ubuntu Installation section below.
sudo mkdir -p /opt/dotnet
sudo tar zxf [tar.gz filename] -C /opt/dotnet
sudo ln -s /opt/dotnet/dotnet /usr/local/bin
dotnet-host-ubuntu-x64.deb
dotnet-hostfxr-ubuntu-x64.deb
dotnet-sharedframework-ubuntu-x64.deb
dotnet-sdk-ubuntu-x64.1.0.4.deb
The first step is to establish the source feed for the package manager. This is only needed if you have not previously set up the source or if you are installing for the first time.
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893
sudo apt-get update
sudo apt-get install dotnet-sdk-ubuntu-x64.1.0.4
Installed packages
dotnet-host-ubuntu-x64.1.0.4.deb
dotnet-hostfxr-ubuntu-x64.1.0.4.deb
dotnet-sharedframework-ubuntu-x64.1.0.5.deb
dotnet-sdk-ubuntu-x64.1.0.4.deb
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list'
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893
sudo apt-get update
sudo apt-get install dotnet-sdk-ubuntu-x64.1.0.4
Installed packages
dotnet-host-ubuntu.16.04-x64.1.0.4.deb
dotnet-hostfxr-ubuntu.16.04-x64.1.0.4.deb
dotnet-sharedframework-ubuntu.16.04-x64.1.0.5.deb
dotnet-sdk-ubuntu-x64.1.0.4.deb
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.5_1.1.2-WindowsHosting.exe OPT_INSTALL_LTS_REDIST=0 OPT_INSTALL_FTS_REDIST=0
The above mentoned command will install the ASP.NET Core Module (ANCM) only. Not specifying the OPT_INSTALL_LTS_REDIST or OPT_INSTALL_FTS_REDIST values will default those to 1 and will pull in the LTS or FTS as well.