From cd90729c4a14b7c25c93505ff754f8f787a544f7 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Thu, 8 Aug 2019 08:12:49 -0700 Subject: [PATCH] Update first-web-api.md (#13722) * Update first-web-api.md * Update first-web-api.md * Update first-web-api.md --- aspnetcore/tutorials/first-web-api.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/aspnetcore/tutorials/first-web-api.md b/aspnetcore/tutorials/first-web-api.md index 968cfd6abb..a72e9d1189 100644 --- a/aspnetcore/tutorials/first-web-api.md +++ b/aspnetcore/tutorials/first-web-api.md @@ -107,6 +107,15 @@ The following diagram shows the design of the app. ![config dialog](first-web-api-mac/_static/2.png) +[!INCLUDE[](~/includes/mac-terminal-access.md)] + +Open a command terminal in the project folder and run the following commands: + + ```console + dotnet add package Microsoft.EntityFrameworkCore.SqlServer --version 3.0.0-* + dotnet add package Microsoft.EntityFrameworkCore.InMemory --version 3.0.0-* + ``` + --- ### Test the API