Skip to content

Commit 9b84e40

Browse files
committed
updates
1 parent 94c1d2f commit 9b84e40

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

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

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -101,38 +101,38 @@ In this step, you deploy your .NET Core application to App Service.
101101

102102
[!INCLUDE [app-service-plan-no-h](../../includes/app-service-web-git-push-to-azure-no-h.md)]
103103

104-
<pre>
105-
Enumerating objects: 83, done.
106-
Counting objects: 100% (83/83), done.
107-
Delta compression using up to 8 threads
108-
Compressing objects: 100% (78/78), done.
109-
Writing objects: 100% (83/83), 22.15 KiB | 3.69 MiB/s, done.
110-
Total 83 (delta 26), reused 0 (delta 0)
111-
remote: Updating branch 'master'.
112-
remote: Updating submodules.
113-
remote: Preparing deployment for commit id '509236e13d'.
114-
remote: Generating deployment script.
115-
remote: Project file path: .\TodoApi.csproj
116-
remote: Generating deployment script for ASP.NET MSBuild16 App
117-
remote: Generated deployment script files
118-
remote: Running deployment command...
119-
remote: Handling ASP.NET Core Web Application deployment with MSBuild16.
120-
remote: .
121-
remote: .
122-
remote: .
123-
remote: Finished successfully.
124-
remote: Running post deployment command(s)...
125-
remote: Triggering recycle (preview mode disabled).
126-
remote: Deployment successful.
127-
To https://&lt;app_name&gt;.scm.azurewebsites.net/&lt;app_name&gt;.git
128-
* [new branch] master -> master
129-
</pre>
104+
<pre>
105+
Enumerating objects: 83, done.
106+
Counting objects: 100% (83/83), done.
107+
Delta compression using up to 8 threads
108+
Compressing objects: 100% (78/78), done.
109+
Writing objects: 100% (83/83), 22.15 KiB | 3.69 MiB/s, done.
110+
Total 83 (delta 26), reused 0 (delta 0)
111+
remote: Updating branch 'master'.
112+
remote: Updating submodules.
113+
remote: Preparing deployment for commit id '509236e13d'.
114+
remote: Generating deployment script.
115+
remote: Project file path: .\TodoApi.csproj
116+
remote: Generating deployment script for ASP.NET MSBuild16 App
117+
remote: Generated deployment script files
118+
remote: Running deployment command...
119+
remote: Handling ASP.NET Core Web Application deployment with MSBuild16.
120+
remote: .
121+
remote: .
122+
remote: .
123+
remote: Finished successfully.
124+
remote: Running post deployment command(s)...
125+
remote: Triggering recycle (preview mode disabled).
126+
remote: Deployment successful.
127+
To https://&lt;app_name&gt;.scm.azurewebsites.net/&lt;app_name&gt;.git
128+
* [new branch] master -> master
129+
</pre>
130130

131131
### Browse to the Azure app
132132

133-
1. Navigate to `http://<app_name>.azurewebsites.net/swagger` in a browser and play with the Swagger UI.
133+
1. Navigate to `http://<app_name>.azurewebsites.net/swagger` in a browser and view the Swagger UI.
134134

135-
![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 Core 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

@@ -142,11 +142,11 @@ In this step, you deploy your .NET Core application to App Service.
142142

143143
Next, you enable the built-in CORS support in App Service for your API.
144144

145-
### Test CORS in sample app
145+
### Test CORS in the sample app
146146

147147
1. In your local repository, open _wwwroot/index.html_.
148148

149-
1. In Line 51, set the `apiEndpoint` variable to the URL of your deployed API (`http://<app_name>.azurewebsites.net`). Replace _\<appname>_ with your app name in App Service.
149+
1. On line 51, set the `apiEndpoint` variable to the URL of your deployed API (`http://<app_name>.azurewebsites.net`). Replace _\<appname>_ with your app name in App Service.
150150

151151
1. In your local terminal window, run the sample app again.
152152

0 commit comments

Comments
 (0)