From 7981213df51cb610388490f460ea2e8c919dedda Mon Sep 17 00:00:00 2001
From: Zlatko Knezevic <zlakne@microsoft.com>
Date: Tue, 17 Nov 2015 23:19:39 -0800
Subject: [PATCH 1/2] Add proper Docker link & some basic usage

Add proper link to the Docker Hub for Docker images.
Include some basic usage for the tools in the Readme.md so that
users can have an immidiate start if they come to the repo first.
---
 README.md | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 629ca1c54..6b674404f 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,33 @@ Installers
 Docker
 ------
 
-You can also use our Docker base images found on http://github.com/dotnet/dotnet-docker to set up your dev or testing environment for usage.  
+You can also use our Docker base images found on https://hub.docker.com/r/microsoft/dotnet to set up your dev or testing environment for usage.  
+
+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.
+
+First, you will need to restore the packages:
+	
+	dotnet restore
+	
+This will restore all of the packages that are specified in the project.json file of the given sample.
+
+Then you can either run from source or compile the sample. Running from source is straightforward:
+	
+	dotnet run
+	
+Compiling to IL is done using:
+	
+	dotnet compile
+This will drop a binary in `./bin/[configuration]/[framework]/[binary name]` that you can just run.
+
+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; in general, only simple applications like hello world will work reliably.
+
+	dotnet compile --native
+	
+This will drop a native single binary in `./bin/[configuration]/[framework]/native/[binary name]` that you can run.  
 
 Questions & Comments
 --------------------

From 6b71331ca99323e175a21d8729ff028854b7e8ad Mon Sep 17 00:00:00 2001
From: Zlatko Knezevic <zlakne@microsoft.com>
Date: Wed, 18 Nov 2015 00:03:41 -0800
Subject: [PATCH 2/2] Responding to PR feedback

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 6b674404f..7b88ac06c 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ Compiling to IL is done using:
 	dotnet compile
 This will drop a binary in `./bin/[configuration]/[framework]/[binary name]` that you can just run.
 
-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; in general, only simple applications like hello world will work reliably.
+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