Skip to content

Commit 52be5ed

Browse files
Merge pull request #10522 from MicrosoftDocs/main638689574107305343sync_temp
For protected branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents a3d67c3 + 969d040 commit 52be5ed

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

docs/debugger/remote-debugging.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ For in-depth instructions on remote debugging, see these topics.
2828
|-|-|
2929
|Azure App Service|[Remote debug ASP.NET Core on Azure](../debugger/remote-debugging-azure-app-service.md) or, for Visual Studio Enterprise, the [Snapshot Debugger](../debugger/debug-live-azure-applications.md)|
3030
|Azure VM|[Remote debug ASP.NET on an Azure VM](../debugger/remote-debugging-azure.md)|
31-
|Azure Service Fabric|[Debug an Azure Service Fabric application](/azure/service-fabric/service-fabric-debugging-your-application#debug-a-remote-service-fabric-application)|
3231
|ASP.NET|[Remote debug ASP.NET Core](../debugger/remote-debugging-aspnet-on-a-remote-iis-computer.md) or [Remote Debug ASP.NET](../debugger/remote-debugging-aspnet-on-a-remote-iis-7-5-computer.md)|
3332
|C# or Visual Basic|[Remote debug a C# or Visual Basic project](../debugger/remote-debugging-csharp.md)|
3433
|C++|[Remote debug a C++ project](../debugger/remote-debugging-cpp.md)|

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
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: 10/02/2024
4+
ms.date: 12/4/2024
55
ms.custom: vs-acquisition
66
ms.topic: tutorial
77
ms.devlang: javascript
@@ -20,7 +20,7 @@ In this 5-10 minute introduction to the Visual Studio integrated development env
2020

2121
## Prerequisites
2222

23-
Make sure to install the following:
23+
Make sure to install the following software:
2424

2525
- 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.
2626
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
@@ -44,7 +44,9 @@ Make sure to install the following:
4444

4545
## View the project properties
4646

47-
The default project settings allow you to build and debug the project. But, if you need to change settings, right-click the project in Solution Explorer, select **Properties**, and then go the **Build** or **Debugging** section.
47+
The default project settings allow you to build and debug the project. But, if you need to change settings, right-click the project in Solution Explorer, select **Properties**, and then go the **Linting**, **Build** or **Deploy** section.
48+
49+
For debugger configuration, use [launch.json](../javascript/debug-nodejs.md#configure-debugging).
4850

4951
>[!NOTE]
5052
> `launch.json` stores the startup settings associated with the **Start** button in the Debug toolbar. Currently, `launch.json` must be located under the `.vscode` folder.
@@ -53,11 +55,11 @@ The default project settings allow you to build and debug the project. But, if y
5355

5456
Choose **Build** > **Build Solution** to build the project.
5557

56-
Note, the initial build may take a while, as the Angular CLI will run the npm install command.
58+
Note, the initial build may take a while, as the Angular CLI runs the npm install command.
5759

5860
## Start Your Project
5961

60-
Press **F5** or select the **Start** button at the top of the window, and you'll see a command prompt:
62+
Press **F5** or select the **Start** button at the top of the window, and you will see a command prompt:
6163

6264
- The Angular CLI running the ng start command
6365

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In this 5-10 minute introduction to the Visual Studio integrated development env
2020

2121
## Prerequisites
2222

23-
Make sure to install the following:
23+
Make sure to install the following software:
2424

2525
- 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.
2626
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
@@ -45,7 +45,9 @@ Make sure to install the following:
4545

4646
## View the project properties
4747

48-
The default project settings allow you to build and debug the project. But, if you need to change settings, right-click the project in Solution Explorer, select **Properties**, and then go the **Build** or **Debugging** section.
48+
The default project settings allow you to build and debug the project. But, if you need to change settings, right-click the project in Solution Explorer, select **Properties**, and then go the **Linting**, **Build** or **Deploy** section.
49+
50+
For debugger configuration, use [launch.json](../javascript/debug-nodejs.md#configure-debugging).
4951

5052
>[!NOTE]
5153
> `launch.json` stores the startup settings associated with the **Start** button in the Debug toolbar. Currently, `launch.json` must be located under the `.vscode` folder.

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this 5-10 minute introduction to the Visual Studio integrated development env
1919

2020
## Prerequisites
2121

22-
Make sure to install the following:
22+
Make sure to install the following software:
2323

2424
- 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.
2525
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
@@ -43,7 +43,9 @@ Make sure to install the following:
4343

4444
## View the project properties
4545

46-
The default project settings allow you to build and debug the project. But, if you need to change settings, right-click the project in Solution Explorer, select **Properties**, and then go the **Build** or **Debugging** section.
46+
The default project settings allow you to build and debug the project. But, if you need to change settings, right-click the project in Solution Explorer, select **Properties**, and then go the **Linting**, **Build** or **Deploy** section.
47+
48+
For debugger configuration, use [launch.json](../javascript/debug-nodejs.md#configure-debugging).
4749

4850
>[!NOTE]
4951
> `launch.json` stores the startup settings associated with the **Start** button in the Debug toolbar. Currently, `launch.json` must be located under the `.vscode` folder.

0 commit comments

Comments
 (0)