From 37a91b1e99a72c16c4ad0367e93fa7df84a6665b Mon Sep 17 00:00:00 2001 From: Neil Anderson Date: Sat, 1 Apr 2017 15:48:04 -0400 Subject: [PATCH] Highlight the EntityFrameworkCore.InMemory line (#3136) Line 12 refers to the Microsoft.AspNetCore.Mvc package, I believe the documentation intended to highlight the Microsoft.EntityFrameworkCore.InMemory line 14. --- aspnetcore/tutorials/first-web-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-web-api.md b/aspnetcore/tutorials/first-web-api.md index 90da85ea4b..9c9a8f94b7 100644 --- a/aspnetcore/tutorials/first-web-api.md +++ b/aspnetcore/tutorials/first-web-api.md @@ -73,7 +73,7 @@ Install the [Entity Framework Core InMemory](https://docs.microsoft.com/en-us/ef Edit the *TodoApi.csproj* file. In Solution Explorer, right-click the project. Select **Edit TodoApi.csproj**. In the `ItemGroup` element, add the highlighted `PackageReference`: -[!code-xml[Main](first-web-api/sample/TodoApi/TodoApi.csproj?highlight=12)] +[!code-xml[Main](first-web-api/sample/TodoApi/TodoApi.csproj?highlight=14)] ### Add a model class