From 9cae6ff90e3137ecbc039d76bb3f7fd4bc5c8580 Mon Sep 17 00:00:00 2001 From: Zlatko Knezevic Date: Wed, 18 Nov 2015 07:19:05 -0800 Subject: [PATCH 1/4] Adding new stuff to README --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b88ac06c..29f9ec075 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,11 @@ Installers |**Installers**|[Download Debian Package](https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-linux-x64.latest.deb)|[Download Msi](https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-win-x64.latest.msi)|[Download Pkg](https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-osx-x64.latest.pkg) | |**Binaries**|[Download tar file](https://dotnetcli.blob.core.windows.net/dotnet/dev/Binaries/Latest/dotnet-linux-x64.latest.tar.gz)|[Download zip file](https://dotnetcli.blob.core.windows.net/dotnet/dev/Binaries/Latest/dotnet-win-x64.latest.zip)|[Download tar file](https://dotnetcli.blob.core.windows.net/dotnet/dev/Binaries/Latest/dotnet-osx-x64.latest.tar.gz) | +Interested in .NET Core RC1 bits? +--------------------------------- + +This toolchain is independent from the DNX-based .NET Core RC1 bits. If you are looking for the RC1 bits, you can find instructions on the [ASP.NET documentation site](https://docs.asp.net/en/latest/). + Docker ------ @@ -26,7 +31,12 @@ You can also use our Docker base images found on https://hub.docker.com/r/micros Basic usage ----------- -When you have the .NET Command Line Interface installed on your OS of choice, you can try it out using some of the samples on the [main Core repo](https://github.com/dotnet/core/). You can download the sample in a directory, and then do you can kick the tires of the CLI. +When you have the .NET Command Line Interface installed on your OS of choice, you can try it out using some of the samples on the [dotnet/core repo](https://github.com/dotnet/core/tree/master/samples). You can download the sample in a directory, and then do you can kick the tires of the CLI. + +**Note:** on Linux, post-install, please set up the `DOTNET_HOME` environment: `export DOTNET_HOME=/usr/share/dotnet/`. + +**Note:** on OS X, post-install, please set up the `DOTNET_HOME` environment: `export DOTNET_HOME=/usr/local/share/dotnet/cli`. + First, you will need to restore the packages: @@ -43,6 +53,8 @@ Compiling to IL is done using: dotnet compile This will drop a binary in `./bin/[configuration]/[framework]/[binary name]` that you can just run. +**Note: the below is not currently working with the installers above - fix coming ASAP!** + Finally, you can also try out native compilation on Windows and Linux. **Note:** at this point, only the `helloworld` and `dotnetbot` samples will work with native compilation. dotnet compile --native From cf9988a1ce2ac22fe975a997b77aaa2a1d6d381a Mon Sep 17 00:00:00 2001 From: Zlatko Knezevic Date: Wed, 18 Nov 2015 07:40:24 -0800 Subject: [PATCH 2/4] Responding to PR feedback --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 29f9ec075..de9d487c1 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,10 @@ Installers |**Installers**|[Download Debian Package](https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-linux-x64.latest.deb)|[Download Msi](https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-win-x64.latest.msi)|[Download Pkg](https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-osx-x64.latest.pkg) | |**Binaries**|[Download tar file](https://dotnetcli.blob.core.windows.net/dotnet/dev/Binaries/Latest/dotnet-linux-x64.latest.tar.gz)|[Download zip file](https://dotnetcli.blob.core.windows.net/dotnet/dev/Binaries/Latest/dotnet-win-x64.latest.zip)|[Download tar file](https://dotnetcli.blob.core.windows.net/dotnet/dev/Binaries/Latest/dotnet-osx-x64.latest.tar.gz) | -Interested in .NET Core RC1 bits? ---------------------------------- +Interested in .NET Core + ASP.NET 5 RC bits? +---------------------------------------- -This toolchain is independent from the DNX-based .NET Core RC1 bits. If you are looking for the RC1 bits, you can find instructions on the [ASP.NET documentation site](https://docs.asp.net/en/latest/). +This toolchain is independent from the DNX-based .NET Core RC1 bits. If you are looking for the RC1 bits, you can find instructions on the [ASP.NET documentation site](http://get.asp.net/). Docker ------ From 992837b4b8b421167ed7ee0140d38b27d7f71280 Mon Sep 17 00:00:00 2001 From: Zlatko Knezevic Date: Wed, 18 Nov 2015 07:42:12 -0800 Subject: [PATCH 3/4] More PR feedback --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de9d487c1..b5cb24cdb 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Installers Interested in .NET Core + ASP.NET 5 RC bits? ---------------------------------------- -This toolchain is independent from the DNX-based .NET Core RC1 bits. If you are looking for the RC1 bits, you can find instructions on the [ASP.NET documentation site](http://get.asp.net/). +This toolchain is independent from the DNX-based .NET Core + ASP.NET 5 bits. If you are looking for .NET Core + ASP.NET 5 bits bits, you can find instructions on the http://get.asp.net/. Docker ------ From bcadf9e3d7fafb9c10a6885ad2040c3c26c346a5 Mon Sep 17 00:00:00 2001 From: Zlatko Knezevic Date: Wed, 18 Nov 2015 07:44:00 -0800 Subject: [PATCH 4/4] More PR Feedbacl --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5cb24cdb..8d8363256 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Installers Interested in .NET Core + ASP.NET 5 RC bits? ---------------------------------------- -This toolchain is independent from the DNX-based .NET Core + ASP.NET 5 bits. If you are looking for .NET Core + ASP.NET 5 bits bits, you can find instructions on the http://get.asp.net/. +This toolchain is independent from the DNX-based .NET Core + ASP.NET 5 RC bits. If you are looking for .NET Core + ASP.NET 5 RC bits, you can find instructions on the http://get.asp.net/. Docker ------