From d4c4d5cd2cdcd254e1088e0b8c9dcaac332c05a8 Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Tue, 25 Oct 2016 16:56:14 -0700 Subject: [PATCH] Add download page for runtime-only packages --- release-notes/preview-download.md | 4 ++-- release-notes/preview-runtime-download.md | 26 +++++++++++++++++++++++ 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 release-notes/preview-runtime-download.md diff --git a/release-notes/preview-download.md b/release-notes/preview-download.md index 9090825b..5065116c 100644 --- a/release-notes/preview-download.md +++ b/release-notes/preview-download.md @@ -1,6 +1,6 @@ -# .NET Core 1.1 Preview 1 +# .NET Core 1.1 Preview 1 and .NET Core SDK 1.0 Preview 2.1 -Download the installer or binary archive for your platform. +The installers and binary archives on this page include .NET Core 1.1 Preview 1 (runtime and shared framework) and the .NET Core 1.0 SDK Preview 2.1. If you only need the runtime and shared framework (no SDK), download links are available on the [Runtime Download](https://github.com/dotnet/core/blob/master/release-notes/preview-runtime-download.md) page. | .NET Core 1.1 Preview 1 | Installer | Binaries | | ----------------------- | :----------------------------------------------: | :----------------------------------------------:| diff --git a/release-notes/preview-runtime-download.md b/release-notes/preview-runtime-download.md new file mode 100644 index 00000000..2bcc01ca --- /dev/null +++ b/release-notes/preview-runtime-download.md @@ -0,0 +1,26 @@ +# .NET Core 1.1 Preview 1 + +This page provides download links for .NET Core 1.1 Preview 1 runtime and shared framework only. If you also need the SDK, use the download links on the main [Preview 1 download](https://github.com/dotnet/core/blob/master/release-notes/preview-download.md) page. + +| .NET Core 1.1 Preview 1 | Installer | Binaries | +| ----------------------- | :----------------------------------------------: | :----------------------------------------------:| +| Windows | [32-bit](https://go.microsoft.com/fwlink/?LinkID=831452) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=831444) | [32-bit](https://go.microsoft.com/fwlink/?LinkID=831483) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=831476) | +| macOS | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831446) | - | +| CentOS 7.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831487) | +| Debian 8 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831477) | +| Fedora 23 / 24 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831484) | +| openSUSE 13.2 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831491) | +| openSUSE 42.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831475) | +| Ubuntu 14.04 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831468) | +| Ubuntu 16.04 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831482) | +| Ubuntu 16.10 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831490) | + +## Installation from a binary archive + +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. + +```bash +sudo mkdir -p /opt/dotnet +sudo tar zxf [tar.gz filename] -C /opt/dotnet +sudo ln -s /opt/dotnet/dotnet /usr/local/bin +``` \ No newline at end of file