From f298724dc4e3eab905010de7a0d21522bdc5e75a Mon Sep 17 00:00:00 2001 From: Eric Erhardt Date: Wed, 17 Feb 2016 16:22:25 -0600 Subject: [PATCH] Update developer-guide with the correct paths --- Documentation/developer-guide.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Documentation/developer-guide.md b/Documentation/developer-guide.md index 55f0c40b1..1459f4e7e 100644 --- a/Documentation/developer-guide.md +++ b/Documentation/developer-guide.md @@ -28,12 +28,13 @@ In order to build .NET Command Line Interface, you need the following installed ## Building/Running 1. Run `build.cmd` or `build.sh` from the root depending on your OS. -2. Use `artifacts/{os}-{arch}/stage2/dotnet` to try out the `dotnet` command. You can also add `artifacts/{os}-{arch}/stage2` to the PATH if you want to run `dotnet` from anywhere. +2. Use `artifacts/{os}-{arch}/stage2/bin/dotnet` to try out the `dotnet` command. You can also add `artifacts/{os}-{arch}/stage2/bin` to the PATH if you want to run `dotnet` from anywhere. ## A simple test -1. `cd test\TestApp` -2. `dotnet run` +1. `cd TestAssets\TestProjects\TestSimpleIncrementalApp` +2. `dotnet restore` +3. `dotnet run` ##Adding a Command