remove dnx command and use dotnet for mac

This commit is contained in:
Volkan Altan 2016-10-27 17:40:17 +03:00 committed by Kiran Challa
parent 2971909f87
commit bf7eaa166c
1 changed files with 3 additions and 3 deletions

View File

@ -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.