Skip to content

Commit 82a57dd

Browse files
authored
Adding more of tdykstra's review suggestions
1 parent 5484522 commit 82a57dd

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

aspnetcore/tutorials/first-web-api.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: "Tutorial: Create a web API with ASP.NET Core"
2+
title: "Tutorial: Create a controller-based web API with ASP.NET Core"
33
author: wadepickett
4-
description: Learn how to build a web API with ASP.NET Core.
4+
description: Learn how to build a controller-based web API with ASP.NET Core.
55
ms.author: wpickett
66
ms.custom: mvc, engagement-fy24
77
ms.date: 02/13/2025
88
uid: tutorials/first-web-api
99
---
1010

11-
# Tutorial: Create a web API with ASP.NET Core
11+
# Tutorial: Create a controller-based web API with ASP.NET Core
1212

1313
[!INCLUDE[](~/includes/not-latest-version.md)]
1414

@@ -57,23 +57,23 @@ The following diagram shows the design of the app.
5757
* In the **Additional information** dialog:
5858
* Confirm the **Framework** is **.NET 9.0 (Standard Term Support)**.
5959
* Confirm the checkbox for **Enable OpenAPI support** is checked.
60+
* Confirm the checkbox for **Do not use top-level statements** is **not** checked.
6061
* Confirm the checkbox for **Use controllers** is checked.
6162
* Select **Create**.
6263

6364
## Add NuGet packages
6465

6566
This tutorial uses the following additional NuGet packages:
66-
* `Microsoft.EntityFrameworkCore.InMemory`: Enables Entity Framework Core to work with an in-memory database rather than an external one, simplifying this tutorial.
67-
* `Swashbuckle.AspNetCore.SwaggerUI`: Provides a user interface for exploring and testing API endpoints interactively through Swagger.
68-
69-
Add the following NuGet packages used in this tutorial.
70-
71-
* From the **Tools** menu, select **NuGet Package Manager > Manage NuGet Packages for Solution**.
72-
* Select the **Browse** tab.
73-
* Enter **Microsoft.EntityFrameworkCore.InMemory** in the search box, and then select `Microsoft.EntityFrameworkCore.InMemory`.
74-
* Select the **Project** checkbox in the right pane and then select **Install**.
75-
* Enter **Swashbuckle.AspNetCore.SwaggerUI** in the search box, and then select `Swashbuckle.AspNetCore.SwaggerUI`.
76-
* Select the **Project** checkbox in the right pane and then select **Install**.
67+
* `Microsoft.EntityFrameworkCore.InMemory`: Enables Entity Framework Core to work with an in-memory database rather than an external one, simplifying this tutorial.
68+
* `Swashbuckle.AspNetCore.SwaggerUI`: Provides a user interface for exploring and testing API endpoints interactively through Swagger.
69+
70+
* Add the following NuGet packages used in this tutorial:
71+
* From the **Tools** menu, select **NuGet Package Manager > Manage NuGet Packages for Solution**.
72+
* Select the **Browse** tab.
73+
* Enter **Microsoft.EntityFrameworkCore.InMemory** in the search box, and then select `Microsoft.EntityFrameworkCore.InMemory`.
74+
* Select the **Project** checkbox in the right pane and then select **Install**.
75+
* Enter **Swashbuckle.AspNetCore.SwaggerUI** in the search box, and then select `Swashbuckle.AspNetCore.SwaggerUI`.
76+
* Select the **Project** checkbox in the right pane and then select **Install**.
7777

7878
# [Visual Studio Code](#tab/visual-studio-code)
7979

0 commit comments

Comments
 (0)