Skip to content

Commit 91ce9ad

Browse files
Merge pull request #13812 from Mikejo5000/mikejo-br25
Update instructions for React, Vue, and Angular tutorials with ASP.NET Core
2 parents 6b58021 + 61b7097 commit 91ce9ad

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

docs/javascript/create-react-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create a React app in Visual Studio
33
description: Create, build, and run a React to-do list web application project from a Visual Studio template.
4-
ms.date: 10/08/2024
4+
ms.date: 04/09/2025
55
ms.topic: tutorial
66
ms.devlang: javascript
77
author: mikejo5000
@@ -38,7 +38,7 @@ Make sure to install the following:
3838

3939
It’s a common convention to place components in a components folder, but this is not required.
4040

41-
1. Right-click the new folder, select **Add > React JSX Component File**, name it `TodoList`, and click **Add**.
41+
1. Right-click the new folder, select **Add > New Item**, then choose **React JSX Component File** in the dialog box, name it `TodoList`, and click **Add**.
4242

4343
:::image type="content" source="media/vs-2022/react-add-jsx-component.png" alt-text="Screenshot showing adding a JSX component.":::
4444

docs/javascript/tutorial-asp-net-core-with-angular.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Create an ASP.NET Core app with Angular"
33
description: Create an ASP.NET Core project to serve as an API backend and an Angular project to provide the user interface in Visual Studio.
4-
ms.date: 04/07/2025
4+
ms.date: 04/09/2025
55
ms.topic: tutorial
66
ms.devlang: javascript
77
author: mikejo5000
@@ -35,7 +35,7 @@ Make sure to install the following:
3535
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
3636
- Angular CLI ([`https://angular.dev/tools/cli`](https://angular.dev/tools/cli)), which can be the version of your choice. The front-end project is created using the framework CLI tools you have installed on your local machine, so this determines the Angular version used in the template.
3737

38-
## Create the frontend app
38+
## Create the app
3939

4040
1. In the Start window (choose **File** > **Start Window** to open), select **Create a new project**.
4141

@@ -97,7 +97,7 @@ The Angular app appears and is populated via the API (the localhost port may var
9797

9898
:::image type="content" source="media/vs-2022/asp-net-core-weather-forecast-app.png" alt-text="Screenshot showing the weather forecast app.":::
9999

100-
If you don't see the app, see [Troubleshooting](#troubleshooting).
100+
If you don't see the weather forecast data in the browser, see [Troubleshooting](#troubleshooting).
101101

102102
## Publish the project
103103

docs/javascript/tutorial-asp-net-core-with-react.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Create an ASP.NET Core app with React"
33
description: Create an ASP.NET Core project to serve as an API backend and a React project to provide the user interface in Visual Studio.
4-
ms.date: 11/06/2024
4+
ms.date: 04/09/2025
55
ms.topic: tutorial
66
ms.devlang: javascript
77
author: mikejo5000
@@ -32,7 +32,7 @@ You can use the method described in this article to create ASP.NET Core Single P
3232
If you need to install the workload and already have Visual Studio, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **ASP.NET and web development** workload, then choose **Modify**.
3333
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
3434

35-
## Create the frontend app
35+
## Create the app
3636

3737
1. In the Start window, select **Create a new project**. <!-- Avoid parenthetical clauses. https://review.learn.microsoft.com/en-us/help/contribute/localization-mt-guidance?branch=main-->
3838

@@ -55,8 +55,7 @@ You can use the method described in this article to create ASP.NET Core Single P
5555
Compared to the [standalone React template](../javascript/tutorial-create-react-app.md), you see some new and modified files for integration with ASP.NET Core:
5656

5757
- vite.config.js
58-
- App.js (modified)
59-
- App.test.js (modified)
58+
- App.jsx (modified)
6059

6160
1. Select an installed browser from the Debug toolbar, such as Chrome or Microsoft Edge.
6261

@@ -87,13 +86,13 @@ Press **F5** or select the **Start** button at the top of the window to start th
8786
- The Vite CLI showing a message such as `VITE v4.4.9 ready in 780 ms`
8887

8988
>[!NOTE]
90-
> Check console output for messages. For example there might be a message to update Node.js.
89+
> Check console output for messages. For example, there might be a message to update Node.js.
9190
9291
The React app appears and is populated via the API (the localhost port may vary from the screenshot).
9392

9493
:::image type="content" source="media/vs-2022/asp-net-core-weather-forecast-app.png" alt-text="Screenshot showing the weather forecast app.":::
9594

96-
If you don't see the app, see [Troubleshooting](#troubleshooting).
95+
If you don't see the weather forecast data in the browser, see [Troubleshooting](#troubleshooting).
9796

9897
## Publish the project
9998

docs/javascript/tutorial-asp-net-core-with-vue.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Create an ASP.NET Core app with Vue"
33
description: Create an ASP.NET Core project to serve as an API backend and a Vue project to provide the user interface in Visual Studio.
4-
ms.date: 4/07/2025
4+
ms.date: 4/09/2025
55
ms.topic: tutorial
66
ms.devlang: javascript
77
author: mikejo5000
@@ -34,7 +34,7 @@ Make sure to install the following:
3434
If you need to install the workload and already have Visual Studio, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **ASP.NET and web development** workload, then choose **Modify**.
3535
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js.
3636

37-
## Create the frontend app
37+
## Create the app
3838

3939
1. In the Start window (choose **File** > **Start Window** to open), select **Create a new project**.
4040

@@ -56,7 +56,7 @@ Make sure to install the following:
5656

5757
Compared to the [standalone Vue template](../javascript/tutorial-create-vue-app.md), you see some new and modified files for integration with ASP.NET Core:
5858

59-
- vite.config.json (modified)
59+
- vite.config.js (modified)
6060
- HelloWorld.vue (modified)
6161
- package.json (modified)
6262

@@ -91,7 +91,7 @@ The Vue app appears and is populated via the API (the localhost port may vary fr
9191

9292
:::image type="content" source="media/vs-2022/asp-net-core-weather-forecast-app.png" alt-text="Screenshot showing the weather forecast app.":::
9393

94-
If you don't see the app, see [Troubleshooting](#troubleshooting).
94+
If you don't see the weather forecast data in the browser, see [Troubleshooting](#troubleshooting).
9595

9696
## Publish the project
9797

0 commit comments

Comments
 (0)