Skip to content

Commit 41d491b

Browse files
committed
Merged main into live
2 parents 387f378 + 2d147b8 commit 41d491b

19 files changed

+627
-25
lines changed

.github/workflows/clean-repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
pull-requests: write
1515

1616
steps:
17-
- uses: actions/[email protected].0
17+
- uses: actions/[email protected].1
1818

1919
# Call clean repo
2020
- name: Clean repo

.github/workflows/whats-new.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pull-requests: write
1919

2020
steps:
21-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
21+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
2222

2323
- name: "Print manual run reason"
2424
if: ${{ github.event_name == 'workflow_dispatch' }}

docs/javascript/TOC.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@
88
items:
99
- name: First look at the Visual Studio IDE
1010
href: quickstart-ide-orientation-js.md
11-
- name: Create a React app
11+
- name: Create a React project
1212
href: tutorial-create-react-app.md
13-
- name: Create an Angular app
13+
- name: Create an Angular project
1414
href: tutorial-create-angular-app.md
15-
- name: Create a Vue.js app
15+
- name: Create a Vue.js project
1616
href: tutorial-create-vue-app.md
1717
- name: Tutorials
1818
items:
1919
- name: Create a Node.js app with Express
2020
href: tutorial-nodejs.md
21+
- name: Create a React app
22+
href: create-react-app.md
2123
- name: Create an ASP.NET Core app with React
2224
href: tutorial-asp-net-core-with-react.md
2325
- name: Create an ASP.NET Core app with Angular

docs/javascript/create-react-app.md

Lines changed: 586 additions & 0 deletions
Large diffs are not rendered by default.

docs/javascript/index.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
author: mikejo5000
1212
ms.author: mikejo
1313
manager: mijacobs
14-
ms.date: 01/23/2023
14+
ms.date: 10/03/2024
1515

1616
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1717

