You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/aspnetcore/build-your-first-aspnet-core-web-app/includes/4-exercise-run-project.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,13 @@ Run the web app in Visual Studio Code and view in a browser:
21
21
22
22
1. At the **Select debugger** prompt in the **Command Palette** at the top of the Visual Studio Code UI, select **C#**. At the next prompt, select the default launch configuration (`C#: MyWebApp [Default Configuration]`):
23
23
24
-
:::image type="content" source="../media/vs-code-select-debugger.png" alt-text="Screenshot of choosing Select debugger in the Command Pallette":::
24
+
:::image type="content" source="../media/vs-code-select-debugger.png" alt-text="Screenshot of choosing Select debugger in the Command Pallette.":::
25
25
26
26
The default browser is launched at `http://localhost:{PORT}`, which displays the app's response. The `{PORT}` placeholder is the random port assigned to the app when the app's project is created. If you need to change the port due to a local port conflict, change the port in the project's *Properties/launchSettings.json* file.
27
27
28
28
The response displayed in the browser:
29
29
30
-
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output":::
30
+
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output.":::
31
31
32
32
1. Close the browser window.
33
33
@@ -65,7 +65,7 @@ Run the web app using the .NET CLI:
65
65
66
66
1. Open a browser to the URL generated at your own command line output, the app's response `Hello World!` is displayed:
67
67
68
-
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output":::
68
+
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output.":::
69
69
70
70
1. Press Ctrl+C at the command line to shut down the app.
71
71
@@ -93,4 +93,4 @@ Request Handling:
93
93
94
94
Response:
95
95
96
-
- The response, which in this case is the string "Hello World!", is sent back through the middleware pipeline to Kestrel, which then sends it back to the client.
96
+
- The response, which in this case is the string "Hello World!", is sent back through the middleware pipeline to Kestrel, which then sends it back to the client.
0 commit comments