From 9acf21893913371cf9617f7f5a153eac4f4a826c Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Wed, 16 Nov 2016 10:00:20 -0800 Subject: [PATCH 1/3] Add preview3 download page --- release-notes/preview3-download.md | 72 ++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 release-notes/preview3-download.md diff --git a/release-notes/preview3-download.md b/release-notes/preview3-download.md new file mode 100644 index 00000000..ff2d20b4 --- /dev/null +++ b/release-notes/preview3-download.md @@ -0,0 +1,72 @@ +# .NET Core 1.1 Preview 1 and .NET Core SDK 1.0 Preview 2.1 + +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 | +| ----------------------- | :----------------------------------------------: | :----------------------------------------------:| +| Windows | [32-bit](https://go.microsoft.com/fwlink/?LinkID=835132) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=835138) | [32-bit](https://go.microsoft.com/fwlink/?LinkID=835139) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=835127) | +| macOS | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835133) | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835129) | +| CentOS 7.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835137) | +| Debian 8 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835131) | +| Fedora 23 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835126) | +| openSUSE 13.2 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835134) | +| Ubuntu 14.04 | See notes below for Ubuntu 14.04 and Mint 17 installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835135) | +| Ubuntu 16.04 | See notes below for Ubuntu 16.04 and Mint 18 installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=835136) | + +## 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 +``` + +## Ubuntu installation + +dotnet-host-ubuntu-x64.deb +dotnet-hostfxr-ubuntu-x64.deb +dotnet-sharedframework-ubuntu-x64.deb +dotnet-sdk-ubuntu-x64.1.0.0-preview3-004056.deb + +### Set up package source + +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. + +#### Ubuntu 14.04 and Linux Mint 17 + +```bash +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-dev-preview3-004056 + +``` + +Installed packages + +``` +dotnet-host-ubuntu-x64.1.0.1.deb +dotnet-hostfxr-ubuntu-x64.1.0.1.deb +dotnet-sharedframework-ubuntu-x64.1.0.1.deb +dotnet-sdk-ubuntu-x64.1.0.0-preview3-004056.deb +``` + +#### Ubuntu 16.04 and Linux Mint 18 + +```bash +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-dev-preview3-004056 +``` + +Installed packages + +``` +dotnet-host-ubuntu.16.04-x64.1.0.1.deb +dotnet-hostfxr-ubuntu.16.04-x64.1.0.1.deb +dotnet-sharedframework-ubuntu.16.04-x64.1.0.1.deb +dotnet-sdk-ubuntu.16.04-x64.1.0.0-preview3-004056.deb +``` From c9c1c9142cae9c5917d2dedaca5c1cbadd03525f Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Wed, 16 Nov 2016 10:04:09 -0800 Subject: [PATCH 2/3] Update header text --- release-notes/preview3-download.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release-notes/preview3-download.md b/release-notes/preview3-download.md index ff2d20b4..7e723611 100644 --- a/release-notes/preview3-download.md +++ b/release-notes/preview3-download.md @@ -1,6 +1,6 @@ -# .NET Core 1.1 Preview 1 and .NET Core SDK 1.0 Preview 2.1 +# .NET Core SDK 1.0 Preview 3 build 004506 -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. +The installers and binary archives on this page include .NET Core 1.0 SDK Preview 3. | .NET Core 1.1 Preview 1 | Installer | Binaries | | ----------------------- | :----------------------------------------------: | :----------------------------------------------:| From a37c6edc340d796874218127427dcc06f307b436 Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Wed, 16 Nov 2016 10:06:03 -0800 Subject: [PATCH 3/3] Fix build number --- release-notes/preview3-download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/preview3-download.md b/release-notes/preview3-download.md index 7e723611..a428db31 100644 --- a/release-notes/preview3-download.md +++ b/release-notes/preview3-download.md @@ -1,4 +1,4 @@ -# .NET Core SDK 1.0 Preview 3 build 004506 +# .NET Core SDK 1.0 Preview 3 build 004056 The installers and binary archives on this page include .NET Core 1.0 SDK Preview 3.