From 82e0e0e35219b15eb8f353dc0d804e500dbe89eb Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 6 Aug 2020 13:07:43 -0700 Subject: [PATCH] Remove link to dotnet watch package now that it's included in the SDK (#19429) --- aspnetcore/tutorials/dotnet-watch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/dotnet-watch.md b/aspnetcore/tutorials/dotnet-watch.md index 592b5d8b3d..ad871a6286 100644 --- a/aspnetcore/tutorials/dotnet-watch.md +++ b/aspnetcore/tutorials/dotnet-watch.md @@ -11,7 +11,7 @@ uid: tutorials/dotnet-watch By [Rick Anderson](https://twitter.com/RickAndMSFT) and [Victor Hurdugaci](https://twitter.com/victorhurdugaci) -[dotnet watch](https://www.nuget.org/packages/dotnet-watch) is a tool that runs a [.NET Core CLI](/dotnet/core/tools) command when source files change. For example, a file change can trigger compilation, test execution, or deployment. +`dotnet watch` is a tool that runs a [.NET Core CLI](/dotnet/core/tools) command when source files change. For example, a file change can trigger compilation, test execution, or deployment. This tutorial uses an existing web API with two endpoints: one that returns a sum and one that returns a product. The product method has a bug, which is fixed in this tutorial.