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: docs/debugger/remote-debugging.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,6 @@ For in-depth instructions on remote debugging, see these topics.
28
28
|-|-|
29
29
|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)|
30
30
|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)|
32
31
|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)|
33
32
|C# or Visual Basic|[Remote debug a C# or Visual Basic project](../debugger/remote-debugging-csharp.md)|
34
33
|C++|[Remote debug a C++ project](../debugger/remote-debugging-cpp.md)|
Copy file name to clipboardExpand all lines: docs/javascript/tutorial-create-angular-app.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Create an Angular project in Visual Studio
3
3
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
5
5
ms.custom: vs-acquisition
6
6
ms.topic: tutorial
7
7
ms.devlang: javascript
@@ -20,7 +20,7 @@ In this 5-10 minute introduction to the Visual Studio integrated development env
20
20
21
21
## Prerequisites
22
22
23
-
Make sure to install the following:
23
+
Make sure to install the following software:
24
24
25
25
- 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.
26
26
- 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:
44
44
45
45
## View the project properties
46
46
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).
48
50
49
51
>[!NOTE]
50
52
> `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
53
55
54
56
Choose **Build** > **Build Solution** to build the project.
55
57
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.
57
59
58
60
## Start Your Project
59
61
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:
Copy file name to clipboardExpand all lines: docs/javascript/tutorial-create-react-app.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ In this 5-10 minute introduction to the Visual Studio integrated development env
20
20
21
21
## Prerequisites
22
22
23
-
Make sure to install the following:
23
+
Make sure to install the following software:
24
24
25
25
- 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.
26
26
- 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:
45
45
46
46
## View the project properties
47
47
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).
49
51
50
52
>[!NOTE]
51
53
> `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.
Copy file name to clipboardExpand all lines: docs/javascript/tutorial-create-vue-app.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ In this 5-10 minute introduction to the Visual Studio integrated development env
19
19
20
20
## Prerequisites
21
21
22
-
Make sure to install the following:
22
+
Make sure to install the following software:
23
23
24
24
- 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.
25
25
- 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:
43
43
44
44
## View the project properties
45
45
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).
47
49
48
50
>[!NOTE]
49
51
> `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