From bf7eaa166c91ea88cc636e53069ace6b21df0fe8 Mon Sep 17 00:00:00 2001 From: Volkan Altan Date: Thu, 27 Oct 2016 17:40:17 +0300 Subject: [PATCH] remove dnx command and use dotnet for mac --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 22f23a67af..5ed228891f 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ This project is part of ASP.NET Core. You can find samples, documentation and ge ## To run the sample on Mac/Mono: * Follow the instructions at the [Home](https://github.com/aspnet/Home) repository to install Mono and DNVM on Mac OS X. -* Open a command prompt and execute `cd \src\MusicStore\`. -* Execute `dnu restore`. -* Try `dnx . kestrel` to run the application. +* Open a command prompt and execute `cd samples/MusicStore.Standalone`. +* Execute `dotnet restore`. +* Try `dotnet run` to run the application. **NOTE:** Since on Mono SQL client is not available the sample uses an InMemoryStore to run the application. So the changes that you make will not be persisted.