Skip to content

Commit 65ca51e

Browse files
authored
Merge pull request #4196 from Mikejo5000/mikejo-br15
Dev16 updates
2 parents 60ff58e + 775eae9 commit 65ca51e

8 files changed

+34
-25
lines changed

docs/debugger/quickstart-debug-aspnet.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,20 @@ The Visual Studio debugger provides many powerful features to help you debug you
1919

2020
## Create a new project
2121

22-
1. In Visual Studio, choose **File > New Project**.
22+
1. In Visual Studio, choose **File > New > Project**.
2323

24-
1. Under **Visual C#**, choose **Web**, and then in the middle pane choose **ASP.NET Core Web Application**.
24+
::: moniker range=">=vs-2019"
25+
The **Create a new project** dialog box opens. Type **asp.net** in the search box to filter results, choose **ASP.NET Core Web Application**, and then click **Next**. Then, type a name like **MyDbgApp** and choose **Create**.
26+
::: moniker-end
27+
::: moniker range="vs-2017"
28+
The **New project** dialog box opens. Under **Visual C#**, choose **Web**, and then in the middle pane choose **ASP.NET Core Web Application**. Type a name like **MyDbgApp** and click **OK**.
2529

26-
1. Type a name like **MyDbgApp** and click **OK**.
27-
28-
1. In the dialog box that appears, choose **Web Application** in the middle pane, and then click **OK**.
29-
30-
If you don't see the **Web Application** project template, click the **Open Visual Studio Installer** link in the left pane of the **New Project** dialog box. The Visual Studio Installer launches. Choose the **ASP.NET and web development** workload, then choose **Modify**.
30+
In the dialog box that appears, choose **Web Application** in the middle pane, and then click **OK**.
3131

3232
![Choose a Web application](../debugger/media/dbg-qs-aspnet-choose-web-app.png)
33+
::: moniker-end
34+
35+
If you don't see the **ASP.NET Core Web Application** project template, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **ASP.NET and web development** workload, then choose **Modify**.
3336

3437
Visual Studio creates the project.
3538

docs/debugger/quickstart-debug-with-cplusplus.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,20 @@ The Visual Studio debugger provides many powerful features to help you debug you
1919

2020
## Create a new project
2121

22-
1. In Visual Studio, choose **File > New Project**.
22+
1. In Visual Studio, choose **File > New > Project**.
2323

24-
2. Under **Visual C++**, choose **Windows Desktop**, and then in the middle pane choose **Windows Console Application**.
24+
::: moniker range=">=vs-2019"
25+
The **Create a new project** dialog box opens. Type **asp.net** in the search box to filter results, choose **ASP.NET Core Web Application**, and then click **Next**. Then, enter a name like **MyDbgApp** and choose **Create**.
26+
::: moniker-end
27+
::: moniker range="vs-2017"
28+
The **New project** dialog box opens. Under **Visual C++**, choose **Windows Desktop**, and then in the middle pane choose **Windows Console Application**. Then, type a name like **MyDbgApp** and click **OK**.
29+
::: moniker-end
2530

26-
If you don't see the **Windows Console Application** project template, click the **Open Visual Studio Installer** link in the left pane of the **New Project** dialog box. The Visual Studio Installer launches. Choose the **Desktop development with C++** workload, then choose **Modify**.
27-
28-
3. Type a name like **MyDbgApp** and click **OK**.
31+
If you don't see the **Windows Console Application** project template, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. The Visual Studio Installer launches. Choose the **Desktop development with C++** workload, then choose **Modify**.
2932

3033
Visual Studio creates the project.
3134

32-
4. In MyDbgApp.cpp, replace the following code
35+
1. In MyDbgApp.cpp, replace the following code
3336

3437
```c++
3538
int main()

docs/debugger/quickstart-debug-with-managed.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,20 @@ The Visual Studio debugger provides many powerful features to help you debug you
1919

2020
## Create a new project
2121

22-
1. In Visual Studio, choose **File > New Project**.
22+
1. In Visual Studio, choose **File > New > Project**.
2323

24-
2. Under **Visual C#** or **Visual Basic**, choose **.NET Core**, and then in the middle pane choose **Console App (.NET Core)**.
24+
::: moniker range=">=vs-2019"
25+
The **Create a new project** dialog box opens. Type **.net** in the search box to filter results, choose **Console App (.NET Core)**, and then click **Next**. Then, enter a name like **MyDbgApp** and choose **Create**.
26+
::: moniker-end
27+
::: moniker range="vs-2017"
28+
The **New project** dialog box opens. Under **Visual C#**, choose **.NET Core**, and then in the middle pane choose **Console App (.NET Core)**. Then, type a name like **MyDbgApp** and click **OK**.
29+
::: moniker-end
2530

26-
If you don't see the **Console App (.NET Core)** project template, click the **Open Visual Studio Installer** link in the left pane of the **New Project** dialog box. The Visual Studio Installer launches. Choose the **.NET desktop development** and **.NET Core** workload, then choose **Modify**.
27-
28-
3. Type a name like **MyDbgApp** and click **OK**.
31+
If you don't see the **Console App (.NET Core)** project template, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **.NET desktop development** and **.NET Core** workload, then choose **Modify**.
2932

3033
Visual Studio creates the project.
3134

32-
4. In *Program.cs* or *Module1.vb*, replace the following code
35+
1. In *Program.cs* or *Module1.vb*, replace the following code
3336

3437
```csharp
3538
class Program

