Skip to content

Commit 672ecb0

Browse files
committed
update dotenet tutorial
1 parent 6080748 commit 672ecb0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/app-service/app-service-web-tutorial-rest-api.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ author: msangapu-msft
1212

1313
# Tutorial: Host a RESTful API with CORS in Azure App Service
1414

15-
[Azure App Service](overview.md) provides a highly scalable self-patching web hosting service. In addition, App Service has built-in support for [cross-origin resource sharing (CORS)](https://wikipedia.org/wiki/Cross-Origin_Resource_Sharing) for RESTful APIs. This tutorial shows how to deploy an ASP.NET Core API app to App Service with CORS support. You configure the app using command-line tools and deploy the app using Git.
15+
[Azure App Service](overview.md) provides a highly scalable self-patching web hosting service. In addition, App Service has built-in support for [cross-origin resource sharing (CORS)](https://wikipedia.org/wiki/Cross-Origin_Resource_Sharing) for RESTful APIs. This tutorial shows how to deploy an ASP.NET API app to App Service with CORS support. You configure the app using command-line tools and deploy the app using Git.
1616

1717
In this tutorial, you learn how to:
1818

@@ -28,11 +28,11 @@ You can complete this tutorial on macOS, Linux, or Windows.
2828
## Prerequisites
2929

3030
* <a href="https://git-scm.com/" target="_blank">Install Git.</a>
31-
* <a href="https://dotnet.microsoft.com/download/dotnet-core/3.1" target="_blank">Install the latest .NET Core 3.1 SDK.</a>
31+
* <a href="https://dotnet.microsoft.com/download/dotnet/9.0" target="_blank">Install the latest .NET 9.0 SDK.</a>
3232

33-
## Create a local ASP.NET Core app
33+
## Create a local ASP.NET app
3434

35-
In this step, you set up the local ASP.NET Core project. App Service supports the same workflow for APIs written in other languages.
35+
In this step, you set up the local ASP.NET project. App Service supports the same workflow for APIs written in other languages.
3636

3737
### Clone the sample application
3838

@@ -67,7 +67,7 @@ In this step, you set up the local ASP.NET Core project. App Service supports th
6767

6868
1. Navigate to `http://localhost:5000/swagger` in a browser to try the Swagger UI.
6969

70-
![Screenshot of an ASP.NET Core API running locally.](./media/app-service-web-tutorial-rest-api/azure-app-service-local-swagger-ui.png)
70+
![Screenshot of an ASP.NET API running locally.](./media/app-service-web-tutorial-rest-api/azure-app-service-local-swagger-ui.png)
7171

7272
1. Navigate to `http://localhost:5000/api/todo` to see a list of ToDo JSON items.
7373

@@ -79,7 +79,7 @@ In this step, you set up the local ASP.NET Core project. App Service supports th
7979

8080
## Deploy the app to Azure
8181

82-
In this step, you deploy your .NET Core application to App Service.
82+
In this step, you deploy your .NET application to App Service.
8383

8484
### Configure local Git deployment
8585

@@ -132,7 +132,7 @@ In this step, you deploy your .NET Core application to App Service.
132132

133133
1. Navigate to `http://<app_name>.azurewebsites.net/swagger` in a browser and view the Swagger UI.
134134

135-
![Screenshot of an ASP.NET Core API running in Azure App Service.](./media/app-service-web-tutorial-rest-api/azure-app-service-browse-app.png)
135+
![Screenshot of an ASP.NET API running in Azure App Service.](./media/app-service-web-tutorial-rest-api/azure-app-service-browse-app.png)
136136

137137
1. Navigate to `http://<app_name>.azurewebsites.net/swagger/v1/swagger.json` to see the _swagger.json_ for your deployed API.
138138

0 commit comments

Comments
 (0)