dotnet-core/release-notes/download-archives/1.0.7-download.md
2020-10-08 19:17:59 -07:00

7 KiB

.NET Core 1.0.7

.NET Core 1.0.7 comprises:

  • .NET Core Runtime 1.0.7
  • .NET Core SDK 1.1.4
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

Checksum files to verify downloads are available as follows:

Debug Symbols

Docker

Images for .NET Core 1.0.7 are available on Docker.

Installing .NET Core on Linux

Ubuntu and Debian based systems

Register the Microsoft key, the product repository for your distro and install required system dependencies with the following scripts.

Ubuntu 16.04 and Linux Mint 18

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'

Ubuntu 14.04 and Linux Mint 17

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'

Update package cache and install .NET Core

sudo apt-get update
sudo apt-get install dotnet-dev-1.1.4

Installation from a binary archive

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

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.7_1.1.4-WindowsHosting.exe