docs/ide/quickstart-nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ First, you'll create an Node.js web application project.
5252
1. Create a new project.
5353

5454
::: moniker range=">=vs-2019"
55-
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Blank Node.js Web application**, and then choose **OK**.
55+
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Blank Node.js Web application**, and then choose **Next**. Then, choose **Create**.
5656
::: moniker-end
5757
::: moniker range="vs-2017"
5858
In the **New Project** dialog box, in the left pane, expand **JavaScript**, then choose **Node.js**. In the middle pane, choose **Blank Node.js Web application**, then choose **OK**.
5959
::: moniker-end
6060
If you don't see the **Blank Node.js Web application** project template, you must add the **Node.js development** workload. For detailed instructions, see the [Prerequisites](#prerequisites).
6161

62-
After you choose the **Blank Node.js Web Application** template and click **OK**, Visual Studio creates and the new solution and opens the project. *server.js* opens in the editor in the left pane.
62+
Visual Studio creates and the new solution and opens the project. *server.js* opens in the editor in the left pane.
6363

6464
## Explore the IDE
6565

docs/javascript/publish-nodejs-app-azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ In this tutorial, you learn how to:
5959
1. Create a new TypeScript Express app.
6060

6161
::: moniker range=">=vs-2019"
62-
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Basic Azure Node.js Express 4 application**, and then choose **OK**.
62+
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Basic Azure Node.js Express 4 application**, and then choose **Next**. Then, choose **Create**.
6363
::: moniker-end
6464
::: moniker range="vs-2017"
6565
In the **New Project** dialog box, in the left pane, expand **JavaScript**, then choose **Node.js**. In the middle pane, choose **Basic Azure Node.js Express 4 application**, then choose **OK**.

docs/javascript/quickstart-vuejs-with-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ First, you'll create a Vue.js web application project.
5555
1. Create a new project.
5656

5757
::: moniker range=">=vs-2019"
58-
In the **Create a new project** dialog box, type **javascript** or **typescript** in the search box to filter results, then choose **Basic Vue.js Web application**, and then choose **OK**.
58+
In the **Create a new project** dialog box, type **javascript** or **typescript** in the search box to filter results, then choose **Basic Vue.js Web application**, and then choose **Next**. Then, choose **Create**.
5959
::: moniker-end
6060
::: moniker range="vs-2017"
6161
In the **New Project** dialog box, in the left pane, expand **JavaScript**, then choose **Node.js**. In the middle pane, choose **Basic Vue.js Web application**, then choose **OK**.

docs/javascript/tutorial-nodejs-with-react-and-jsx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ First, create a Node.js web application project.
8181
1. Create a new project.
8282

8383
::: moniker range=">=vs-2019"
84-
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Blank Node.js Web Application**, and then choose **OK**.
84+
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Blank Node.js Web Application**, and then choose **Next**. Then, choose **Create**.
8585
::: moniker-end
8686
::: moniker range="vs-2017"
8787
In the **New Project** dialog box, in the left pane, expand **JavaScript**, then choose **Node.js**. In the middle pane, choose **Blank Node.js Web Application**, type the name **NodejsWebAppBlank**, then choose **OK**.

docs/javascript/tutorial-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ In this tutorial, you begin with a simple project containing code for a Node.js
7474
1. Create a new project.
7575

7676
::: moniker range=">=vs-2019"
77-
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Basic Azure Node.js Express 4 application**, and then choose **OK**.
77+
In the **Create a new project** dialog box, type **javascript** in the search box to filter results, then choose **Basic Azure Node.js Express 4 application**, and then choose **Next**. Then, choose **Create**..
7878
::: moniker-end
7979
::: moniker range="vs-2017"
8080
In the **New Project** dialog box, in the left pane, expand **JavaScript**, then choose **Node.js**. In the middle pane, choose **Basic Azure Node.js Express 4 application**, then choose **OK**.

0 commit comments

Comments
 (0)