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/3-exercise-create-project.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,9 +59,11 @@ From a terminal or the command line, create a new project:
59
59
::: zone-end
60
60
61
61
::: zone pivot="vscode"
62
+
62
63
The *MyWebApp* project folder contents are displayed in the Visual Studio Code **Explorer**:
63
64
64
65
:::image type="content" source="../media/vsc-explorer-project-files.png" alt-text="The project files in the Visual Studio Code Explorer":::
66
+
65
67
::: zone-end
66
68
67
69
The following sections contain an overview of the main project folders and files of the empty ASP.NET Core project:
@@ -80,7 +82,9 @@ The *.csproj* project file is used to:
80
82
When an ASP.NET Core project is created or opened in Visual Studio Code (with the C# Dev Kit extension), it creates a *[project name].sln* solution file. The *[project name].sln* solution file contains information for one or more related projects, including build information, settings, and any miscellaneous files that aren’t associated with just one particular project.
81
83
82
84
::: zone-end
85
+
83
86
::: zone pivot="shell"
87
+
84
88
::: zone-end
85
89
86
90
### The *obj* folder
@@ -93,7 +97,7 @@ The *Properties/launchSettings.json* file contains configuration data for how th
93
97
94
98
The *launchSettings.json* file contains the following configuration:
`app.MapGet("/")`: Defines a route for the HTTP GET request. The `/` indicates this route responds to the requests made to the root URL of the app. For example, `http://localhost:{port}/`, where `{port}` is a randomly assigned port number assigned in the *Properties/launchSettings.json* file at project creation.
Copy file name to clipboardExpand all lines: learn-pr/aspnetcore/build-your-first-aspnet-core-web-app/includes/5-exercise-make-code-changes.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,11 @@ Run the web app using the `dotnet watch` command from the command line:
13
13
In Visual Studio Code, if the integrated terminal pane isn't already available, select **New Terminal** from the **Terminal** menu to open the integrated terminal.
14
14
15
15
::: zone-end
16
+
16
17
::: zone pivot="shell"
18
+
17
19
::: zone-end
20
+
18
21
1. Build and Run the app with the following command:
0 commit comments