From 2f8ef7ef0d90fa91f8267e1b249ad9793e729e7c Mon Sep 17 00:00:00 2001 From: Victor Hurdugaci Date: Sat, 23 Apr 2016 22:09:32 -0700 Subject: [PATCH] Update the readme file with the new name --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d49bd76306..41acfad989 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,16 @@ dotnet-watch ### How To Install -Add `dotnet-watch` to the `tools` section of your `project.json` file: +Add `Microsoft.DotNet.Watcher.Tools` to the `tools` section of your `project.json` file: ``` { ... "tools": { - "dotnet-watch": "1.0.0-*" + "Microsoft.DotNet.Watcher.Tools": { + "version": "1.0.0-*", + "imports": "portable-net451+win8" + } } ... }