@@ -39,14 +39,16 @@ landingContent:
3939
linkLists:
4040
- linkListType: quickstart
4141
links:
42-
- text: Create an Angular App
42+
- text: Create an Angular project
4343
url: tutorial-create-angular-app.md
44-
- text: Create a React App
44+
- text: Create a React project
4545
url: tutorial-create-react-app.md
46-
- text: Create a Vue App
46+
- text: Create a Vue project
4747
url: tutorial-create-vue-app.md
4848
- linkListType: tutorial
4949
links:
50+
- text: Create a React app
51+
url: create-react-app.md
5052
- text: Create a web app with Angular and ASP.NET Core
5153
url: tutorial-asp-net-core-with-angular.md
5254
- text: Create a web app with React and ASP.NET Core
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ You can use the method described in this article to create ASP.NET Core Single P
3131
- Visual Studio 2022 version 17.8 or later with the **ASP.NET and web development** workload installed. Go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) page to install it for free.
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
34-
- npx ([`https://www.npmjs.com/package/npx`](https://www.npmjs.com/package/npx))
3534

3635
## Create the frontend app
3736

docs/javascript/tutorial-create-angular-app.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Create an Angular app in Visual Studio
2+
title: Create an Angular project in Visual Studio
33
description: Create, build, and run a simple Angular front-end web application project from a Visual Studio template, and set basic properties for the project.
4-
ms.date: 05/23/2024
4+
ms.date: 10/02/2024
55
ms.custom: vs-acquisition
66
ms.topic: tutorial
77
ms.devlang: javascript
@@ -14,7 +14,7 @@ dev_langs:
1414
monikerRange: '>= vs-2022'
1515
---
1616

17-
# Create an Angular app
17+
# Create an Angular project
1818

1919
In this 5-10 minute introduction to the Visual Studio integrated development environment (IDE), you create and run a simple Angular frontend web application.
2020

@@ -32,10 +32,12 @@ Make sure to install the following:
3232

3333
:::image type="content" source="media/vs-2022/create-new-project.png" alt-text="Screenshot showing Create a new project":::
3434

35-
1. Search for Angular in the search bar at the top and then select **Standalone TypeScript Angular Project**.
35+
1. Search for Angular in the search bar at the top and then select **Angular App**.
3636

3737
:::image type="content" source="media/vs-2022/angular-choose-standalone-template.png" alt-text="Screenshot showing choosing a template":::
3838

39+
Starting in Visual Studio 2022 version 11, the template name was changed from **Standalone TypeScript Angular Project** to **Angular App**.
40+
3941
1. Give your project and solution a name.
4042

4143
1. Choose **Create**, and then wait for Visual Studio to create the project.

docs/javascript/tutorial-create-react-app.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Create a React app in Visual Studio
2+
title: Create a React project in Visual Studio
33
description: Create, build, and run a simple React front-end web application project from a Visual Studio template, and set basic properties for the project.
4-
ms.date: 05/23/2024
4+
ms.date: 10/02/2024
55
ms.custom: vs-acquisition
66
ms.topic: tutorial
77
ms.devlang: javascript
@@ -13,7 +13,8 @@ dev_langs:
1313
- JavaScript
1414
monikerRange: '>= vs-2022'
1515
---
16-
# Create a React app
16+
17+
# Create a React project
1718

1819
In this 5-10 minute introduction to the Visual Studio integrated development environment (IDE), you create and run a simple React frontend web application.
1920

@@ -23,18 +24,19 @@ Make sure to install the following:
2324

2425
- Visual Studio 2022 or later. Go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) page to install it for free.
2526
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
26-
- npx ([`https://www.npmjs.com/package/npx`](https://www.npmjs.com/package/npx))
2727

2828
## Create your app
2929

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

3232
:::image type="content" source="media/vs-2022/create-new-project.png" alt-text="Screenshot showing Create a new project":::
3333

34-
1. Search for React in the search bar at the top and then select **Standalone JavaScript React Project** or **Standalone TypeScript React Project**, based on your preference.
34+
1. Search for React in the search bar at the top and then select **React App** for either JavaScript or TypeScript, based on your preference.
3535

3636
:::image type="content" source="media/vs-2022/react-choose-standalone-template.png" alt-text="Screenshot showing choosing a template":::
3737

38+
Starting in Visual Studio 2022 version 11, the template name was changed from **Standalone JavaScript React Project** to **React App**.
39+
3840
1. Give your project and solution a name.
3941

4042
1. Choose **Create**, and then wait for Visual Studio to create the project.
@@ -65,6 +67,9 @@ Next, you should see the base React app appear!
6567

6668
## Next steps
6769

70+
> [!div class="nextstepaction"]
71+
> [Create a React app](create-react-app.md)
72+
6873
For ASP.NET Core integration:
6974

7075
> [!div class="nextstepaction"]

docs/javascript/tutorial-create-vue-app.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Create a Vue.js app in Visual Studio
2+
title: Create a Vue.js project in Visual Studio
33
description: Create, build, and run a Vue.js front-end web application project from a Visual Studio template, and set basic properties for the project.
4-
ms.date: 05/23/2024
4+
ms.date: 10/02/2024
55
ms.custom: vs-acquisition
66
ms.topic: tutorial
77
ms.devlang: javascript
@@ -13,7 +13,7 @@ dev_langs:
1313
- JavaScript
1414
monikerRange: '>= vs-2022'
1515
---
16-
# Create a Vue.js app
16+
# Create a Vue.js project
1717

1818
In this 5-10 minute introduction to the Visual Studio integrated development environment (IDE), you create and run a simple Vue.js frontend web application.
1919

@@ -31,10 +31,12 @@ Make sure to install the following:
3131

3232
:::image type="content" source="media/vs-2022/create-new-project.png" alt-text="Screenshot showing Create a new project":::
3333

34-
1. Search for Vue in the search bar at the top and then select **Standalone JavaScript Vue Project** or **Standalone TypeScript Vue Project**, based on your preference.
34+
1. Search for Vue in the search bar at the top and then select **Vue App** for either JavaScript or TypeScript.
3535

3636
:::image type="content" source="media/vs-2022/vue-choose-standalone-template.png" alt-text="Screenshot showing choosing a template":::
3737

38+
Starting in Visual Studio 2022 version 11, the template name was changed from **Standalone JavaScript Vue Project** to **Vue App**.
39+
3840
1. Give your project and solution a name, and then choose **Next**.
3941

4042
1. Choose **Create**, and then wait for Visual Studio to create the project.

docs/version-control/git-create-pull-request.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create a pull request in Visual Studio
33
titleSuffix: ""
44
description: Create a pull request in Visual Studio by using GitHub or Azure DevOps.
5-
ms.date: 10/23/2023
5+
ms.date: 10/7/2024
66
ms.topic: how-to
77
author: houghj16
88
ms.author: jehoughton
@@ -55,7 +55,11 @@ To create a pull request, follow these steps:
5555

5656
:::image type="content" source="media/vs-2022/git-create-pr-issue-search.png" alt-text="The New Pull Request with # in the description box and a list of the related GitHub issues and pull requests shown in Visual Studio 2022.":::
5757

58-
1. Once you’ve clicked **Create** on your pull request, other developers can review your changes and provide feedback.
58+
1. Once you’ve clicked **Create** on your pull request, other developers can review your changes and provide feedback. Or, with Visual Studio 17.12 and later, click the dropdown and choose **Create as draft**.
59+
60+
:::image type="content" source="media/vs-2022/git-new-pull-request-create-draft.png" alt-text="Screenshot showing the option to create a new pull request as a draft." :::
61+
62+
With Visual Studio 17.12 and later, you can enable the **Pull Request Templates** feature (in **Tools** > **Options** > **Environment** > **Preview Features**) so that your default PR template in your repo will be used when creating a new pull request for both GitHub and Azure DevOps. Learn more about how to add a pull request template to your repository in the [GitHub documentation](https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository) and [Azure DevOps documentation](/azure/devops/repos/git/pull-request-templates#default-pull-request-templates).
5963

6064
## View pull request comments in the editor
6165

Loading

0 commit comments

Comments
 (0)